/* =========================
   GALLERY STRIP
========================= */

.route-gallery-strip {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 150px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  will-change: transform;
}

@media (hover: hover) {
  .gallery-item:hover img {
    transform: translateY(-6px) scale(1.02);
  }
}

@media (max-width: 900px) {
  .gallery-item {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-item {
    height: 92px;
  }
}/* CSS Document */

