.cx-locator-map {
  --cxmap-water: #1f6f78;
  --cxmap-land: #cbb89a;
  --cxmap-lift: #e8927c;
  --cxmap-ink: #201d1a;
  --cxmap-label: #fbf5ea;
  --cxmap-route: #bcdce6;
  position: relative;
  margin: 2rem 0;
  color: var(--cxmap-ink);
}
.cx-locator-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cxmap-water);
  isolation: isolate;
}
.cx-locator-map__stage {
  position: absolute;
  inset: 0;
}
.cx-locator-map__stage .maplibregl-ctrl-attrib,
.cx-locator-map__stage .maplibregl-ctrl-logo,
.cx-locator-map__stage .maplibregl-control-container {
  display: none !important;
}
.cx-locator-map__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 2;
}
.cx-locator-map__labels.is-visible {
  opacity: 1;
}
.cx-locator-map__marker {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
}
.cx-locator-map__marker-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--cxmap-label);
  box-sizing: border-box;
  display: block;
}
.cx-locator-map__marker-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cxmap-label);
  transform: translate(-50%, -50%);
}
.cx-locator-map__marker--capital .cx-locator-map__marker-ring {
  width: 13px;
  height: 13px;
}
.cx-locator-map__marker-label {
  font: 600 0.68rem/1.1 var(--cxmap-map-font, inherit);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cxmap-label);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.cx-locator-map__marker-parent {
  display: block;
  font-weight: 500;
  font-size: 0.82em;
  letter-spacing: 0.08em;
  opacity: 0.82;
  margin-top: 0.15em;
}
.cx-locator-map__country-name {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  font: 700 1.05rem/1 var(--cxmap-map-font, inherit);
  text-transform: uppercase;
  letter-spacing: 0.55em;
  color: var(--cxmap-label);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.cx-locator-map__controls {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 3;
}
.cx-locator-map__controls button {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(20, 18, 16, 0.55);
  color: #fff;
  font: 600 1rem/1 system-ui, sans-serif;
  cursor: pointer;
}
.cx-locator-map__controls button:hover {
  background: rgba(20, 18, 16, 0.75);
}
.cx-locator-map__controls button[data-closer-btn] {
  width: auto;
  padding: 0 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cx-locator-map__inset {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 26%;
  max-width: 190px;
  min-width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  z-index: 3;
}
.cx-locator-map__inset-map {
  position: absolute;
  inset: 0;
}
.cx-locator-map__inset-map .maplibregl-control-container {
  display: none !important;
}
.cx-locator-map__inset-rect {
  position: absolute;
  left: 0;
  top: 0;
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.cx-locator-map__inset-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  text-align: center;
  font: 600 0.6rem/1 var(--cxmap-map-font, inherit);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.cx-locator-map figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
}
.cx-locator-map__title {
  font-weight: 600;
}
.cx-locator-map__attribution {
  opacity: 0.65;
}
@media (prefers-reduced-motion: reduce) {
  .cx-locator-map__labels {
    transition: none;
  }
}
