.liste-puce {
    height: auto;
}

.liste-puce .row {
    display: flex;
    height: 750px;
    width: 100%;
}

.liste-puce .row .listeImageContainer {
    position: relative;
    display: flex;
    width: auto;
    height: 100%;
    flex: 1 1 49%;
    overflow: hidden;
}

.liste-puce .row .listeImageContainer .swiperImage {
    width: 100%;
    height: 100%;
}

.liste-puce .row .listeImageContainer .swiperImage .swiper-slide .imgcropCtn {
    width: 100%;
    height: 100%;
}

.liste-puce .row .listePuceContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 32px;
    height: 100%;
    flex: 1 1 49%;
    padding: 0 8.333%;
    background-color: #650b12;
    overflow: hidden;
}

.liste-puce .row .listePuceContainer::before {
    content: "";
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    background-image: url(https://dimgrey-ram-921172.hostingersite.com/wp-content/uploads/2025/09/MotifRouge.png);
    background-size: cover;
    background-position: center;
}

.liste-puce .row .listePuceContainer .swiper-wrapper {
    position: relative;
    z-index: 1;
}

.swiperImage, .swiperListePuce {
    width: 100%;
}

.swiperImage .swiper-wrapper, .swiperListePuce .swiper-wrapper {
    display: flex;
}

.swiperImage .swiper-wrapper .swiper-slide, .swiperListePuce .swiper-wrapper .swiper-slide {
    flex-shrink: 0;
}

.liste-puce .row .listePuceContainer .swiper-wrapper .content-puce {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.liste-puce .row .listePuceContainer .swiper-wrapper .content-puce .number {
    display: flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 100%;
    background: var(--green-light, #B8C61D);
}

.liste-puce .row .listePuceContainer .swiper-wrapper .content-puce .number p {
    color: var(--cream, #FEFAE0);
    font-family: "Gotham";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2; /* 120% */
    text-transform: uppercase;
    margin: 0;
}

.liste-puce .row .listePuceContainer .swiper-wrapper h2 {
    color: var(--cream, #FEFAE0);
    font-family: "Josefin Sans";
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25; /* 125% */
    text-transform: uppercase;
}

.liste-puce .row .listePuceContainer .swiper-wrapper .content-puce .content-true p:first-child strong {
    color: var(--cream, #FEFAE0);
    font-family: "Gotham";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5; /* 150% */
    text-transform: uppercase;
}

.liste-puce .row .listePuceContainer .swiper-wrapper .content-puce .content-true p {
    color: var(--cream, #FEFAE0);
    /* Text/text-md */
    font-family: "Gotham";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* 150% */
    margin: 0;
}

.liste-puce .swiper-pagination {
    position: initial;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.liste-puce .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    display: flex;
    width: 30px;
    height: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 100%;
    background: transparent;
    color: var(--cream, #FEFAE0);
    font-family: "Gotham";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2; /* 120% */
    text-transform: uppercase;
    margin: 0;
    border: 1px solid white;
    transition: 0.3s all ease;
}

.liste-puce .swiper-pagination .swiper-pagination-bullet::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--green-light, #B8C61D);
    border-radius: 100%;
    transform: translateX(-50%) translateY(-50%);
    transition: 0.3s all ease;
}

.liste-puce .swiper-pagination .swiper-pagination-bullet-active {
    color: var(--cream, #FEFAE0);
    border: 1px solid transparent;
    transition: 0.3s all ease;
}

.liste-puce .swiper-pagination .swiper-pagination-bullet-active::before {
    width: 100%;
    height: 100%;
    background: var(--green-light, #B8C61D);
    transition: 0.3s all ease;
}

@media (max-width: 992px) {

    .liste-puce .row {
        height: auto;
    }

    .liste-puce .row .listeImageContaine, .liste-puce .row .listePuceContainer {
        flex: 1 1 100%;
    }

    .liste-puce .row .listeImageContainer {
        height: 400px;
    }

    .liste-puce .row .listePuceContainer {
        padding: 96px 8.33%;
    }

    .liste-puce .row .listePuceContainer .swiper-wrapper .content-puce {
        flex-direction: column;
    }
}