/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: linear-gradient(to bottom, var(--bg-purple-light) 0%, var(--bg-white) 100%);
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-title {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

/* Quote Icon */
.testimonial-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 2rem;
    color: var(--purple-600);
}

/* Testimonial Card */
.testimonial-card {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

/* Blockquote */
.testimonial-card blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
}

/* Author */
.testimonial-author {
    font-weight: 700;
    color: var(--purple-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Title */
.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-card blockquote {
        font-size: 1.2rem;
    }
}
