/* Incident situational map — bashkortrights.com
 * Rendered by [incident_map] (ops/40-incident-map.php). Everything is scoped
 * to .imap (the map app) or .incident-single (the single-incident page).
 * Tokens are --im-* to stay clear of Kadence's own custom properties.
 * The map panel keeps a light "paper" look in dark mode on purpose. */

.imap,
.incident-single {
  --im-surface: #ffffff;
  --im-panel: #ffffff;
  --im-panel-2: #f4f1e9;
  --im-ink: #1d1c18;
  --im-ink-2: #58544a;
  --im-ink-3: #8a8477;
  --im-line: #dbd5c7;
  --im-line-strong: #c5bdab;
  --im-accent: #1f5c8f;
  --im-accent-ink: #ffffff;
  --im-good: #2f7d5d;
  --im-shadow-1: 0 1px 2px rgba(28, 26, 20, 0.09);
  --im-shadow-2: 0 10px 34px rgba(28, 26, 20, 0.16), 0 2px 8px rgba(28, 26, 20, 0.08);

  --im-s1: #6c7076;
  --im-s2: #c5872c;
  --im-s3: #d8622a;
  --im-s4: #bf2f27;
  --im-s5: #7c1e19;

  /* constant — the map is a printed sheet in both themes */
  --im-map-paper: #f3f0e8;
  --im-map-paper-edge: #e7e1d3;
  --im-map-ink: #26241d;
  --im-map-line: #cec6b4;
}

@media (prefers-color-scheme: dark) {
  .imap,
  .incident-single {
    --im-surface: #14151a;
    --im-panel: #17181b;
    --im-panel-2: #1e2023;
    --im-ink: #ece9e1;
    --im-ink-2: #a8a294;
    --im-ink-3: #726c60;
    --im-line: #2b2c30;
    --im-line-strong: #3b3d42;
    --im-accent: #62a6db;
    --im-accent-ink: #0e0f10;
    --im-good: #59bd8f;
    --im-shadow-1: 0 1px 2px rgba(0, 0, 0, 0.45);
    --im-shadow-2: 0 14px 40px rgba(0, 0, 0, 0.6), 0 3px 10px rgba(0, 0, 0, 0.45);
    --im-s1: #8b9097;
    --im-s2: #dea248;
    --im-s3: #ee7940;
    --im-s4: #e2483f;
    --im-s5: #c74a42;
  }
}

.imap *,
.imap *::before,
.imap *::after {
  box-sizing: border-box;
}
.imap {
  position: relative;
  display: grid;
  grid-template-columns: clamp(300px, 31%, 380px) 1fr;
  height: clamp(560px, 82vh, 900px);
  margin: 1.5rem 0;
  border: 1px solid var(--im-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--im-surface);
  color: var(--im-ink);
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: var(--im-shadow-1);
}
.imap h1,
.imap h2,
.imap h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  font-weight: 600;
  text-wrap: balance;
}
.imap button {
  font: inherit;
  color: inherit;
  margin: 0;
  /* the theme puts asymmetric padding on every <button>; icon buttons below
     re-add their own where needed. Without this the +/-/x glyphs sit low-right. */
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.imap :focus-visible {
  outline: 2px solid var(--im-accent);
  outline-offset: 2px;
  border-radius: 3px;
}
.imap .mono,
.incident-single .mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-variant-numeric: tabular-nums;
}

/* ---- rail ---- */
.imap-rail {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  background: var(--im-panel);
  border-right: 1px solid var(--im-line);
  display: flex;
  flex-direction: column;
}
.imap .rail-head {
  padding: 1rem 1.1rem 0.9rem;
  border-bottom: 1px solid var(--im-line);
}
.imap .kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--im-ink-3);
  margin: 0 0 0.45rem;
}
.imap .rail-meta {
  font-size: 12.5px;
  color: var(--im-ink-2);
  display: flex;
  gap: 0.3rem 0.8rem;
  flex-wrap: wrap;
}
.imap .rail-meta .dot-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--im-s4);
  margin-right: 0.35rem;
  vertical-align: middle;
}
.imap .block {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--im-line);
}
.imap .block-h {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--im-ink-3);
  margin: 0 0 0.65rem;
}
.imap .sev-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.imap .sev-chip {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.38rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s, border-color 0.12s;
}
.imap .sev-chip:hover {
  background: var(--im-panel-2);
}
.imap .sev-chip[aria-pressed="true"] {
  background: color-mix(in srgb, var(--c) 12%, var(--im-panel));
  border-color: color-mix(in srgb, var(--c) 45%, var(--im-line));
}
.imap .sev-chip > i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--c);
}
.imap .sev-chip > b {
  font-weight: 500;
  font-size: 13px;
}
.imap .sev-chip > em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  color: var(--im-ink-2);
  font-size: 13px;
}
.imap .sev-hint {
  margin: 0.55rem 0 0;
  font-size: 12px;
  color: var(--im-ink-3);
}
.imap .sev-hint button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--im-accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.imap .filters {
  border-bottom: 1px solid var(--im-line);
}
.imap .filters > summary {
  padding: 0.8rem 1.1rem;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--im-ink-3);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.imap .filters > summary::-webkit-details-marker {
  display: none;
}
.imap .filters > summary::after {
  content: "+";
  font-size: 15px;
  color: var(--im-ink-2);
}
.imap .filters[open] > summary::after {
  content: "\2212";
}
.imap .filter-body {
  padding: 0 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.imap .filter-grp-h {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--im-ink-3);
  margin: 0 0 0.4rem;
}
.imap .filter-grp label {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 12.5px;
  padding: 0.16rem 0;
  color: var(--im-ink-2);
  cursor: pointer;
}
.imap .filter-grp label .sw {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex: none;
  transform: translateY(1px);
}
.imap .filter-grp input {
  accent-color: var(--im-accent);
  margin: 0;
}

.imap .list-wrap {
  flex: 1;
  min-height: 0;
}
.imap .list-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.95rem 1.1rem 0.45rem;
}
.imap .list-head .block-h {
  margin: 0;
}
.imap .list-head .count {
  font-size: 12px;
  color: var(--im-ink-3);
  font-variant-numeric: tabular-nums;
}
.imap .list {
  list-style: none;
  margin: 0;
  padding: 0 0.55rem 1.1rem;
}
.imap .list .im-empty {
  padding: 1rem 0.6rem;
  color: var(--im-ink-3);
  font-size: 13px;
}
.imap .row {
  width: 100%;
  display: grid;
  grid-template-columns: 4px 1fr auto;
  gap: 0.7rem;
  align-items: start;
  padding: 0.6rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s;
}
.imap .row:hover,
.imap .row.is-hot {
  background: var(--im-panel-2);
}
.imap .row-sev {
  align-self: stretch;
  border-radius: 3px;
  background: var(--c);
  min-height: 34px;
}
.imap .row-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.imap .row-title {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--im-ink);
}
.imap .row-meta {
  display: block;
  font-size: 11.5px;
  color: var(--im-ink-3);
}
.imap .pill {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.15rem 0.42rem;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid;
  align-self: start;
}
.imap .pill.s-active {
  color: var(--im-s4);
  border-color: color-mix(in srgb, var(--im-s4) 40%, transparent);
  background: color-mix(in srgb, var(--im-s4) 12%, transparent);
}
.imap .pill.s-verified {
  color: var(--im-good);
  border-color: color-mix(in srgb, var(--im-good) 40%, transparent);
  background: color-mix(in srgb, var(--im-good) 12%, transparent);
}
.imap .pill.s-unverified {
  color: var(--im-ink-3);
  border-color: var(--im-line-strong);
  background: transparent;
}
.imap .pill.s-archived {
  color: var(--im-ink-3);
  border-color: transparent;
  background: color-mix(in srgb, var(--im-ink-3) 14%, transparent);
}
.imap .archive-toggle {
  margin: 0.2rem 0.6rem 1.1rem;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--im-ink-3);
}
.imap .archive-toggle a {
  color: var(--im-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- map ---- */
.imap-map {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--im-map-paper);
  background-image: radial-gradient(120% 120% at 50% 0%, var(--im-map-paper) 60%, var(--im-map-paper-edge) 100%);
}
.imap #bash-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  cursor: grab;
}
.imap #bash-map.dragging {
  cursor: grabbing;
}
.imap #bash-map.probing {
  cursor: crosshair;
}

/* Styles for bash-map.svg. These lived in a <style> inside the SVG; moved
   out here because an inline SVG carrying a <style> with a huge base64
   @font-face broke HTML parsing of everything after it on the page. The two
   embedded "Bashkortostan Map" fonts are dropped — system Cyrillic covers the
   Bashkir extended letters (ҡ ғ ҙ ҫ ә ө ү һ ң) well enough. */
.imap #bash-map .boundary {
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.imap #bash-map .road-trunk {
  fill: none;
  stroke: #777;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.imap #bash-map .road-primary {
  fill: none;
  stroke: #b7b7b7;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.imap #bash-map .map-label {
  font-family: "Noto Sans", "Segoe UI", "DejaVu Sans", system-ui, sans-serif;
  pointer-events: none;
}
.imap #bash-map .map-label text {
  fill: #111;
  stroke: #fff;
  stroke-width: 2.8px;
  stroke-linejoin: round;
  paint-order: stroke fill;
}
.imap #bash-map .settlement-marker {
  fill: #111;
  stroke: #fff;
  stroke-width: 1.2px;
}
.imap #bash-map .road-label text {
  fill: #666;
  stroke-width: 2.5px;
}

/* the source SVG's label sizes target a poster render; retarget for this box */
.imap #bash-map .settlement-label {
  font-size: 9px;
  font-weight: 400;
}
.imap #bash-map .tier-2 {
  font-size: 10px;
}
.imap #bash-map .city-label {
  font-size: 12.5px;
  font-weight: 700;
}
.imap #bash-map .capital-label {
  font-size: 17px;
  font-weight: 700;
}
.imap #bash-map .road-label {
  font-size: 8.5px;
  font-weight: 400;
}

.imap .inc-link {
  fill: none;
  stroke: var(--c);
  stroke-width: 1.8;
  stroke-dasharray: 3 5;
  stroke-linecap: round;
  opacity: 0.8;
  vector-effect: non-scaling-stroke;
}
.imap .inc-node {
  cursor: pointer;
}
.imap .inc-node .dot {
  fill: var(--c);
  stroke: var(--im-map-paper);
  stroke-width: 2;
}
.imap .inc-node.secondary .dot {
  fill-opacity: 0.9;
}
/* unverified: hollow, dashed outline — reads as provisional */
.imap .inc-node.unverified .dot {
  fill: var(--im-map-paper);
  stroke: var(--c);
  stroke-width: 2.4;
  stroke-dasharray: 2.4 2.4;
}
/* archived (only visible with the archive toggle on): faded */
.imap .inc-node.archived {
  opacity: 0.45;
}
.imap .inc-node .ring {
  fill: none;
  stroke: var(--im-map-ink);
  stroke-width: 0;
}
.imap .inc-node.is-hot .ring,
.imap .inc-node:focus-visible .ring {
  stroke-width: 2;
}
.imap .inc-node .pulse {
  fill: var(--c);
  opacity: 0.4;
  animation: im-pulse 2.6s ease-out infinite;
}
@keyframes im-pulse {
  0% {
    r: 7px;
    opacity: 0.5;
  }
  70% {
    opacity: 0;
  }
  100% {
    r: 24px;
    opacity: 0;
  }
}
.imap #im-probe circle {
  fill: none;
  stroke: var(--im-accent);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.imap #im-probe line {
  stroke: var(--im-accent);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.imap .imap-legend,
.imap .imap-ctl button {
  background: #ffffff;
  color: var(--im-map-ink);
  border: 1px solid var(--im-map-line);
  box-shadow: var(--im-shadow-1);
}
.imap .imap-legend {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 246px;
  max-width: calc(100% - 28px);
  border-radius: 9px;
  padding: 0.65rem 0.8rem 0.7rem;
  font-size: 12px;
}
.imap .imap-legend .legend-h {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b6558;
  margin-bottom: 0.5rem;
}
.imap .imap-legend .ramp {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.imap .imap-legend .ramp li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--im-map-ink);
}
.imap .imap-legend .ramp i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--c);
  flex: none;
}
.imap .imap-legend .legend-note {
  color: #6b6558;
  line-height: 1.4;
  border-top: 1px solid var(--im-map-line);
  padding-top: 0.5rem;
}
.imap .imap-legend .probe-readout {
  margin-top: 0.5rem;
  border-top: 1px solid var(--im-map-line);
  padding-top: 0.5rem;
  font-size: 12.5px;
}
.imap .imap-legend .probe-readout b {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b6558;
  margin-bottom: 2px;
}
.imap .imap-ctl {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.imap .imap-ctl button {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.12s;
}
.imap .imap-ctl button:hover {
  background: #f1ede3;
}
.imap .imap-ctl button.on {
  background: var(--im-accent);
  color: var(--im-accent-ink);
  border-color: var(--im-accent);
}
.imap .scale-note {
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: 11px;
  color: #7a7466;
  background: color-mix(in srgb, #ffffff 78%, transparent);
  padding: 2px 7px;
  border-radius: 5px;
}

/* ---- drawer ---- */
.imap-drawer {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(430px, 100%);
  background: var(--im-panel);
  border-right: 1px solid var(--im-line-strong);
  box-shadow: var(--im-shadow-2);
  transform: translateX(-102%);
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 5;
}
.imap-drawer.open {
  transform: none;
}
.imap-drawer .drawer-head {
  padding: 0.95rem 1.05rem 0.85rem;
  border-bottom: 1px solid var(--im-line);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.imap-drawer .sev-badge {
  flex: none;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c);
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  margin-top: 3px;
}
.imap-drawer h2 {
  font-size: 1.15rem;
  line-height: 1.22;
  flex: 1;
  font-family: Georgia, "Times New Roman", serif;
}
.imap-drawer .drawer-close {
  flex: none;
  background: none;
  border: 1px solid var(--im-line);
  border-radius: 6px;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
  color: var(--im-ink-2);
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.imap-drawer .drawer-body {
  padding: 0.95rem 1.05rem 1.3rem;
  overflow-y: auto;
}
.imap-drawer .kv {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.3rem 0.7rem;
  font-size: 12.5px;
  margin: 0 0 1rem;
}
.imap-drawer .kv dt {
  color: var(--im-ink-3);
}
.imap-drawer .kv dd {
  margin: 0;
  color: var(--im-ink);
}
.imap-drawer h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--im-ink-3);
  margin: 1.05rem 0 0.4rem;
  font-family: inherit;
}
.imap-drawer .drawer-body p {
  margin: 0 0 0.6rem;
  font-size: 13.5px;
  line-height: 1.55;
}
.imap-drawer .pointlist {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12.5px;
}
.imap-drawer .pointlist li {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 0;
  border-bottom: 1px dashed var(--im-line);
}
.imap-drawer .pointlist .coord {
  color: var(--im-accent);
  white-space: nowrap;
}
.imap-drawer .pointlist .place {
  color: var(--im-ink-2);
}
.imap-drawer .srcs {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12.5px;
}
.imap-drawer .srcs li {
  padding: 0.15rem 0;
}
.imap-drawer .srcs a {
  color: var(--im-accent);
  word-break: break-word;
}
.imap-drawer .drawer-foot {
  margin-top: auto;
  padding: 0.85rem 1.05rem;
  border-top: 1px solid var(--im-line);
}
.imap-drawer .btn-page {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--im-accent);
  color: var(--im-accent-ink);
  border-radius: 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

/* ---- tooltip ---- */
.imap-tip {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  max-width: 240px;
  background: var(--im-map-ink);
  color: #f4f1e8;
  border-radius: 7px;
  padding: 0.45rem 0.6rem;
  font-size: 12px;
  line-height: 1.35;
  box-shadow: var(--im-shadow-2);
  opacity: 0;
  transition: opacity 0.1s;
}
.imap-tip.show {
  opacity: 1;
}
.imap-tip b {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.imap-tip span {
  color: #c9c3b2;
}

@media (prefers-reduced-motion: reduce) {
  .imap .inc-node .pulse {
    animation: none;
    opacity: 0.16;
  }
  .imap-drawer {
    transition: none;
  }
}

/* ---- narrow ---- */
@media (max-width: 860px) {
  .imap {
    grid-template-columns: 1fr;
    grid-template-rows: 62vh auto;
    height: auto;
  }
  .imap-rail {
    order: 2;
    border-right: 0;
    border-top: 1px solid var(--im-line);
    max-height: none;
  }
  .imap-map {
    order: 1;
  }
  .imap-drawer {
    inset: 0;
    width: 100%;
    border-right: 0;
  }
  .imap .imap-legend {
    width: 210px;
  }
}

/* =====================================================================
   SINGLE INCIDENT PAGE  (/monitoring/<slug>/) — prepended/appended to
   the_content by ops/40-incident-map.php
   ===================================================================== */
.incident-single {
  font-size: 15px;
}
.incident-single__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
}
.incident-single__back {
  color: var(--im-accent);
  text-decoration: none;
  font-size: 0.95rem;
}
.incident-single__back:hover {
  text-decoration: underline;
}
.incident-single__sev {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c);
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
}
.incident-single__pill {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--im-line-strong);
  color: var(--im-ink-2);
}
.incident-single__meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.35rem 1rem;
  margin: 0 0 1.4rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--im-line);
  border-radius: 10px;
  background: var(--im-panel-2);
  font-size: 0.9rem;
}
.incident-single__meta dt {
  color: var(--im-ink-3);
}
.incident-single__meta dd {
  margin: 0;
}
.incident-single__points {
  list-style: none;
  margin: 0.3rem 0 0;
  padding: 0;
}
.incident-single__points li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.6rem;
  padding: 0.2rem 0;
}
.incident-single__points .coord {
  font-family: "IBM Plex Mono", ui-monospace, Consolas, monospace;
  color: var(--im-accent);
}
.incident-single__section {
  margin: 1.6rem 0 0;
}
.incident-single__section > h2 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.incident-single__sources {
  list-style: none;
  margin: 0;
  padding: 0;
}
.incident-single__sources li {
  padding: 0.2rem 0;
}
.incident-single__map-link {
  display: inline-block;
  margin-top: 1.6rem;
  color: var(--im-accent);
}
