.actus .actu{
    position: relative;
    height: fit-content;
    margin: 20px 0px;
}
.actu__content{
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.actu__title{
    padding: 8px 12px;
}
.actu__category, .actu__title, .actu__date{
    width: fit-content;  
}  
.actu__category{
    color: white;
    background-color: var(--main-color);
    padding: 1px 12px;
}
.actu__category > a{
    color: white;
}
.actu__title{
    background-color: white;
    padding: 10px;
    max-width: 260px;
}
.actu__date{
    color: var(--secondary-color);
    background-color: white;
    padding: 1px 12px;
    margin: 0px;
}
.single-actu__date {
    color: var(--secondary-color);
    background-color: white;
    margin: 0px;
    margin-top: 40px;
}
.actu__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.archive-event_date{
    margin-bottom: unset;
    margin-top: unset;
    position: absolute;
    top: -30px;
    left: 50px;
    z-index: 500;
}
.classic-section .archive-event .archive-event__event{
    margin-bottom: 90px;
}
.archive-event{
    padding-top: 50px;
}
.event__excerpt{
    background-color: white;
    padding: 10px;
    width: 75%;
}
.classic-section .archive-event .archive-event__event .event__excerpt{
    display: none;
}
.classic-section .archive-event .archive-event__event:first-child .event__excerpt{
    display: block;
}
.classic-section .archive-event .archive-event__event .actu__title{
    padding-right: 10px;
}
.btn-actu{
    height: 75px;
}
@media (min-width: 768px){
    .actu__title{
        padding: 10px 10px 10px 0px;
    }
    .actu__content{
        position: relative;
        bottom: 70px;
        left: 0px;
    }
    .actus{
        display: flex;
        flex-wrap: wrap;
    }
    .actus .actu{
        width: 50%;
        padding-right: 40px;
    }
    .actus .actu .actu__image{
        width: 100%;
        height: 293.33px;
        transition: all 0.3s ease-out;
    }
    .actu__image-container{
        overflow: hidden;
    }
}

@media (min-width: 960px){
    .actus .actu{
        width: 33.333%;
        padding-right: 40px;
        margin: 0px;
    }    
    .classic-section .archive-event .archive-event__event:first-child{
        width: 66.666%;
    }
    .classic-section .archive-event .archive-event__event:nth-child(2){
        align-self: end;
    }
    .classic-section .archive-event .archive-event__event:first-child .actu__image{
        height: 400px;
    }
    .classic-section .archive-event .archive-event__event .actu__content{
        position: absolute;
        bottom: 0px;
        left: 0px;
    }
    .classic-section .archive-event .archive-event__event .event__date-debut, .classic-section .archive-event .archive-event__event .event__date-fin{
        width: 85px;
        height: 85px;
        padding: 0px 25px;
        font-size: 1.9rem;
    }
    .classic-section .archive-event .archive-event__event:first-child .event__date-debut, .classic-section .archive-event .archive-event__event:first-child .event__date-fin{
        width: 100px;
        height: 100px;
        padding: 0px 30px;
        font-size: 2rem;
    }
    .classic-section .archive-event .archive-event__event .event__date{
        left: 62px;
    }
    .classic-section .archive-event .archive-event__event:first-child .event__date{
        left: 50px;
    }
    .classic-section .archive-event .archive-event__event:first-child .actu__content{
        bottom: 0px;
        left: 50px;
    }
    .classic-section .archive-event .archive-event__event:first-child .actu__title{
        padding: 10px;
        max-width: 500px;
    }
    .classic-section .archive-event .archive-event__event:first-child .event__excerpt{
        padding-bottom: 0px;
    }
    .actu:hover .actu__image{
        transform: scale(1.08);
    }
}