/* ===================================================
   TICKER
   =================================================== */
.ticker-outer {
  background: linear-gradient(to bottom, #f0e8da 50%, #0a0000 50%);
  overflow: hidden;
  padding: 8px 0;
}

.ticker-wrap {
  width: 160%;
  margin-left: -30%;
  overflow: hidden;
  background: linear-gradient(90deg, #4C000D 7%, #4C000D 29%, #2E000D 82%, #4C000D 100%);
  padding: 22px 0;
  transform: rotate(1deg);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: ticker-scroll 160s linear infinite;
}

.ticker-item {
  color: #D3111A;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  white-space: nowrap;
  font-style: normal;
  transform: none;
  display: inline-block;
}

.ticker-icon {
  height: 18px;
  width: auto;
  opacity: .7;
  flex-shrink: 0;
  filter: invert(18%) sepia(90%) saturate(3000%) hue-rotate(340deg) brightness(90%) contrast(110%);
}

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