/* Gallery Grid */
.fgm-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}
.fgm-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.fgm-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s ease;
}
.fgm-item:hover img {
  transform: scale(1.1);
}

/* GLightbox override nhỏ */
.glightbox-clean .gslide-description {
  font-family: inherit; /* giữ font theo theme */
}
