.leaflet-container {
  font-family: "Source Sans 3", system-ui, sans-serif;
}

.dot-marker {
  position: relative;
  width: var(--dot-size);
  height: var(--dot-size);
  border: 2px solid rgba(255, 246, 228, 0.96);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, rgba(255, 222, 184, 0.9) 0 14%, var(--dot-fill) 42%, var(--dot-fill-dark) 100%);
  box-shadow:
    0 0 0 2px var(--dot-ring),
    0 8px 18px rgba(70, 22, 18, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.dot-marker::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid var(--dot-ring);
  opacity: 0.72;
}

.dot-marker:hover {
  transform: scale(1.18);
  box-shadow:
    0 0 0 3px var(--dot-ring),
    0 10px 24px rgba(70, 22, 18, 0.28);
}

.place-tooltip {
  width: min(320px, calc(100vw - 2rem));
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  white-space: normal;
}

.place-tooltip::before {
  display: none;
}

.tooltip-card {
  padding: 0.8rem;
  border: 1px solid rgba(23, 33, 61, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.97);
  box-shadow: 0 18px 45px rgba(49, 36, 20, 0.22);
  overflow-wrap: anywhere;
}

.tooltip-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1;
}

.tooltip-card .tooltip-status {
  margin-top: 0.25rem;
  color: var(--red-dark, var(--red));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tooltip-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.35;
  white-space: normal;
}

.status-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.status-finalized {
  background: #2f8f5b;
}

.status-candidate {
  background: #d9852b;
}

.status-review {
  background: #d9b13b;
}

.status-unknown {
  background: #b4362c;
}
