.news-ticker-wrapper {
  width: 100%;
  background: var(--darkblue);
  border-bottom: 1px solid var(--darkblue);
  display: flex;
  align-items: center;
  height: 36px;
  overflow: hidden;
  font-size: 13px;
  font-family: inherit;
  position: absolute;
  z-index: 1002;
}

.ticker-label {
  flex-shrink: 0;
  background: var(--white);
  color: var(--darkblue);
  font-weight: 600;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  border-bottom-right-radius: 50rem;
  white-space: nowrap;
  border-top-right-radius: 50rem;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  color: var(--white);
}

.ticker-item a {
  color: inherit;
  text-decoration: none;
}
.ticker-item a:hover { opacity: 0.7; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.header_news {
  padding-top: 50px;
  transition: padding-top 0.3s ease;
}

.header_news.is-sticky {
  padding-top: 0;
}