.testimonials-wrap {
    display: flex;
    justify-content: center;
    background: #111;
    padding: 18px 0 28px;
}

.testimonials-inner {
    width: 100%;
    max-width: var(--section-max);
    padding: 0 12px;
    color: #fff;
    text-align: center;
}

.testimonials-title {
    margin: 4px 0 6px;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: .5px;
}

.testimonials-underline {
    width: 84%;
    height: 4px;
    margin: 6px auto 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-1), var(--green-2));
}

.testimonials-subtitle {
    font-weight: 900;
    letter-spacing: .6px;
    font-size: 21px;
    margin-bottom: 8px;
}

.testimonials-text {
    color: #8F8F8F;
    font-size: 16px;
    margin: 32px 21px;
}

.testimonials-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 4px 2px;
    scrollbar-width: none;
    cursor: grab;
}

.testimonials::-webkit-scrollbar {
    display: none;
    height: 0;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
}

.testimonials-card {
    flex: 1;
    max-width: 78%;
    scroll-snap-align: start;
}

.testimonials-card img {
    user-select: none;
    -webkit-user-drag: none;
}