/* Gallery styles */
.image-gallery a {
  border: none !important;
  display: block;
  position: relative;
  overflow: hidden;
}

.image-gallery a:hover {
  background: none !important;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.image-gallery img {
  transition: transform 0.3s ease;
}

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