/* ── Interactive Map ──────────────────────────────────── */
.regional-map-wrap {
  max-width: 940px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.regional-map-box {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 24px 24px 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.regional-map-box svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Continent paths — applied via JS after SVG is injected */
.land-interactive {
  cursor: pointer;
  transition: fill .25s ease;
}
.land-interactive:hover {
  fill: #067891 !important;
}

/* Legend buttons below map */
.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.map-legend-btn {
  padding: 6px 14px;
  background: #e2e8f0;
  border: none;
  border-radius: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.map-legend-btn:hover {
  background: #067891;
  color: #fff;
}
.map-hint {
  text-align: center;
  font-family: 'Lato', Arial, sans-serif;
  font-size: .8rem;
  color: #94a3b8;
  margin-top: 8px;
}

/* ── Regional blocks ──────────────────────────────────── */
.regional-block {
  scroll-margin-top: 130px;
  margin-bottom: 56px;
}
