.images-loop-scroll-section {
  position: relative;
  height: 150vh;
  min-height: 4600px;
  overflow: visible !important;
}

.images-loop-scroll-section * {
  box-sizing: border-box;
}

.images-loop-scroll-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  z-index: 10;
}

.images-loop-scroll-stage.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100vw;
  height: 100vh;
}

.images-loop-scroll-stage.is-ended {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.images-loop-scroll-heading {
  position: absolute;
  left: clamp(1rem, 3vw, 3rem);
  top: clamp(4rem, 11vh, 8rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: "Erica",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: calc(16px + 5vw);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: #fff;
  pointer-events: none;
  user-select: none;
}

.images-loop-scroll-heading span {
  display: block;
}

.images-loop-scroll-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}

.images-loop-scroll-item {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12rem;
  height: 16rem;
  overflow: visible;
  transform-origin: left bottom;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: auto;
}

.images-loop-scroll-link {
  display: block;
  width: calc(100% + 3px);
  height: 100%;
  overflow: hidden;
  background: #f9b947;
  text-decoration: none;
  color: inherit;
}

.images-loop-scroll-media {
  display: block;
  width: 112%;
  height: 100%;
  object-fit: cover;
  transform: translateX(var(--parallax-x, 0%));
  will-change: transform;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.images-loop-scroll-item:hover .images-loop-scroll-media {
  transform: translateX(var(--parallax-x, 0%)) scale(1.035);
}

.images-loop-scroll-label {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.55rem);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  white-space: nowrap;
  transform-origin: left bottom;
  opacity: 0;
  pointer-events: none;
}

.images-loop-scroll-item:hover .images-loop-scroll-label {
  opacity: 1;
}

.images-loop-scroll-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .images-loop-scroll-section {
    height: auto;
    min-height: 0;
    overflow: hidden !important;
  }

  .images-loop-scroll-stage,
  .images-loop-scroll-stage.is-fixed,
  .images-loop-scroll-stage.is-ended {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 7rem 1rem 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .images-loop-scroll-stage::-webkit-scrollbar {
    display: none;
  }

  .images-loop-scroll-heading {
              top: 7.5rem;
        left: auto;
  font-size: calc(22px + 5vw);
        z-index: 3;
        text-align: center;
        margin-left: 11px;
  }

  .images-loop-scroll-track {
    position: relative;
    inset: auto;
    display: flex;        margin-top: 50%;
    gap: 0.75rem;
    width: max-content;
    height: auto;
    pointer-events: auto;
  }

  .images-loop-scroll-item {
    position: relative;
    left: auto;
    bottom: auto;
    width: 12rem;
    height: 16rem;
    flex: 0 0 auto;
    opacity: 1 !important;
    transform: none !important;
  }

  .images-loop-scroll-media {
    width: 100%;
    transform: none !important;
  }

  .images-loop-scroll-label {
    position: static;
    margin-bottom: 0.5rem;
    opacity: 1 !important;
    transform: none !important;
  }
}