/* .gallery {
	
}

.glightbox img {
	padding: 5px;
	margin: 4px;
	border: 1px solid rgb(167, 159, 147);
	background: white;
	box-shadow: 0 8px 10px grba(0, 0, 0, 0.25);
} */

.gallery {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  flex-wrap: wrap;           /* wrap on small screens */
  gap: 16px;                 /* spacing between images */
}

.gallery img {
  background: white;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  display: block;
}

.gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .gallery {
	flex-wrap: nowrap;
	overflow-x: auto;
	justify-content: flex-start;
	padding: 0 10px;
  }

  .gallery a {
	flex: 0 0 auto;
  }
}