.temoignages.y-bg {
    background: var(--jaune-clair);
}

.temoignages.v-bg {
    background: var(--violet-glace);
}

.temoignages--wrapper {
    padding-inline: 24px;
}

@media screen and (min-width: 1328px) {
    .temoignages--wrapper {
        padding-inline: 0px;
    }
}

.temoignages--container {
    padding: 32px 0;
}

@media screen and (min-width: 992px) {
    .temoignages--container {
        padding: 64px 0;
    }
}

.temoignages .swiper-wrapper {
    align-items: stretch;
}

.temoignages--title {
    margin-bottom: 32px;
    text-align: center;
    max-width: 1188px;
    margin-inline: auto;
    padding-inline: 24px;
}

@media screen and (min-width: 1328px) {
    .temoignages--title {
        padding-inline: 0;
    }
}

.temoignages--title .uptitle {
    color: var(--violet);
    margin-bottom: 8px;
}

.temoignages--title h2 {
    margin-bottom: 16px;
}

.temoignages--item {
    border-radius: 8px;
    padding: 18px 16px;
    border: 1px solid var(--prune);
    height: 100%;
    pointer-events: none;
}

@media screen and (min-width: 992px) {
    .temoignages--item {
        padding: 0;
        display: flex;
        gap: 24px;
        align-items: center;
        border: none;
        height: 460px;
        pointer-events: auto;
        transition: padding 0.4s ease;
    }
}

.temoignages--item:not(.active) {
    cursor: pointer;
}

.temoignages--item.active {
    padding: 18px 20px;
    border: 1px solid var(--prune);
}

.temoignages--item.active .temoignages--inner {
    height: auto;
    width: auto;
    opacity: 1;
    transition: opacity 0.4s 0.4s ease;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    .temoignages--item.active .temoignages--photo span {
        opacity: 0;
    }
}

.temoignages--item.active img {
    filter: none;
}

.temoignages--photo {
    display: flex;
    position: relative;
    margin-bottom: 16px;
    flex-shrink: 0;
}

@media screen and (min-width: 992px) {
    .temoignages--photo {
        margin-bottom: 0;
        height: 100%;
    }
}

.temoignages--photo img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

@media screen and (min-width: 992px) {
    .temoignages--photo img {
        height: 100%;
        width: 192px;
        flex-shrink: 0;
        filter: grayscale(1) brightness(0.7);
        transition: filter 1s ease;
    }
}

.temoignages--photo span {
    display: none;
}

@media screen and (min-width: 992px) {
    .temoignages--photo span {
        color: white;
        display: block;
        position: absolute;
        left: 16px;
        bottom: 16px;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
        transition: opacity 0.3s ease;
    }
}

@media screen and (min-width: 992px) {
    .temoignages--inner {
        width: 0;
        height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .temoignages--item.active .temoignages--inner {
        min-width: 0;
        padding: 16px 24px 16px 0;
    }
}

.temoignages--inner .quote {
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
    font-family: var(--zalando-title);
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

@media screen and (min-width: 992px) {
    .temoignages--inner .quote {
        font-size: 1.25rem;
        -webkit-line-clamp: 12;
    }
}

.temoignages--quote {
    margin-bottom: 16px;
}

.temoignages--quote .temoignages--more {
    color: var(--prune);
    font-size: 0.75rem;
    line-height: 120%;
    margin-top: 12px;
    width: -moz-fit-content;
    width: fit-content;
    pointer-events: auto;
}

.temoignages--quote .temoignages--more::after {
    width: 14px;
    height: 14px;
}

.temoignages--quote .temoignages--more[hidden] {
    display: none;
}

.temoignages--quote .temoignages--more:focus-visible {
    outline: 2px solid var(--prune);
    outline-offset: 4px;
}

@media screen and (min-width: 992px) {
    .temoignages--quote .temoignages--more {
        font-size: 1rem;
        font-weight: 600;
    }
}

.temoignages--inner .infos {
    margin-top: auto;
}

.temoignages--inner .infos p {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 4px;
}

.temoignages--inner .infos span {
    opacity: 0.6;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}

.temoignages .swiper-slide {
    height: auto;
    width: 192px;
    transition: width 0.4s ease;
}

.temoignages .swiper-slide:has(.temoignages--item.active) {
    width: 630px;
}

.temoignages--pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.temoignages--pagination .swiper-pagination-bullet {
    background: var(--parme);
    opacity: 1;
}

.temoignages--pagination .swiper-pagination-bullet-active {
    background: var(--prune);
}

.temoignages-popup {
    width: min(860px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    background: var(--lilas);
    border-radius: 8px;
    color: var(--prune);
}

.temoignages-popup--container {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.temoignages-popup--quote p {
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    line-height: 150%;
    font-family: var(--zalando-title);
    text-align: center;
}

.temoignages-popup--infos p {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 4px;
}

.temoignages-popup--infos span {
    opacity: 0.6;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .temoignages-popup {
        width: min(920px, calc(100vw - 96px));
        max-height: calc(100dvh - 96px);
        border-radius: 16px;
    }

    .temoignages-popup--container {
        padding: 64px clamp(64px, 7vw, 96px);
    }

    .temoignages-popup--quote p {
        font-size: 1.125rem;
    }

    .temoignages-popup--infos p {
        font-size: 1.125rem;
    }
}

/*# sourceMappingURL=style.css.map */
