section.bri-testimonials-slider-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 44px 20px;

    /* max-width: unset;
    padding-right: 0; */
}

.bri-testimonials-slider {
    width: 100%;
    overflow: hidden;
}

.bri-testimonials-slider-wrapper {
    display: flex;
    transition-property: transform;
}

.bri-testimonials-slider-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.bri-testimonial-slide {
    position: relative;
    width: 100%;
    min-height: 525px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* border-radius: 12px; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bri-testimonial-slide:hover {
    /* transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.bri-testimonial-slide::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    ); */
    z-index: 1;
}

.bri-testimonial-image {
    width: 100%;
    height: 415px;
    min-height: 415px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.bri-testimonial-content {
    position: relative;
    z-index: 2;
    padding: 16px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.bri-testimonial-text {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 20px;
    line-height: 120%;
    color: rgba(23, 36, 55, 1);
    height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bri-testimonial-name,
.bri-testimonial-age-location {
    font-family: CircularXX, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: rgba(23, 36, 55, 0.6);
}


/* Mobile Styles */
@media (max-width: 767px) {
    section.bri-testimonials-slider-container {
        padding: 0 0 40px 15px;
    }
    
    .bri-testimonial-slide {
        width: 100%;
        flex-shrink: 0;
    }
    
    .bri-testimonials-slider .swiper-slide:last-child {
        padding-right: 15px;
    }

    .bri-testimonial-image {
        min-height: 280px;
    }

    .bri-testimonial-content {
        gap: 8px;
    }

    .bri-testimonial-text {
        font-size: 14px;
        -webkit-line-clamp: 4;
        height: 68px;
    }

    .bri-testimonial-name,
    .bri-testimonial-age-location {
        font-size: 10px;
    }


}


/* Swiper specific overrides */
.bri-testimonials-slider .swiper-wrapper {
    align-items: stretch;
}

.bri-testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
    /* border-radius: 16px; */
    overflow: hidden;
}

/* Ensure proper spacing between slides */
.bri-testimonials-slider .swiper-slide:not(:last-child) {
    margin-right: 16px;
}


