/* ticker styles */

/* ─── Ticker ─── */
.ticker-wrap {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-inner {
  display: flex;
  gap: 40px;
  animation: ticker 38s linear infinite;
  width: max-content;
  will-change: transform;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
}
.ticker-item::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--mint);
  border-radius: 50%;
  display: inline-block;
  margin-left: 30px;
}
