/* News ticker styles */
.news-ticker-bc566545-container {
  --blue: #1e3a8a;
  --blue2: #1e40af;
}

.stats-ticker-bar {
  background: var(--blue);
  padding: .6rem 0; 
  overflow: hidden;
  border-bottom: 2px solid var(--blue2);
}

.stats-ticker-track {
  display: flex; 
  gap: 0;
  animation: ticker-bc566545 30s linear infinite;
  width: max-content; 
  align-items: center;
}

.stats-ticker-track:hover {
  animation-play-state: paused;
}

.stats-ticker-item {
  display: flex; 
  align-items: center; 
  gap: .55rem;
  font-size: .85rem; 
  font-weight: 600; 
  color: rgba(255,255,255,.9);
  white-space: nowrap; 
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  transition: color 0.3s ease;
}

.stats-ticker-icon { 
  font-size: 1rem; 
  display: flex;
  align-items: center;
}

.stats-ticker-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.stats-ticker-text { 
  color: inherit; 
}

@keyframes ticker-bc566545 { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-50%); } 
}