/* Image Ticker Section */
.image-ticker-section {
  background-color: #000;
  padding: 0;
  overflow: hidden;
  height: clamp(260px, 46vw, 600px);
  position: relative;
}

.image-ticker-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-ticker-track {
  display: flex;
  gap: 16px;
  height: 100%;
  animation: scroll-images 25s linear infinite;
  will-change: transform;
  -webkit-animation: scroll-images 25s linear infinite;
}

.ticker-image-item {
  flex-shrink: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: clamp(180px, 24vw, 400px);
}

.ticker-image-item.portrait {
  width: clamp(180px, 24vw, 400px);
}

.ticker-image-item.landscape {
  width: clamp(320px, 52vw, 900px);
}

.ticker-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(0.3);
}

@keyframes scroll-images {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@-webkit-keyframes scroll-images {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .ticker-image-item.portrait {
    width: clamp(150px, 32vw, 250px);
  }

  .ticker-image-item.landscape {
    width: clamp(300px, 70vw, 600px);
  }
}

@media (max-width: 768px) {
  .image-ticker-track {
    animation: scroll-images 20s linear infinite;
    -webkit-animation: scroll-images 20s linear infinite;
  }

  .ticker-image-item {
    width: clamp(150px, 50vw, 250px);
  }

  .ticker-image-item.portrait {
    width: clamp(140px, 42vw, 200px);
  }

  .ticker-image-item.landscape {
    width: clamp(260px, 72vw, 450px);
    height: 100%;
  }
}
