/* ============================================
   MARQUEE BAR
   ============================================ */

.marquee {
  background-color: var(--color-bg-dark);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 20s linear infinite;
}

.marquee__item {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #D4C9BA;
  padding: 0 32px;
  text-transform: uppercase;
  font-weight: 300;
}

.marquee__separator {
  color: var(--color-text-faint);
  padding: 0 6px;
  line-height: 1;
  align-self: center;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
