.coverage-map-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #061829;
}

.coverage-map-bg,
.coverage-map-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.coverage-map-bg {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.coverage-map-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 19, 33, .62) 0%, rgba(4, 19, 33, .18) 48%, rgba(4, 19, 33, .04) 100%),
    linear-gradient(180deg, rgba(4, 19, 33, .08), rgba(4, 19, 33, .3));
}

.coverage-map-layout {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
}

.coverage-map-card {
  position: relative;
  z-index: 3;
  width: min(470px, 42%);
  padding: clamp(32px, 4vw, 52px);
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 30px 80px rgba(0, 12, 26, .34);
  backdrop-filter: blur(14px);
}

.coverage-map-card h2 {
  margin: 16px 0 22px;
  color: var(--primary-dark);
  font-size: 3.15rem;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.coverage-map-card > p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.coverage-current {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(var(--primary-rgb), .12);
}

.coverage-current > i {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border: 3px solid rgba(var(--action-rgb), .24);
  border-radius: 50%;
  background: var(--action);
  box-shadow: 0 0 0 6px rgba(var(--action-rgb), .08);
}

.coverage-current small,
.coverage-current strong,
.coverage-current span {
  display: block;
}

.coverage-current small {
  color: var(--action-dark);
  font-size: .65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-current strong {
  margin-top: 4px;
  color: var(--primary-dark);
  font-size: 1.06rem;
}

.coverage-current span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.coverage-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.coverage-map-points {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 38%;
}

.coverage-pin {
  position: absolute;
  top: var(--pin-y);
  left: var(--pin-x);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px 7px 7px;
  color: rgba(255, 255, 255, .78);
  border: 0;
  border-radius: 999px;
  background: rgba(4, 24, 40, .52);
  box-shadow: 0 8px 22px rgba(0, 8, 20, .2);
  backdrop-filter: blur(9px);
  transform: translate(-50%, -50%);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.coverage-pin > i {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: #36c4e4;
  box-shadow: 0 0 14px rgba(54, 196, 228, .9);
}

.coverage-pin > i::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(54, 196, 228, .58);
  border-radius: 50%;
  animation: coverage-pulse 2.4s ease-out infinite;
}

.coverage-pin span {
  font-size: .7rem;
  font-weight: 850;
}

.coverage-pin:is(:hover, :focus-visible),
.coverage-pin.is-active {
  color: #fff;
  background: rgba(7, 35, 52, .9);
  outline: 0;
  transform: translate(-50%, -50%) scale(1.04);
}

.coverage-pin.is-active > i {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(54, 196, 228, .3), 0 0 20px rgba(54, 196, 228, 1);
}

@keyframes coverage-pulse {
  0% { opacity: .9; transform: scale(.55); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

@media (max-width: 991.98px) {
  .coverage-map-section,
  .coverage-map-layout {
    min-height: 650px;
  }

  .coverage-map-layout {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .coverage-map-card {
    width: min(430px, 52%);
  }

  .coverage-map-card h2 {
    font-size: 2.65rem;
  }

  .coverage-map-points {
    left: 43%;
  }
}

@media (max-width: 767.98px) {
  .coverage-map-section {
    min-height: auto;
  }

  .coverage-map-bg {
    object-position: 62% center;
  }

  .coverage-map-shade {
    background: linear-gradient(180deg, rgba(4, 19, 33, .24), rgba(4, 19, 33, .62));
  }

  .coverage-map-layout {
    min-height: auto;
    display: grid;
    grid-template-rows: auto 340px;
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .coverage-map-card {
    width: 100%;
    padding: 30px 24px;
    border-radius: 13px;
  }

  .coverage-map-card h2 {
    font-size: 2.45rem;
  }

  .coverage-map-points {
    position: relative;
    inset: auto;
    min-height: 340px;
  }

  .coverage-pin span {
    font-size: .66rem;
  }
}

@media (max-width: 575.98px) {
  .coverage-card-actions .btn {
    width: 100%;
  }

  .coverage-pin {
    padding-right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-pin,
  .coverage-pin > i::after {
    animation: none;
    transition: none;
  }
}
