/* =====================================================
   LIONSTRIDE NEWS TICKER
   ===================================================== */

.lionstride-ticker {
  width: 100%;
  height: 32px;
  overflow: hidden;
  background: #111827;
  color: #d4af37;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;

  position: fixed;
  top: 72px; /* sits BELOW the header */
  left: 0;
  z-index: 9998;

  display: flex;
  align-items: center;
}

.lionstride-ticker-track {
  display: inline-flex;
  gap: 80px;
  animation: lionstrideTickerMove 40s linear infinite;
  padding-left: 100%;
}

@keyframes lionstrideTickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Push content down to account for ticker */
body {
  padding-top: 32px;
}

/* =====================================================
   WORLD ATHLETICS LINK
   ===================================================== */

.lionstride-wa-link {
  display: inline-block;
  margin-top: 14px;
  color: #d4af37;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.lionstride-wa-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}
