/****************************************/
/* SWIPER TESTIMONIALS*/
/*****************************************/

.testimonials-swiper{
    overflow:hidden;
    padding-bottom:40px;
    cursor: grab;
}

.testimonials-swiper:active{
    cursor: grabbing;
}

.testimonials-swiper .testimonial-card{
    background: var(--ast-global-color-3);
    padding:30px;
    border-radius:20px;
    height:100%;
    box-shadow:2px 2px 4px rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
    position: relative;
}

.testimonials-swiper .testimonial-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.testimonials-swiper .testimonial-meta{
    display:flex;
    flex-direction:column;
}

.testimonials-swiper .testimonial-photo{
    flex-shrink:0;
    align-self:flex-start;
}

.testimonials-swiper .testimonial-photo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    display: block;
    margin-top:2px;
}

.testimonials-swiper .testimonial-rating{
    margin-bottom:15px;
    color: var(--ast-global-color-4);
    font-size:20px;
    align-self:flex-start;
}

.testimonials-swiper .testimonial-text{
    margin-bottom:20px;
    line-height:1.7;
    color: var(--ast-global-color-1);
    flex-grow:1;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:8;
    overflow:hidden;
}

.testimonials-swiper .testimonial-author{
    color: var(--ast-global-color-4);
    font-size: 16px;
}

.testimonials-swiper .testimonial-author strong{
    display:block;
    font-family: 'Simonetta', serif;
    font-weight: 400;
    font-size: 22px;
    line-height:1.2;
}

.testimonials-swiper .testimonial-author span{
    opacity:0.95;
    margin-top:4px;
}

/* Pagination */

.testimonials-swiper .swiper-pagination{
    position: relative;
    margin-top: 20px;
}

.testimonials-swiper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #d6d6d6;
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
    border-radius: 999px;
}

.testimonials-swiper .swiper-pagination-bullet-active{
    width: 24px;
    background: var(--ast-global-color-4);
    border-radius: 999px;
}

.testimonials-swiper .testimonial-swiper-footer {
    text-align: center;
    margin-top: 25px;
}
.btn-temoignages{
    display:inline-block;
    padding:8px 20px;
    border: solid 2px var(--ast-global-color-4);
    color: var(--ast-global-color-4);
    font-weight: 600;
    text-decoration:none !important;
    border-radius:50px;
    transition:0.3s ease;
}
.btn-temoignages:hover{
    background-color: var(--ast-global-color-4);
    color: var(--ast-global-color-2);
}