/* === TESTIMONIALS PAGE STYLES === */

/* Hero Banner */
.testimonials-hero {
    background: linear-gradient(135deg, var(--primary-300) 0%, var(--primary-800) 80%);
    padding: var(--space-4xl) 0;
    color: white;
}

.testimonials-hero__wrapper {
    max-width: 700px;
}

.testimonials-hero__title {
    color: white;
    margin-bottom: var(--space-md);
}

.testimonials-hero__description {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Review Card Avatar */
.testimonial-avatar {
    width: 48px;
    height: 48px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Testimonial Card Link */
.testimonial-card-link {
    text-decoration: none;
    color: inherit;
}

.testimonial-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
}
