/* SE APLICA SOLO SI HAY 5 O MÁS IMÁGENES (Evita romper posts de 1 a 4 fotos) */
.media-gallery:has(.media-gallery__item:nth-child(5)) {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
  grid-gap: 6px !important;
  height: auto !important;
  max-height: 450px !important; 
  overflow-y: auto !important;  
  aspect-ratio: auto !important; 
}

/* Forzar proporciones estables en las celdas (Solo para posts de 5+ imágenes) */
.media-gallery:has(.media-gallery__item:nth-child(5)) .media-gallery__item {
  width: 100% !important;
  height: 110px !important; 
  position: relative !important;
  left: auto !important;
  top: auto !important;
}

/* Encuadre uniforme de las miniaturas (Solo para posts de 5+ imágenes) */
.media-gallery:has(.media-gallery__item:nth-child(5)) .media-gallery__item-thumbnail img,
.media-gallery:has(.media-gallery__item:nth-child(5)) .media-gallery__item-thumbnail canvas {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}


