.interactive-map {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.interactive-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.interactive-map .interactive-map__tooltip {
  position: fixed;
  z-index: 20;
  display: none;
  max-width: min(260px, calc(100vw - 24px));
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.94);
  color: #fff;
  font: 600 14px/1.25 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  pointer-events: none;
  transform: translate(12px, 12px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.interactive-map .interactive-map__tooltip.is-visible {
  display: block;
}

.interactive-map .map-city-hit {
  cursor: pointer;
  fill: transparent;
  pointer-events: all;
}

.interactive-map .map-city-marker {
  cursor: pointer;
  transition: fill 160ms ease, stroke 160ms ease, stroke-width 160ms ease;
}

.interactive-map .map-city-marker.is-active {
  fill: #ffb000 !important;
  stroke: #ffffff;
  stroke-width: 6200;
}

.interactive-map .map-city-ring {
  fill: rgba(255, 119, 0, 0.20);
  stroke: #ff7700;
  stroke-width: 5200;
  pointer-events: none;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: map-city-pulse 1.1s ease-out infinite;
}

.interactive-map .map-city-ring.is-active {
  opacity: 1;
}

@keyframes map-city-pulse {
  0% {
    transform: scale(0.72);
    opacity: 0.95;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
