/* Full-bleed ticker divider - shared across site pages (homepage, Products,
   etc.) so the styling can't drift out of sync between copy-pasted copies.
   Usage: <div class="wp-ticker" data-words="WILDPACK,CARDS,ALBUMS"></div>
   then call renderTicker() from ticker.js on it (or let ticker.js's own
   auto-init do it - see that file's header comment). */

.wp-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2E2A3D;
  border-bottom: 1px solid #2E2A3D;
  background: #100D19;
}

.wp-ticker__track {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  padding: 10px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.wp-ticker__token {
  margin-right: 10px;
}

.wp-ticker__dot {
  margin-right: 10px;
}
