.testimonial-slider-section {
    background: #fff;
    padding: 28px 0 18px;
    overflow: hidden;
}

.testimonial-slider-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    gap: 20px;
}

.testimonial-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonial-slider-track {
    display: flex;
    gap: 28px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.testimonial-slide {
    position: relative;
    flex: 0 0 calc((100% - 56px) / 3);
    padding: 6px 8px 6px 56px;
    min-height: 120px;
    overflow: visible;
}

.testimonial-slide::before {
    content: "“";
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 58px;
    line-height: 1;
    font-weight: 700;
    color: #f97316;
    font-family: Georgia, serif;
}

.testimonial-slide p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: -0.01em;
    color: #334155;
}

.testimonial-slide span {
    display: block;
    font-size: 13.5px;
    line-height: 1.45;
    color: #94a3b8;
}

.testimonial-slider-btn {
    width: 52px;
    height: 52px;
    border: 0;
    background: transparent;
    color: #cbd5e1;
    font-size: 54px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition:
        color 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.testimonial-slider-btn:hover {
    color: #f97316;
    transform: scale(1.06);
}

.testimonial-slider-btn:active {
    transform: scale(0.96);
}

/* MOBILE */

@media (max-width: 900px) {

    .testimonial-slider-section {
        padding: 18px 0 8px;
    }

    .testimonial-slider-wrap {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 6px;
    }

    .testimonial-slider-track {
        gap: 0;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        min-height: auto;
        padding: 2px 2px 2px 42px;
    }

    .testimonial-slide::before {
        top: 2px;
        font-size: 46px;
    }

    .testimonial-slide p {
        margin-bottom: 10px;
        font-size: 14.5px;
        line-height: 1.58;
    }

    .testimonial-slide span {
        font-size: 12.5px;
    }

    .testimonial-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 40px;
    }

}