.sothex-testimonials {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(1.5rem, 3.75vw, 3.75rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-inline: 1rem;
    scroll-padding-inline: 1rem;
}

@media (min-width: 108rem) {
    .sothex-testimonials {
        padding-inline: 7rem;
        scroll-padding-inline: 7rem;
    }
}

.sothex-testimonials::-webkit-scrollbar {
    display: none;
}
.testimonial {
    max-width: 27.1875rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap:clamp(1rem, 2.625vw, 2.625rem);
    flex-shrink: 0;
    scroll-snap-align: start;
    @media (max-width: 48rem) {
        max-width: 19rem;
    }
}
.testimonial-media{
    width: 100%;
    max-width: 5.375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1.1875rem, 1.25vw, 2rem);
    height: 100%;

    img{
        width:5.375rem;
        height:5.375rem;
        min-height: 5.375rem;
        min-width: 5.375rem;
        border-radius: 1.25rem;
        object-fit: cover;
        @media (max-width: 48rem) {
            width: 2.625rem;
            height: 2.625rem;
            min-height: 2.625rem;
            min-width: 2.625rem;
            border-radius: 0.5rem;
        }
    }
    span{
        width: 1px;
        height: 100%;
        background-color: var(--color-copper);
    }
}
.testimonial-content {
    padding-top:clamp(0.5rem, 2vw, 2rem) ;
    display: flex;
    flex-direction: column;
    gap:clamp(1rem, 2vw, 2rem);
    justify-content: center;
}


.testimonial-author {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: var(--color-sold-pink);
    text-transform: uppercase;
    font-weight: 500;
}
.testimonial-text {
    font-size: clamp( 0.875rem, 1vw, 1rem);
    color: var(--color-blue-yale-950);
    font-weight: 400;
    line-height: 1.4;
    line-clamp: 8;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    @media (max-width: 48rem) {
        line-clamp: 10;
        -webkit-line-clamp: 10;
    }
}
.testimonial-rating {
    display: flex;
    flex-wrap: nowrap;
    gap:6px;
}
