.route-gallery {
  padding: 2em;
}

.route-gallery h2 {
  margin-bottom: 1em;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
}

.image-grid img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.image-grid img.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 9999;
  cursor: move;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
