.ticker {
  position: relative;
  background: var(--color-brand-navy, #111a23);
  overflow: hidden;
}

.ticker__viewport {
  height: 96px;
  overflow: hidden;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-xl, 32px);
  height: 96px;
  width: max-content;
  will-change: transform;
}

.ticker__set {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-xl, 32px);
  flex-shrink: 0;
}

.ticker__item {
  margin: 0;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.ticker__separator {
  flex-shrink: 0;
  color: var(--color-text-secondary);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--fw-bold);
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .ticker__viewport,
  .ticker__track {
    height: 72px;
  }

  .ticker__separator {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    will-change: auto;
  }
}
