/* ==========================================================================
   COMPONENT — Testimonial (pulled quote with big decorative quote mark)
   ========================================================================== */
.testimonial {
    margin: 0 auto clamp(var(--h-space-9), 7vw, var(--h-space-12));
    padding: var(--h-space-6) var(--h-space-9);
    background: #fff9e6;
    border-radius: 20px;
    position: relative;
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    left: var(--h-space-5);
    font-family: var(--h-font-display);
    font-weight: 800;
    font-size: 6rem;
    line-height: 1;
    color: #eab308;
    opacity: .6;
    pointer-events: none;
}

.testimonial-figure {
    margin: 0;
    padding-left: var(--h-space-7);
    position: relative;
}

.testimonial-quote {
    margin: 0 0 var(--h-space-5);
}

.testimonial-quote p {
    font-family: var(--h-font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    line-height: 1.45;
    color: var(--h-navy);
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--h-space-1);
    font-size: .9rem;
    line-height: 1.4;
}

.testimonial-author strong {
    color: var(--h-navy);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--h-text-muted);
    font-style: italic;
}
