.what-others-say {
    --testimonial-bg: var(--color-background);
    --testimonial-text: var(--color-text);
    --testimonial-muted: var(--color-muted);
    --testimonial-gold: var(--color-gold);
    --testimonial-line: rgba(154, 190, 220, 0.16);

    background-color: var(--testimonial-bg);
    color: var(--testimonial-text);
    overflow: hidden;
    position: relative;
}

.what-others-say::before {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(45, 93, 130, 0.10),
            transparent 34rem
        );

    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.what-others-say__inner {
    margin: 0 auto;
    max-width: 84rem;
    padding:
        clamp(2.75rem, 4vw, 4rem)
        1.25rem
        clamp(3rem, 4.5vw, 4rem);
    position: relative;
}

.what-others-say__header {
    margin: 0 auto clamp(2rem, 3vw, 2.75rem);
    text-align: center;
}

.what-others-say__eyebrow {
    color: var(--testimonial-gold);
    font-family: Inter, Arial, sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin: 0;
    text-transform: uppercase;
}

.what-others-say__title {
    color: var(--testimonial-text);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0.8rem auto 0;
    max-width: 48rem;
}

.what-others-say__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
    min-width: 0;
    padding:
        0
        clamp(1.25rem, 3vw, 2.75rem);
    position: relative;
}

.testimonial:first-child {
    padding-left: 0;
}

.testimonial:last-child {
    padding-right: 0;
}

.testimonial + .testimonial {
    border-left: 1px solid var(--testimonial-line);
}

.testimonial__quote {
    color: var(--testimonial-gold);
    display: block;
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 0.65rem;
}

.testimonial__text {
    color: var(--testimonial-text);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    line-height: 1.65;
    margin: 0;
    max-width: 24rem;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 1.15rem;
}

.testimonial__author strong {
    color: var(--testimonial-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial__author span {
    color: var(--testimonial-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 0.68rem;
    line-height: 1.4;
}

.what-others-say__viewport {
    overflow: hidden;
     width: 100%;
}

.what-others-say__track {
   display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 100%;
    gap: 0;
}

.what-others-say__track::-webkit-scrollbar {
    display: none;
}

.testimonial {
   flex: 0 0 calc(100% / 3);
    min-width: 0;
}

.testimonial + .testimonial {
    border-left: 1px solid var(--testimonial-line);
}

.what-others-say__navigation {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.what-others-say__arrow {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(214, 164, 62, 0.45);
    color: var(--testimonial-gold);
    cursor: pointer;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif;
    font-size: 1rem;
    height: 2.4rem;
    justify-content: center;
    width: 2.4rem;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.what-others-say__arrow:hover,
.what-others-say__arrow:focus-visible {
    background-color: var(--testimonial-gold);
    border-color: var(--testimonial-gold);
    color: var(--color-background);
    transform: translateY(-1px);
}

.what-others-say__arrow:focus-visible {
    outline: 2px solid var(--testimonial-gold);
    outline-offset: 3px;
}

/* Tablet */
@media (max-width: 59.9375rem) {

    .what-others-say__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial,
    .testimonial:first-child,
    .testimonial:last-child {
        padding: 0;
    }

    .testimonial + .testimonial {
        border-left: 0;
        border-top: 1px solid var(--testimonial-line);
        padding-top: 2rem;
    }

    .testimonial__text {
        max-width: 40rem;
    }
}

/* Mobile */
@media (max-width: 47.9375rem) {

    .what-others-say__inner {
        padding:
            2.75rem
            1.25rem
            3rem;
    }

    .what-others-say__title {
        font-size: 1.5rem;
    }

    .testimonial__quote {
        font-size: 2.2rem;
    }

    .testimonial__text {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}
@media (max-width: 59.9375rem) {

    .testimonial {
        flex-basis: 50%;
    }
}

@media (max-width: 47.9375rem) {

    .testimonial {
        flex-basis: 85%;
        padding: 0 1.25rem;
    }
}