/* ============================================================
   lib/styles/components/testimonials_section.css
   TESTIMONIALS SECTION
   Note: TestimonialCard specific CSS was extracted to testimonial_card.css in Phase 3.
   ============================================================ */

/* ── Section Layout ───────────────────────────────────────── */

.testimonials-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-section__title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-trust-blue);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
}

.testimonials-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-soft-grey);
    max-width: 680px;
    margin: 0 auto;
}

/* ── Responsive ───────────────────────────────────────────── */

@media screen and (max-width: 1023px) {
    .testimonials-section__title { font-size: 32px; }
}

@media screen and (max-width: 639px) {
    .testimonials-section__header { margin-bottom: 40px; }
    .testimonials-section__title { font-size: 28px; }
    .testimonials-section__subtitle { font-size: 16px; }
}