/*
* FooGallery Custom CSS
* This file is created by adding custom CSS on FooGallery Settings page in wp-admin
* Created : 26 Dec 2025, 4:26 pm
*/

/* ✅ En móvil: cambiar masonry a grid (más estable) */
@media (max-width: 767px) {

  .foogallery.foogallery-masonry {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    height: auto !important;
  }

  /* quitar posicionamiento absoluto */
  .foogallery.foogallery-masonry .fg-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .foogallery.foogallery-masonry {
    grid-template-columns: 1fr !important;
  }
}
