.swiper {
    width: 100%;
    max-height: 60vh;

}

.swiper-wrapper {
    align-items: center;
    transition-timing-function: var(--animation-easing);

    width: 100%;
}

.swiper-slide {

    text-align: center;

    /* important */

}

.swiper-button-prev {
    order: 1;
}

.swiper-button-next {
    order: 3;
}


.swiper-button-prev,
.swiper-button-next {
    width: auto;
    color: inherit;
    position: relative;
    top: 0 !important;
    margin-top: 0 !important;
    height: auto;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none;
}

section.buttons {
    justify-content: center;
    margin-top: .5em;
    align-items: stretch;
    justify-content: center;
    display: flex;
    gap: 1rem;
}

.swiper-pagination {}


.swiper-pagination-fraction {
    font-family: "Futura";
    color: var(--near);
    position: relative;
    order: 2;
    width: auto;
    top: 0 !important;
    text-transform: uppercase;
    font-variant-numeric: normal;

}

.caption {
    position: absolute;
    top: 0;
    z-index: 2;
    background: #ffffff8f;
    backdrop-filter: blur(20px);
    opacity: 1;
    margin: 1em;
    transition: opacity var(--animation-duration) var(--animation-easing);
    max-width: 80%;
}

.caption.hidden {
    display: none;
}

.caption:hover {
    opacity: 0;
}


.swiper-slide {
    cursor: pointer;
    position: relative;
}

.swiper-slide.cursor-left {
    cursor: w-resize;
    /* flèche gauche */
}

.swiper-slide.cursor-right {
    cursor: e-resize;
    /* flèche droite */
}