.ticker.scroll-velocity {
  position: relative;
  padding: 0;
  max-width: 100vw;
  overflow: hidden;
  overflow-x: clip;
  contain: inline-size paint;
  isolation: isolate;
}

.scroll-velocity::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16, 16, 15, .82), transparent 5%, transparent 95%, rgba(16, 16, 15, .82));
}

.scroll-velocity-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  padding: 17px 0;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.scroll-velocity-sequence {
  display: flex;
  flex: none;
  align-items: center;
}

.ticker.scroll-velocity .scroll-velocity-sequence span {
  flex: none;
  margin: 0 32px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-velocity-sequence i {
  display: grid;
  flex: none;
  width: 18px;
  height: 18px;
  margin-right: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font: 800 10px/1 Manrope, Arial, sans-serif;
  font-style: normal;
}

@media (max-width: 760px) {
  .scroll-velocity-track { padding: 14px 0; }
  .ticker.scroll-velocity .scroll-velocity-sequence span {
    margin-right: 22px;
    font-size: 10px;
  }
  .scroll-velocity-sequence i {
    width: 16px;
    height: 16px;
    margin-right: 22px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-velocity-track {
    transform: none !important;
    will-change: auto;
  }
}
