/* core_companies_carousel.css — styles for the drag/momentum company carousel.
   Applies only to opted-in tracks (.core-carousel); other marquees are untouched. */

.core-carousel {
  cursor: grab;
  /* let vertical page scroll pass through, capture horizontal drag for the band */
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.core-carousel.is-dragging {
  cursor: grabbing;
}

/* The band is positioned by JS (transform) — switch the CSS marquee off. */
.core-carousel .client-marquee__inner {
  animation: none !important;
}

.core-carousel .client-marquee__inner span {
  -webkit-user-select: none;
  user-select: none;
}
