article {
    margin: 1rem 0;
}
.contenus {
    display: flex;
    justify-content: center;
    gap: 4rem;
}
.contenu_post {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenu_post h3 {
    min-height: 3em; /* réserve la place pour 2 lignes de titre */
    display: flex;
    align-items: center;
    justify-content: center;
}
.contenu_post a {
    color: var(--secondary-500);
}
.contenu_btn {
    margin-top: auto;
}

.contenu_post img {
    aspect-ratio: 16/9;
    width: 100%;
    height: 250px; /* hauteur fixe identique pour tous */
    object-fit: cover;

}



