#site-testimonials {
    padding: 70px 0px;
    background-color: var(--site-primary);
    background-size: cover;
    _background-blend-mode: soft-light;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 50px;
}

#site-testimonials h2 {
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

#site-testimonials .description {
    color: #fff;
    opacity: 0.75;
}

.testimonials-nav {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-nav span {
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    transition: all 0.2s;
}

.testimonials-nav span:hover {
    background: #fff;
    color: var(--site-primary);
} 

.testimonials-list {
    display: flex; /* Change from grid to flexbox */
    gap: 30px; /* Maintain spacing between items */
    overflow-x: hidden; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Ensure snapping behavior for a carousel effect */
}

.testimonial-item {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0px 20px 50px;
    box-sizing: border-box;
    flex: 0 0 auto; /* Ensure items don't shrink and have a fixed size */
    scroll-snap-align: start; /* Snap items to the start of the container */
    width: 50%; /* Example width; customize as needed */  
    display: grid; 
}

.testimonial-item svg {
    height: 24px;
    margin-bottom: 28px;
    display: block;
}

.testimonial-item svg * {
    fill: #fff !important;
}

.testimonial-item img {
    object-fit: cover;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 3px solid #fff;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial-item-desc {
    color: #fff;
    opacity: 0.75;
}

.testimonial-item-name {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-top: 15px;
    align-self: end;
}

.slick-arrow {
    background: transparent !important;
}


@media (max-width: 980px) {
    #site-testimonials {
        padding: 50px 0px;
    }   

    .testimonials-container {
        gap: 35px;
        grid-template-columns: 1fr;            
    }

    .testimonials-list {
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .testimonial-item {
        width: 100%;
        padding: 0px;
        border: none;
    }

    .testimonial-item svg {
        margin-bottom: 17px;
    }

}