.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.review-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12);
    border-color: var(--border-hover);
}

.review-item img {
    width: 100%;
    height: auto;
    display: block;
}

.review-caption {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.note {
    font-size: 0.8125rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 1.5rem;
}

@media (min-width: 481px) and (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .review-caption {
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
    }

    .note {
        font-size: 0.75rem;
    }
}