.horizontal-gallery {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.horizontal-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2vw;
  padding: 0 5vw;
  width: fit-content;
}

.image-box {
  flex: 0 0 auto;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0.85;
}

.image-box:hover {
  opacity: 1;
}

.image-box img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
