/* === NXup - Correction affichage mobile des images === */
.post-gallery img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .post-gallery {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
}
/* === Fin du correctif === */
