.pix-wrapper-bande-actus {
    /* max-width: 1920px; */
    background: #fcfdfd;
    margin: 0 auto;
    padding: clamp(30px, 6vw, 85px) clamp(10px, 2vw, 40px) clamp(40px, 5vw, 70px);
    overflow: hidden;
    position: relative;
}

.pix-wrapper-bande-actus-inner {
    max-width: 1920px;
    margin: 0 auto;
}

.pix-wrapper-bande-actus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00374b;
    /* clip-path: polygon(66% 0%, calc(100% - 100px) 50%, 66% 100%, 0 100%, 0 0); */
    clip-path: polygon(calc(100% - min(600px, 33%)) 0%, calc(100% - 100px) 50%, calc(100% - min(600px, 33%)) 100%, 0 100%, 0 0);

    transition: clip-path 0.8s ease;
}

.pix-wrapper-bande-actus h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(30px, 4vw, 55px);
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 0.3em;
}

.pix-wrapper-bande-actus h2 strong {
    font-weight: 600;
}


.pix-swiper-actus {
    position: relative;
    
    max-width: 1920px;
    margin: 0 auto;
    padding: 10px 0;
    overflow: hidden;
}

.pix-swiper-actus .swiper-slide {
    height: auto;
}

.pix-swiper-actus .pix-wrapper-actu {
    padding: 0px 20px;
}

.pix-wrapper-actu {
    text-align: center;
    height: 100%;
}
.pix-wrapper-actu .pix-actu {
    position: relative;
    display: inline-block;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    font-size: 20px;
    width: round(up, 100%, 1px);
}
.pix-wrapper-actu .pix-wrapper-actu-content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.pix-wrapper-actu .pix-actu-content {
    text-align: left;
    padding: 1em;
    padding-right: 3.5em;
    padding-bottom: 2em;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pix-wrapper-actu .pix-actu-content h3 {
    text-transform: uppercase;
    color: #00374b;
    font-weight: 500;
    font-size: 1.3em;
    font-family: "Oswald", sans-serif;
    margin: 0;
}
.pix-wrapper-actu .pix-actu-content p {
    color: #303030;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.2;
    margin: 0;
    margin-top: 0.5em;
}

.pix-wrapper-actu .pix-actu-voir-plus {
    background: #e2051b;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
    width: 2.5em;
    height: 2.5em;
}
.pix-wrapper-actu .pix-actu-voir-plus img {
    font-size: 1em;
    transition: transform 0.3s ease;
}

.pix-wrapper-actu .pix-actu-thumbnail {
    overflow: hidden;
}
.pix-wrapper-actu .pix-actu-thumbnail img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
    vertical-align: top;
    background: #fff;
    width: 100%;
    transition: transform 0.3s ease;
}

.pix-wrapper-actu:hover .pix-actu-voir-plus img {
    transform: rotate(90deg);
}
.pix-wrapper-actu:hover .pix-actu-thumbnail img {
    transform: scale(1.05) rotate(1deg);
}

@media (max-width: 780px) {
    .pix-wrapper-bande-actus::before {
        clip-path: polygon(calc(100% - 140px) 0%, calc(100% - 20px) 50%, calc(100% - 140px) 100%, 0 100%, 0 0);
    }

    .pix-wrapper-bande-actus {
        padding-inline: 0;
    }

    .pix-wrapper-actu .pix-actu {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .pix-wrapper-bande-actus h2 strong {
        display: block;
    }

    .pix-wrapper-actu .pix-actu {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .pix-wrapper-bande-actus::before {
        clip-path: polygon(calc(100% - 60px) 0%, calc(100% - 0px) 50%, calc(100% - 60px) 100%, 0 100%, 0 0);
    }
}