/* ==========================================================
   HERO
========================================================== */

.testimonials-hero {
    position: relative;

    height: 360px;
    min-height: 360px;

    display: flex;
    align-items: center;

    background:
        url("/images/slide-home.jpg")
        center / cover no-repeat;

    color: #fff;
    overflow: hidden;
}

.testimonials-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(6,20,38,.96) 0%,
        rgba(6,20,38,.82) 52%,
        rgba(6,20,38,.42) 100%
    );
}

.testimonials-hero-inner {
    position: relative;
    z-index: 2;

    padding: 40px 0;
    transform: translateY(-10px);
}

.testimonials-hero-copy {
    max-width: 850px;
}

.testimonials-hero .eyebrow {
    position: relative;
    top: -80px;

    color: #72c1ea;
    margin-bottom: 20px;
}

.testimonials-hero h1 {
    margin: 0 0 18px;

    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(36px, 3.5vw, 50px);
    font-weight: 400;

    line-height: .95;
    letter-spacing: -.025em;
}

.testimonials-hero h1 em {
    color: #62b6df;
    font-weight: 400;
}

.testimonials-hero p {
    max-width: 720px;
    margin: 0;

    font-size: 18px;
    line-height: 1.5;

    color: rgba(255,255,255,.80);
}


/* ==========================================================
   INTRO
========================================================== */

.testimonials-intro {
    padding: 80px 0;
}

.testimonials-two-column {
    display: grid;
    grid-template-columns: .85fr 1.15fr;

    gap: 85px;
    align-items: start;
}

.testimonials-two-column h2 {
    margin: 14px 0 0;

    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(44px, 4.5vw, 68px);
    font-weight: 400;

    line-height: .98;
}

.testimonials-two-column h2 em {
    color: #0073ae;
    font-weight: 400;
}

.testimonials-two-column p {
    margin: 0;

    font-size: 18px;
    line-height: 1.8;

    color: #5c6674;
}


/* ==========================================================
   TESTIMONIALS
========================================================== */

.testimonials-section {
    padding: 20px 0 100px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.testimonial-card blockquote {
    margin: 0 0 30px;

    font-family: "Instrument Serif", Georgia, serif;
    font-size: 24px;
    font-weight: 400;

    line-height: 1.35;

    color: #14233a;
}

.testimonial-number {
    margin-bottom: 28px;

    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: .14em;

    color: #0073ae;
}

.testimonial-card blockquote {
    margin: 0 0 30px;
     min-height: 195px;

    font-family: "Instrument Serif", Georgia, serif;
    font-size: 24px;
    font-weight: 400;

    line-height: 1.35;

    color: #14233a;
}

.testimonial-client {
    margin-top: auto;

    padding-top: 20px;

    border-top: 1px solid rgba(20,35,58,.12);
}

.testimonial-client strong {
    display: block;

    margin-bottom: 5px;

    font-size: 15px;

    color: #14233a;
}

.testimonial-client span {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: #687383;
}


/* ==========================================================
   CTA
========================================================== */

.testimonials-cta {
    padding: 80px 0;

    background: #d9d0c2;
}

.testimonials-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;

    gap: 40px;
    align-items: center;
}

.testimonials-cta h2 {
    margin: 8px 0 12px;

    font-family: "Instrument Serif", Georgia, serif;
    font-size: 58px;
    font-weight: 400;

    line-height: 1;
}

.testimonials-cta p {
    margin: 0;

    font-size: 17px;

    color: #5c6674;
}

.testimonial-button {
    display: inline-block;

    padding: 16px 22px;

    background: #0073ae;
    color: #fff;

    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: .1em;
    text-transform: uppercase;

    text-decoration: none;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 900px) {

    .testimonials-two-column,
    .testimonials-cta-inner {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 620px) {

    .testimonials-hero {
        height: auto;
        min-height: 400px;
    }

    .testimonials-hero-inner {
        padding: 55px 0;
        transform: none;
    }

    .testimonials-hero h1 {
        font-size: 42px;
    }

    .testimonials-intro {
        padding: 60px 0;
    }

    .testimonial-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .testimonial-card blockquote {
        font-size: 22px;
    }
    
    .testimonials-cta h2 {
        font-size: 44px;
    }

}