/* Contenedor mosaico (se controla via JS con column-count) */
.gmh-gallery {
  column-gap: 10px;
}

/* Elemento */
.gmh-gallery a {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
}

/* Imagen */
.gmh-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gmh-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
