.rc-4037fc76-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rc-4037fc76-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.rc-4037fc76-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rc-4037fc76-thumb-link {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.rc-4037fc76-img,
.rc-4037fc76-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-4037fc76-img-placeholder {
    background-color: #cbd5e1;
}

.rc-4037fc76-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rc-4037fc76-title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.rc-4037fc76-title a {
    color: #1e293b;
    text-decoration: none;
}

.rc-4037fc76-title a:hover {
    color: #3b82f6;
}

.rc-4037fc76-price {
    font-weight: 600;
    color: #0f172a;
    margin-top: auto;
}

.rc-4037fc76-empty {
    padding: 20px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    text-align: center;
    color: #64748b;
}

@media (max-width: 768px) {
    .rc-4037fc76-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .rc-4037fc76-grid {
        grid-template-columns: 1fr;
    }
}