.locations-map-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(16px, 3vw, 24px);
  background: var(--bg-card);
  max-width: 960px;
  margin: 0 auto;
}
.locations-map-interactive { text-align: center; }
.locations-map-hint-top {
  margin: 0 auto 14px;
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.55;
}
.locations-map-frame {
  margin: 0 auto;
  padding: clamp(4px, 2vw, 12px);
}
.locations-map-svg-host {
  position: relative;
  width: 100%;
  min-height: 200px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.locations-map-fallback {
  margin: 0;
  padding: 24px 16px;
  font-size: 14px;
  color: var(--muted);
}
.locations-us-svg {
  width: 100%;
  height: auto;
  max-height: min(52vh, 480px);
  display: block;
  margin: 0 auto;
}
.locations-us-svg path[id] {
  fill: #2a313c;
  stroke: #0a0a0a;
  stroke-width: 1px;
  stroke-dasharray: 4 6;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  transition: fill 0.2s ease, stroke 0.2s ease;
  outline: none;
}
.locations-us-svg path.map-state--core {
  fill: #3a2428;
  stroke: rgba(196, 30, 40, 0.5);
}
.locations-us-svg path[id]:hover {
  fill: #4a2e35;
  stroke: var(--red-2);
  stroke-dasharray: none;
}
.locations-us-svg path.map-state--core:hover {
  fill: #5c1e28;
}
.locations-us-svg path[id].is-map-pin {
  fill: #6e1f2a !important;
  stroke: var(--red-2) !important;
  stroke-dasharray: none !important;
}
.locations-map-tip {
  margin: 18px auto 0;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  text-align: left;
  max-width: 560px;
}
.locations-map-tip[hidden] { display: none !important; }
.locations-map-tip-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.locations-map-tip-state {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
.locations-map-tip-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(196, 30, 40, 0.2);
  border: 1px solid rgba(196, 30, 40, 0.4);
  color: #ffc4c8;
}
.locations-map-tip-body {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.locations-map-tip-sub {
  margin: 0 0 14px !important;
  font-size: 12px !important;
  color: var(--muted-2) !important;
}
.locations-map-tip-cta {
  width: 100%;
  justify-content: center;
}
.locations-legend {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.locations-legend .lg-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.locations-legend .lg-swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid var(--line-2);
}
.locations-legend .lg-swatch.hq { background: var(--red); border-color: var(--red); }
.locations-legend .lg-swatch.active { background: #5c1e28; }
.locations-legend .lg-swatch.muted { background: #2a313c; }
