/* Slider principal */
.swiper-testimony-slider {
    width: 100%;
    height: 100%;       /* prend toute la hauteur disponible */
    
	box-sizing: content-box; /* pour que le padding ne réduise pas la taille des slides */
}

.swiper-testimony-slider .swiper-slide {
    flex-shrink: 0;
    width: auto;  /* important si slidesPerView > 1 */
}

/* Photo */
.picture-testimony-wrapper,
.testimony-photo {
    width: 100%;
    height: 100%;
    overflow: hidden;      /* crop contenu */
    display: flex;
    align-items: center;
    justify-content: center;
}

.picture-testimony-wrapper img,
.testimony-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* remplit et crop */
}

/* Contenu texte et infos */
.people-testimony-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.info-testimony-wrapper {
    flex: 1;
    min-width: 0;
}

.testimony-custom-text {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  /* centré horizontalement */
    overflow: hidden;     /* crop texte si dépasse */
}

/* Pagination */
.swiper-pagination {
    text-align: center;
    position: relative;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .people-testimony-wrapper {
        flex-direction: column;
    }
}
