/* Images listes : taille fixe + ratio conservé */
.tags-list img,
.post-list img,
.archive-list img,
img[alt=""] {
    width: 300px !important;      /* Largeur fixe raisonnable */
    height: 200px !important;     /* Hauteur fixe */
    object-fit: cover !important; /* Remplit sans déformation */
    object-position: center !important;
    display: block;               /* Évite les espaces indésirables */
    margin: 0 auto;               /* Centre si nécessaire */
}

article.mb-4 img,
article img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto 1rem auto;
}

/* Conteneur article responsive */
article.mb-4 {
    overflow: hidden;
}
/* Responsive */
@media (max-width: 768px) {
    .tags-list img,
    .post-list img {
        width: 250px !important;
        height: 160px !important;
    }
}
