/* --- GALLERY GRID --- */
.field--name-field-gallery-news .field__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.field--name-field-gallery-news .field__item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.field--name-field-gallery-news .field__item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* --- LIGHTBOX BACKDROP --- */
#ig-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#ig-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

#ig-lightbox.show {
  display: flex;
}
