/* Shared Leaflet chrome — ink + warm pins; Esri streets / hybrid basemaps via kbg-leaflet-map.js */

.leaflet-container {
  font-family: var(--sans);
  background: var(--stone);
}

.map-mock-pin {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--ink);
  border: 2px solid var(--cream);
  box-shadow: 0 2px 8px rgba(28, 28, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.map-mock-pin span {
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
}

.map-mock-pin.is-active {
  background: var(--warm-dark);
  transform: rotate(-45deg) scale(1.18);
  z-index: 1000 !important;
}

.map-mock-pin.is-active span {
  background: var(--cream);
}

.map-mock-popup .leaflet-popup-content-wrapper {
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(28, 28, 26, 0.18);
  border: 1px solid var(--stone);
}

.map-mock-popup .leaflet-popup-content {
  margin: 12px 14px;
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink);
}

.map-mock-popup strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.map-mock-popup a {
  color: var(--warm-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
