.news_hp_container{
    display: flex;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.news_hp_item_highlighted, .news_hp {
    width: calc(50% - 15px);
}

.news_hp_item {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
}

.news_hp_item:hover {
    transform: translate(0, -5px);
}

.news_hp_item_date {
    padding: 5px 0px;
    background-color: #2A6EBB;
    border-radius: 30px;
    color: white;
    width: 20%;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    min-width: 100px;
}

.news_hp_item_content{
    padding: 0px 25px 25px 25px;
}

.news_hp_item_title {
    margin: 10px 0px 20px 0px;
    display: block;
}

.news_hp_item_excerpt {
    width: 95%;
}

.news_hp_item_more {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
}

/*.news_hp_item:hover .news_hp_item_more_link {
    transform: translate(5px);
}

.news_hp_item:hover .news_hp_item_more_link::after {
    transform: translate(5px);
}*/

/* Higlight */

.news_hp_item_highlighted {
    padding: 0 !important;
}

.news_hp_item_highlighted_img {
    flex: 1;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: 50% 50%;
    min-height: 250px;
    margin-bottom: 20px;
}

.news_hp_item_date_highlighted {
    position: absolute;
    right: 50px;
    top: 25px;
}

/* 2 dernières */

.news_hp {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


@media screen and (max-width: 768px) {

    .news_hp_item_highlighted, .news_hp {
        width: 100%;
    }

}

@media screen and (max-width: 480px) {
    
}