.gallery-img {
  cursor: pointer;
  transition: transform 0.2s ease;
  height: 150px;
  object-fit: contain;
}

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

