.pix-wrapper-bande-actus {
    max-width: 1920px;
    margin: 0 auto;
    padding: calc(clamp(30px, 11vw, 85px) * 100/85) 0 calc(clamp(30px, 11vw, 85px) * 120/85);

    background: url('i/motif-carousel-actus.webp') repeat center center;
    /* background-size: cover; */
    background-size: 800px 800px;
}

@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi) {
    .pix-wrapper-bande-actus {
        background-image: url('i/motif-carousel-actus-2x.webp');
    }

}

.pix-wrapper-bande-actus h2 {
    font-family: "Averia Serif Libre", serif;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 400;
    color: #632e48;
    text-transform: uppercase;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 1em;
    text-align: center;
}

.pix-swiper-actus {
    position: relative;
    
    max-width: 1920px;
    margin: 0 auto;
}

.pix-wrapper-bande-actus .pix-wrapper-actu {
    padding: 0px 20px;
    text-align: center;
}
.pix-wrapper-actu .pix-actu {
    position: relative;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    background: #fff;
    padding: 16px 16px 56px 16px;
    text-align: left;
    width: 100%;
    border-radius: 10px;
    vertical-align: top;    
    overflow: hidden;
}

.pix-wrapper-bande-actu .pix-wrapper-actu .pix-actu {
    max-width: 500px;
}


.pix-wrapper-actu .pix-actu-content {
    margin-top: 20px;
}
.pix-wrapper-actu .pix-actu-content h3 {
    text-transform: uppercase;
    color: #632e48;
    font-family: "Averia Serif Libre", serif;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
    line-height: 1;
}
.pix-wrapper-actu .pix-actu-content p {
    color: #401e2f;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 10px;
}

.pix-wrapper-actu .pix-actu-thumbnail {
    overflow: hidden;
    border-radius: 5px;
}
.pix-wrapper-actu .pix-actu-thumbnail img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    vertical-align: top;
    width: 100%;

    transition: transform 0.2s;
}

.pix-wrapper-actu .pix-actu-readmore {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(4px);

    background: #b85a90 url('i/plus.svg') no-repeat center center;
    background-size: 20px 20px;
    color: #fff;
    border-radius: 50px 50px 0 0;
    width: 50px;
    height: 54px;

    text-transform: uppercase;

    transition: background-color 0.2s, transform 0.2s;
}
.pix-wrapper-actu .pix-actu-readmore span {
    display: none;
}


.pix-wrapper-actu .pix-actu:hover .pix-actu-readmore {
    background-color: #632e48;
    transform: translateX(-50%) translateY(0px);
}
.pix-wrapper-actu .pix-actu:hover .pix-actu-thumbnail img {
    transform: scale(1.05);
}