.actu-hiver{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 15px;
    background-color: #12254B;
    border-radius: 32px;
    width: 100%;
    min-height: 300px;
    height: 100%;
    padding: 32px;
}
.actu-hiver p{
    font-size: 24px;
    font-weight: 800;
    color:white;
    text-align: center;
}
.actu-hiver a{
    color:white !important;
    font-size: 20px;
    text-decoration: underline !important;
}
.actu-hiver a:hover i{
    padding-left: 10px;
}
.actu-hiver a i{
    padding-left: 5px;
    transition: .3s;
}
.actu-hiver img{
    transition: .2s;
}
.actu-hiver:hover img{
    scale: 1.1;
}
.categories{
    display:flex;
    gap: 20px;
    flex-wrap: wrap;
}
.categories-mobile{
    display: none;
}
.head-mobile, .foot-mobile{
    display: none;
}

@media screen and (max-width: 600px){
    .categories{
        display: none;
        flex-direction: column;
        justify-content: start;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 150;
        width: 100vw;
        height: 100dvh;
        background: white;
        overflow-y: scroll;
        &.active{
            display: flex;
        }
        .category-btn{
            width: fit-content;
            margin-left: 15px;
            position: relative;
            z-index: 5;
        }
    }
    .head-mobile{
        display: flex;
        justify-content: center;
        position: relative;
        padding: 15px;
        background: white;
        border-bottom: solid 2px #E3E7F1;
        h4{
            line-height: normal;
            margin: 0;
            font-size: 25px !important;
        }
        .close-filtres{
            position: absolute;
            right: 17px;
            top: 12px;
            font-size: 35px;
            color: #12254B;
        }
    }
    .foot-mobile{
        display: flex;
        justify-content: center;
        background-color: white;
        width: 100%;
        padding: 30px;
        position: absolute;
        bottom: 0;
        left: 0;
        a{
            color: #12254B !important;
            text-decoration: underline !important;
            font-size: 20px !important;
            font-weight: 800 !important;
            font-family: 'Catamaran';
            letter-spacing: -1px !important;
        }
    }
    .categories-mobile{
        display: block;
        width: 100%;
        padding: 15px !important;
        color: #234281 !important;
        font-size: 18px;
        font-weight: 700;
        border: none;
    }
}
.categories .category-btn{
    background-color: transparent;
    border: solid 2px #FFB300;
    color: #FFB300;
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.categories .category-btn.active{
    color: white;
    background-color:#FFB300;
}
.categories .category-btn i{
    display: none;
}
.categories .category-btn.active i{
    color: white;
    display: inline-block;
}
.header-actualites .filtres{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: solid 1px #EEF1F6;
    color: #12254B;
    margin-bottom:30px;
    margin-top:30px;
}

.header-actualites .filtres > div{
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}
.header-actualites .filtres p{
    color: #12254B;
    white-space: nowrap;
    margin-bottom:0;
    font-weight: 800;
    font-size: 20px;
}
.header-actualites .filtres > div p{
    font-size: 16px;
}
.header-actualites .filtres select{
    background: #EEF1F6;
    color: #12254B;
    border-radius: 50px;
    border: none;
    padding: 12px 35px 12px 20px;
    min-width: 110px;
    appearance: none;
    -webkit-appearance: none;
}
.header-actualites .filtres > div::after{
    content: "";
position: absolute;
right: 20px;
top: 45%;
transform: translateY(-50%) rotate(45deg);
border-bottom: solid 2px #FFB300;
border-right: solid 2px #FFB300;
width: 10px;
height: 10px;
}
@media screen and (max-width: 550px){
    .header-actualites .filtres{
        gap: 20px;
        align-items: center;
    }
    .header-actualites .filtres > div{
        gap: 5px;
    }
    .header-actualites .filtres select{
        min-width: 0px;
        max-width: 110px;
    }
}



.actualites{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 30px;
        grid-row-gap: 50px;
}
@media screen and (max-width: 1100px){
    .actualites{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 670px){
    .actualites{
        grid-template-columns: repeat(1, 1fr);
    }
}
.actualite .actu-thumbnail-div{
    width: 100%;
    height: 280px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    a{
        display: block;
        height: 100%;
        img{
            height: 100%;
            object-fit: cover;
            transition: 0.3s;
        }
    }
}
.actualite .category{
    display: block;
    width: fit-content;
    position: absolute;
    z-index: 10;
    left: 20px;
    top: 20px;
    padding: 0px 10px;
    background: rgb(0, 0, 0, 0.3);
    backdrop-filter: blur(30px);
    border-radius: 50px;
    &::after{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: 11;
    }
}
.actualite .category li, .actualite .category a{
    margin: 0;
    padding: 0;
    color:white;
    list-style: none;
}
.actualite .category ul{
    color: white;
    list-style: none;
    margin: 0;
    padding: 0;
}
.actualite .actu-thumbnail-div:hover a > img{
    transform: scale(1.1);
}
.actualite .actu-date{
    display: flex;
    gap: 5px;
    align-items: center;
    color: #12254B;
    font-size: 14px;
    margin-top: 15px;
}
.actualite .actu-date p{
    padding:0;
    margin:0;
    margin-top: 3px;
}
.actualite h4 a{
    font-size: 23px;
    font-weight: 800;
    line-height: 29px;
    color: #12254B;
    margin-bottom: 10px;
    transition: .3s;
    &:hover{
        color: #FFB300;
    }
}
.actualite > a{
    display:flex;
    align-items:center;
    gap: 15px;
    color: #12254B;
    text-decoration: underline;
    transition: .3s;
    font-weight: 800;
}
.actualite > a:hover{
    gap: 22px;
}
.actualite > a > svg{
    width: 28px;
}
.actu-dossier-presse{
    width: 100%;
    height: 100%;
    background-color: rgb(18, 37, 75, 0.6);
    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap: 15px;
    border-radius: 32px;
    position: relative;
    overflow:hidden;
    min-height: 300px;
    transition: .2s;
}
.actu-dossier-presse:hover{
    background-color: rgb(18, 37, 75, 0.7);
    &::before{
        scale: 1.1;
    }
}
.actu-dossier-presse svg{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    width: 80%;
}
.actu-dossier-presse::before{
    content:"";
    background: url('/wp-content/uploads/2023/12/chalet-1.png');
    background-repeat: no-repeat;
    background-position:center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index:-1;
    transition: .2s;
}
.actu-dossier-presse p{
    font-size: 28px;
    font-weight: 800;
    color:white;
    text-align: center;
    z-index: 1;
}
.actu-dossier-presse a{
    color:white !important;
    font-size: 20px;
    text-decoration: underline !important;
    z-index: 1;
}
.actu-dossier-presse a i{
    padding-left: 5px;
    transition: .2s;
}
.actu-dossier-presse a:hover i{
    padding-left: 10px;
}
.row-center{
    display: flex;
    justify-content:center;
}

.pagination{
    margin-top: 50px;
    display: flex;
    align-items:center;
    gap: 10px;
}
.pagination .page-numbers{
    width: 30px;
    height: 30px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0px 0px 15px 3px #2967C71A;
    font-size: 17px;
    font-weight: 700;
    color: #12254B;
}
.pagination .page-numbers[aria-current=page]{
    background: #12254B;
    color: white;
}
.pagination .next{
    margin-left: 20px;
}
.pagination .prev{
    margin-right: 20px;
}
.pagination .next, .pagination .prev{
    width: 40px;
    height: 40px;
}
.pagination .next img, .pagination .prev img{
    width: 100%;
    height: 100%;
}