.tkr-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 0.5px solid #0f4055;
  height: 40px;
  background: #2a4d63 !important;
  color: #fff !important;
}
.tkr-label {
flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 14px;
  color: #fff;
  background: #ae0202;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: bold;
}
.tkr-track {
  overflow: hidden;
  flex: 1;
}


.tkr-link{
    color:#fff;
}
.tkr-inner {
  display: flex;
  width: max-content;
  animation: tkr-scroll 28s linear infinite;
}
.tkr-inner:hover { animation-play-state: paused; }
.tkr-item {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tkr-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}
@keyframes tkr-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}