/* ==========================================================
   Bellemann - Gallery Block
   Responsive grid gallery
========================================================== */

.bellemann-gallery {
  margin: 0 auto;
  max-width: 1200px;
}

.bellemann-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bellemann-gallery__item {
  aspect-ratio: 4 / 3;  /* force uniform box size (change to 1/1 for squares, 16/9 for widescreen) */
  overflow: hidden;
}

.bellemann-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;    /* crop to fill without stretching */
  transition: transform 0.3s ease;
}

.bellemann-gallery__item:hover img {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .bellemann-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bellemann-gallery__grid {
    grid-template-columns: 1fr;
  }
}
