﻿.news-item-img {
    height: 300px; /* fixe la hauteur comme tu le souhaites */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

    .news-item-img img {
        height: 100%;
        width: auto;
        object-fit: cover; /* ou 'contain' si tu veux toujours montrer l’image entière */
    }
