/*
 * ENITA homepage Hero manual navigation.
 *
 * The artwork stays clean while the small carousel indicators remain visible;
 * visitors can also swipe on touchscreens or drag with a mouse, while vertical
 * gestures continue to scroll the page.
 */

.hero-home-concept-carousel .home-hero-carousel__track {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  cursor: grab;
}

.hero-home-concept-carousel .home-hero-carousel__track img {
  -webkit-user-drag: none;
}

.hero-home-concept-carousel .home-hero-carousel__track.is-dragging {
  cursor: grabbing;
}

.hero-home-concept-carousel .home-hero-slide.is-active {
  pointer-events: auto;
}

@media (max-width: 760px) {
  .hero-home-concept-carousel .home-hero-carousel__track {
    cursor: default;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home-concept-carousel .home-hero-carousel__track {
    cursor: default;
  }
}
