.rcw-widget {
    margin: 40px 0;
    text-align: center;
}

.rcw-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

.rcw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
}

.rcw-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcw-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.rcw-image {
    background: #f0f2f5;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rcw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rcw-placeholder {
    font-size: 14px;
    color: #999;
}

.rcw-text {
    padding: 12px;
}

.rcw-item-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
}

.rcw-item-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}