/* ═══ BRAINTREE COVERAGE MARQUEE (vanilla CSS, no libraries) ═══ */

.coverage-marquee {
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* ── Static left portal ── */
.coverage-portal {
  position: relative;
  z-index: 12;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 60px;
  padding-right: 16px;
  background: #ffffff;
}

.coverage-portal__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  font-family: 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
  white-space: nowrap;
}

.coverage-portal__sep {
  width: 4px;
  height: 45px;
  flex-shrink: 0;
  background: #ff5722;
  border-radius: 4px;
  z-index: 10;
}

/* ── Scrolling area (the portal origin) ── */
.coverage-slide {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0px, #000 26px, #000 calc(100% - 44px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0px, #000 26px, #000 calc(100% - 44px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ── Marquee track (List A + List B) ── */
.coverage-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding: 0 12px;
  animation: coverage-scroll 35s linear infinite;
  will-change: transform;
}

.coverage-marquee:hover .coverage-track {
  animation-play-state: paused;
}

/* ── Location pills ── */
.coverage-pill {
  display: inline-block;
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 9999px;
  background: #000000;
  color: #ffffff;
  font-family: 'Barlow', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Seamless left-to-right loop ── */
@keyframes coverage-scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-track {
    animation: none;
  }
}