.ctn_lst_post{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 50px;
    padding : 25px 0px;
}

.ctn_detail_post{
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 30px;
}

.separator{
    width: 100%; 
    height: 2px; 
    background-color: black; 
    margin: 30px 0;
}

.img_post{
    width:100%;
    border-radius : 20px!important;
}

.ctn_img_post{
    width:50%;
}

.ctn_detail_post{
    width:50%;
}

.title > h2 {
    margin : 0px!important;
}

.title > h2 > a {
    font-size : 26px;
    text-transform: uppercase;
    font-weight: 600;
}

.extrait > p {
    margin: 0px!important;
}

.category{
    color : #8BA08E;
    text-transform: uppercase;
    border-style: solid;
    border-color : #8BA08E;
    border-radius: 50px;    
    border-width: 1px;
    padding: 3px 10px;
    margin-right : 10px;
    transition: none !important;
}

.category:hover{
    transition: none !important;
}

.btn_ctn > a {
    text-transform: uppercase;
    text-decoration: underline!important;
}

.rest_post{
    display:none;
}

@media screen and (max-width:1366px) {
}

@media screen and (max-width:1200px) {
}

@media screen and (max-width:1024px) {
}

@media screen and (max-width:767px) {

    .ctn_lst_post {
        display: flex;
        flex-direction: column;
    }

    .ctn_img_post {
        width : 100%;
    }

    .ctn_detail_post {
        width : 100%;
        row-gap: 20px;
    }

    .img_post {
        border-radius: 10px !important;
    }

    .ctn_detail_post{
        margin-top:30px;
        row-gap : 20px;
    }

    .title > h2 > a {
        font-size: 20px;
        line-height: 22px;
    }
    
    .ctn_lst_post {
        padding : 10px 0;
    }

}