.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
}

.gallery-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover .gallery-thumbnail {
  transform: scale(1.05);
}

.caption {
  padding: 10px;
  font-size: 14px;
  color: #333;
  text-align: center;
  margin: 0;
  background: #fff;
}

/* Customize Lightbox caption styling */
.lb-data .lb-details {
  background-color: rgba(0, 0, 0, 0.9);
}

.lb-data .lb-caption {
  color: #fff;
  font-size: 14px;
  padding: 10px;
}
/*
#lb-prev, #lb-next { position: absolute; top:50%; transform: translateY(-50%); background:rgba(0,0,0,0.5); color:#fff; border:none; padding:10px; font-size:24px; }
#lb-prev { left: 10px; } #lb-next { right: 10px; }
#lightbox.hidden { display:none; }
#lightbox img { max-width:90vw; max-height:90vh; display:block; margin:0 auto; }
*/
