#list_actu {
    padding: 4rem 0;
    text-align: center;
    /*font-size: 16px;*/
}

/*#list_actu .conteneur:last-child {*/
/*    max-height: 100vh;*/
/*    width: 100%;*/
/*    overflow-y: auto;*/
/*    overflow-x: hidden;*/
/*}*/

#list_actu .actu_card {
    max-width: 600px;
    margin-top: 2rem;
    position: relative;
}


#list_actu .actu_card-img {
    border-radius: 50px;
    transition: border-radius ease 250ms;
    cursor: pointer;
    /*padding : 225px 325px*/
}
/*@media screen and (max-width: 768px) {*/
/*    #list_actu .actu_card-img {*/
/*        padding: 200px 50%;*/
/*    }*/
/*}*/

#list_actu .actu_card-img:hover {
    border-radius: 18px;
}

#list_actu .actu_card-title {
    padding: 0 1rem;
    /*height: 4ch;*/
}

#list_actu .actu_card-desc {
    margin: 1ch 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

#list_actu .actu_card-link {
    font-style: italic;
    color: inherit;
    padding: 0.25em 1em;
    cursor: pointer;
}
#list_actu .actu_card-link:hover {
    color: var(--primary_clr);

}

#list_actu .actu_card-date {
    position: absolute;
    left: -1.5rem;
    top: -.5rem;
}

#list_actu .actu_card-month {
    font-weight: 600;
}

@media screen and (max-width: 576px) {
    #list_actu .actu_card-date {

        margin-top: .75rem;
        position: relative;
        top: 0;
        left: 0;
        display: flex;

    }
    #list_actu .actu_card-day {
        margin-right: 1ch;
    }
    #list_actu .actu_card-date > * {
        height: 100%;
        align-content: center;
    }
}

#list_actu .actu_card-day {
    margin-bottom: -10px;
}
#list_actu .actu_card-month {
    text-transform: capitalize;
    margin-bottom: 0;
}