.macro-geo {
  background: var(--near-white);
  padding: 92px 0;
}
.macro-geo__title { margin: 14px 0 0; }
.macro-geo__lead {
  margin: 16px auto 0;
  max-width: 520px;
  color: var(--text-2);
}
.macro-geo__map {
  position: relative;
  margin-top: 48px;
  aspect-ratio: 2.1 / 1;
  border-radius: 20px;
  background: radial-gradient(circle at center, #EEF0F3 0, #F4F5F7 100%);
  overflow: hidden;
}
.macro-geo__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(#D8DCE2 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .6;
}
.macro-geo__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 7px;
}
.macro-geo__pin-dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
  animation: mc-pinPulse 2.8s ease-out infinite;
}
.macro-geo__pin-name {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .macro-geo { padding: 64px 0; }
}

/* На узких экранах абсолютная карта-плейсхолдер даёт наложение
   меток в кластерах. Ниже брейкпоинта переводим карту в
   раскладку чипов (flex-wrap) — читаемо и без overlap. */
@media (max-width: 575px) {
  .macro-geo__map {
    aspect-ratio: auto;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
  }
  .macro-geo__dots { display: none; }

  .macro-geo__pin {
    position: static;
    transform: none;
    padding: 8px 12px;
    border-radius: 999px;
    background: #EEF0F3;
    gap: 8px;
  }
  .macro-geo__pin-name {
    font-size: 12px;
    letter-spacing: .3px;
  }
}
