article {
    margin: 1rem 0;
}
.last-posts {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.last-posts_post {
    background-color: var(--white);
    color:var(--secondary-500);
    
}

.last-posts_post a {
    color:var(--secondary-500);
    text-align: center;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.last-posts_actus-divers {
    flex: 1 0 45%;
}

.last-posts_actus-une {
    flex: 1 0 55%;
}

.last-posts_intro {
    padding: 1rem;
    color:var(--body)
}

.last-post-link {
    font-size: 1rem;
    color: #FFF;
    text-decoration: none;
    transition: .5s all;
    padding: 0;
}

.last-post-link:hover {
        text-decoration: underline;
    }

.last-posts-wrapper {
    display: flex;
    align-items: center;
    
    gap: 2.4rem;
}

.last-posts_thumbnail {
    overflow: hidden;
}

.last-posts_thumbnail img {
    aspect-ratio: 4/2;
    object-fit: cover;
}

.last-posts_main-title {
    padding:0 1rem;
    margin: 0;
    text-align: center;
}

@media (max-width:768px) {
.last-posts {
    display: block;
}
.last-posts-wrapper {
    display: block;
    padding: 1rem;
}
.last-posts_actus-divers {
    flex: 1 1 100%;
}

.last-posts_actus-une {
    flex: 1 1 100%;
}

}