/* ===============================================
   5 Bridges Options Study - Report Styles
   Imports the bp/ styles (shared look-and-feel)
   Adds status chips, placeholder boxes, TOC status.
   =============================================== */

@import url("../bp/style.css");

/* ===== Status chip (top of each section) =====
   Signals how ready the section is so readers know
   what to trust and what's coming.
   ================================================ */
.osr-status {
  display: inline-block;
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 3px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-left: 12px;
  vertical-align: middle;
  white-space: nowrap;
}

.osr-status.complete {
  color: #00A86B;
  border: 1px solid #00A86B;
  background: rgba(0, 168, 107, 0.08);
}

.osr-status.draft {
  color: #e0b34a;
  border: 1px solid #8a6a1f;
  background: rgba(224, 179, 74, 0.06);
}

.osr-status.pending {
  color: #7aa7ff;
  border: 1px solid #3f5b8f;
  background: rgba(122, 167, 255, 0.06);
}

.osr-status.to-write {
  color: #888;
  border: 1px solid #444;
  background: rgba(128, 128, 128, 0.06);
}

.osr-status.interim {
  color: #4ac8c5;
  border: 1px solid #2a6d6b;
  background: rgba(74, 200, 197, 0.08);
}

.osr-status.council {
  color: #e0b34a;
  border: 1px solid #8a6a1f;
  background: rgba(224, 179, 74, 0.08);
}

/* Stack chip under title on narrow screens */
@media (max-width: 599px) {
  .osr-status {
    display: block;
    margin-left: 0;
    margin-top: 12px;
    width: fit-content;
  }
}

/* ===== Placeholder / data-pending box =====
   Visible, honest callout for content not yet written.
   ============================================ */
.osr-placeholder {
  border: 1px dashed #3f5b8f;
  background: rgba(122, 167, 255, 0.04);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 28px 0;
  color: #b0b0b0;
}

.osr-placeholder-label {
  display: inline-block;
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #7aa7ff;
  margin-bottom: 8px;
}

.osr-placeholder p {
  margin-bottom: 8px;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.osr-placeholder p:last-child {
  margin-bottom: 0;
}

.osr-placeholder strong {
  color: #d0d0d0;
}

/* "To write" variant - for sections deferred until evidence lands */
.osr-placeholder.to-write {
  border-color: #444;
  background: rgba(128, 128, 128, 0.04);
}

.osr-placeholder.to-write .osr-placeholder-label {
  color: #888;
}

/* ===== Prominent numbered key-questions list ===== */
.osr-keyquestions {
  list-style: none;
  counter-reset: kq;
  margin: 28px 0;
  padding: 0;
}

.osr-keyquestions li {
  counter-increment: kq;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border: 1px solid #2a6a4d;
  background: rgba(0, 168, 107, 0.06);
  border-radius: 6px;
  padding: 16px 22px;
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 500;
  color: #e8e8e8;
}

.osr-keyquestions li::before {
  content: counter(kq);
  font-family: 'Contrail One', cursive;
  font-size: 1.7rem;
  line-height: 1;
  color: #00A86B;
  flex-shrink: 0;
  min-width: 1.3em;
}

/* ===== Prominent in-page jump navigation ===== */
.osr-jumpnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 1px solid #2a6a4d;
  background: rgba(0, 168, 107, 0.06);
  border-radius: 6px;
  padding: 14px 18px;
  margin: 24px 0 36px;
}

.osr-jumpnav-label {
  font-family: 'Contrail One', cursive;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00A86B;
  margin-right: 4px;
}

.osr-jumpnav a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #2a6a4d;
  border-radius: 4px;
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.osr-jumpnav a:hover {
  background: rgba(0, 168, 107, 0.15);
  border-color: #00A86B;
  color: #fff;
}

/* ===== Stand-alone criteria chips ===== */
.osr-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 32px;
}

.osr-criteria span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #2a6a4d;
  background: rgba(0, 168, 107, 0.06);
  border-radius: 4px;
  color: #00A86B;
  font-family: 'Contrail One', cursive;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Per-option spec strip (Timeline / Coverage / Character) ===== */
.osr-optionspec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 36px;
}

.osr-optionspec > div {
  border: 1px solid #2a6a4d;
  background: rgba(0, 168, 107, 0.06);
  border-radius: 6px;
  padding: 12px 16px;
}

.osr-optionspec .spec-label {
  display: block;
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00A86B;
  margin-bottom: 6px;
}

.osr-optionspec .spec-value {
  display: block;
  color: #e8e8e8;
  font-size: 0.95rem;
  line-height: 1.4;
}

.osr-optionspec.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .osr-optionspec,
  .osr-optionspec.cols-2 { grid-template-columns: 1fr; }
}

/* ===== Key finding callout ===== */
.osr-keyfinding {
  border-left: 4px solid #00A86B;
  background: rgba(0, 168, 107, 0.08);
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.osr-keyfinding .kf-label {
  display: block;
  font-family: 'Contrail One', cursive;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00A86B;
  margin-bottom: 8px;
}

.osr-keyfinding p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #e8e8e8;
}

/* ===== Horizontal finding bars (label left, value right) ===== */
.osr-findings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 32px;
}

.osr-findings > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 20px;
  border: 1px solid #2a6a4d;
  background: rgba(0, 168, 107, 0.06);
  border-radius: 6px;
  padding: 16px 22px;
}

.osr-findings .find-label {
  flex: 0 0 210px;
  font-family: 'Contrail One', cursive;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00A86B;
}

.osr-findings .find-value {
  flex: 1 1 340px;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #e8e8e8;
}

@media (max-width: 600px) {
  .osr-findings .find-label { flex-basis: 100%; }
}

/* ===== TOC status dots on landing page ===== */
.osr-toc-status {
  margin-left: auto;
  font-family: 'Contrail One', cursive;
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 2px 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.osr-toc-status.complete {
  color: #00A86B;
  border: 1px solid #2a6a4d;
}

.osr-toc-status.draft {
  color: #e0b34a;
  border: 1px solid #5a4a20;
}

.osr-toc-status.pending {
  color: #7aa7ff;
  border: 1px solid #3f5b8f;
}

.osr-toc-status.to-write {
  color: #888;
  border: 1px solid #444;
}

.osr-toc-status.interim,
.osr-toc-status.phase1 {
  color: #4ac8c5;
  border: 1px solid #2a6d6b;
}

.osr-toc-status.council {
  color: #e0b34a;
  border: 1px solid #5a4a20;
}

/* ===== Landing page hero adjustments ===== */
.osr-hero {
  text-align: center;
  padding: 48px 0 32px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 40px;
}

.osr-hero-eyebrow {
  display: inline-block;
  font-family: 'Contrail One', cursive;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #00A86B;
  border: 1px solid #00A86B;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.osr-hero h1 {
  font-family: 'Contrail One', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

@media (min-width: 600px) {
  .osr-hero h1 { font-size: 2.75rem; }
}

.osr-hero-lede {
  font-size: 1.05rem;
  color: #aaa;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Landing page meta strip (commissioned by, etc.) ===== */
.osr-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0 48px;
  padding: 24px;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  background: #0a0a0a;
}

@media (min-width: 600px) {
  .osr-meta {
    grid-template-columns: repeat(4, 1fr);
  }
}

.osr-meta-item-label {
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 4px;
}

.osr-meta-item-value {
  font-size: 0.95rem;
  color: #e0e0e0;
}

/* Align TOC list rows so status sits on the right */
.toc-list li a {
  justify-content: flex-start;
}

.toc-list li a .toc-label {
  flex: 1;
}

/* ===== Figure placeholder (image-gen / illustration pending) =====
   Visible callout for figures that will be replaced by an image.
   Pair with <figcaption> beneath for the caption.
   ============================================================= */
.osr-figure {
  border: 1px dashed #3f5b8f;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(122, 167, 255, 0.02),
      rgba(122, 167, 255, 0.02) 12px,
      rgba(122, 167, 255, 0.06) 12px,
      rgba(122, 167, 255, 0.06) 24px
    );
  border-radius: 4px;
  padding: 56px 24px;
  margin: 32px 0 8px;
  color: #888;
  text-align: center;
  font-family: 'Contrail One', cursive;
  font-size: 0.75rem;
  letter-spacing: 3px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.osr-figure-label {
  color: #7aa7ff;
  font-size: 0.7rem;
  letter-spacing: 3px;
}

.osr-figure-desc {
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0;
  font-style: italic;
  max-width: 480px;
  line-height: 1.5;
  margin-top: 4px;
}

.osr-figcaption {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  text-align: center;
  margin: 4px 0 32px;
  line-height: 1.5;
}

/* Live figure (when image is added — keeps caption styling consistent) */
.osr-figure.live {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 0;
  min-height: 0;
  display: block;
}

.osr-figure.live img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

/* Compact figure (precedent / inline placeholders) — narrower and shorter
   than the hero placeholder, sized for a photo of a venue rather than a
   full-width illustration. */
.osr-figure.compact {
  max-width: 520px;
  margin: 16px auto;
  padding: 32px 20px;
  min-height: 140px;
}

/* ===== Gallery (responsive grid of photo placeholders / images) =====
   Used on the Askew Road site overview in §7 Recommendations and any
   other section that wants a tiled set of images. Each tile is itself
   an .osr-figure (or .osr-figure.live when an image is added) inside
   the grid container; the grid overrides figure margin/max-width so
   tiles fit cleanly together.
   ================================================================ */
.osr-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
}

.osr-gallery .osr-figure {
  max-width: none;
  margin: 0;
  min-height: 180px;
  padding: 24px 16px;
}

.osr-gallery .osr-figure.live {
  padding: 0;
}

/* ===== Video grid (Heritage Footage page + signature embed in §1.1) =====
   Each video is a <figure class="osr-video"> wrapping a 16:9
   .osr-video-wrapper containing a YouTube iframe. Until populated,
   the wrapper carries class="osr-video-placeholder" instead.
   ======================================================================== */
.osr-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin: 24px 0 32px;
}

.osr-video {
  margin: 0;
}

.osr-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}

.osr-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.osr-video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px dashed #3f5b8f;
  border-radius: 4px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(122, 167, 255, 0.02),
      rgba(122, 167, 255, 0.02) 12px,
      rgba(122, 167, 255, 0.06) 12px,
      rgba(122, 167, 255, 0.06) 24px
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #888;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}

.osr-video-placeholder .osr-placeholder-label {
  color: #7aa7ff;
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.osr-video figcaption {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.5;
}

/* ===== Click-to-zoom lightbox =====
   Default: every <img> inside a `figure.osr-figure.live` is zoomable.
   Opt-in elsewhere via class="osr-zoomable". Behaviour wired in
   lightbox.js. Native <dialog> provides Escape-to-close.
   ================================= */
figure.osr-figure.live img,
img.osr-zoomable {
  cursor: zoom-in;
}

.osr-lightbox {
  border: none;
  padding: 0;
  margin: auto;
  background: transparent;
  max-width: 95vw;
  max-height: 95vh;
  overflow: visible;
}

.osr-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.osr-lightbox-inner {
  position: relative;
  display: inline-block;
}

.osr-lightbox-inner img {
  display: block;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  border-radius: 3px;
}

.osr-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 26px;
  line-height: 36px;
  padding: 0;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  font-family: 'Inter', sans-serif;
}

.osr-lightbox-close:hover {
  background: #00c878;
  border-color: #00c878;
}

/* ===== Chart container (Chart.js canvas wrapper) =====
   Constrain canvas height + add a subtle frame matching the card look.
   ===================================================== */
.osr-chart {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 20px 16px 12px;
  margin: 32px 0 8px;
  position: relative;
  height: 360px;
}

.osr-chart.tall { height: 480px; }
.osr-chart.short { height: 260px; }

.osr-chart canvas {
  max-height: 100% !important;
  width: 100% !important;
}

/* ===== Sub-page nav (engagement/* breadcrumb) ===== */
.osr-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 24px 0 32px;
  padding: 14px 18px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  font-size: 0.85rem;
}

.osr-subnav-label {
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #666;
  margin-right: 8px;
}

.osr-subnav a {
  color: #aaa;
}

.osr-subnav a:hover {
  color: #00A86B;
  text-decoration: none;
}

.osr-subnav .here {
  color: #00A86B;
  border-bottom: 1px solid #00A86B;
  padding-bottom: 1px;
}

/* ===== Quote attribution chip (voices.html) ===== */
.osr-quote-attribution {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #666;
}

/* Headline-stat callouts (used in overview page) */
.osr-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

@media (min-width: 600px) {
  .osr-stat-grid { grid-template-columns: repeat(4, 1fr); }
}

.osr-stat {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
}

.osr-stat-value {
  font-family: 'Contrail One', cursive;
  font-size: 2rem;
  color: #00A86B;
  line-height: 1.1;
  margin-bottom: 6px;
}

.osr-stat-label {
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.4;
}

/* ===== Policy stack (1.3 — three-column policy/evidence/response table) =====
   Used for Figure 1.3a in context-and-need. Styled <table> rather than
   image-gen so policy citations stay exact and selectable.
   ============================================================================ */
.osr-policy-stack {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 4px 16px 8px;
  margin: 32px 0 8px;
}

.osr-policy-stack table {
  width: 100%;
  border-collapse: collapse;
}

.osr-policy-stack caption {
  caption-side: top;
  text-align: left;
  color: #00A86B;
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 3px;
  padding: 14px 0 12px;
  border-bottom: 1px solid #1a1a1a;
}

.osr-policy-stack th,
.osr-policy-stack td {
  text-align: left;
  vertical-align: top;
  padding: 14px 14px;
  border-bottom: 1px solid #1a1a1a;
  line-height: 1.55;
  font-size: 0.92rem;
}

.osr-policy-stack th {
  font-family: 'Contrail One', cursive;
  font-size: 0.7rem;
  letter-spacing: 3px;
  font-weight: normal;
  color: #666;
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
}

.osr-policy-stack tr:last-child td {
  border-bottom: none;
}

.osr-policy-stack td.ps-policy { color: #fff; }
.osr-policy-stack td.ps-evidence { color: #aaa; }
.osr-policy-stack td.ps-response { color: #00A86B; }

.osr-policy-stack .ps-ref {
  display: block;
  font-family: 'Contrail One', cursive;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: #00A86B;
  margin-bottom: 6px;
}

/* Vertical rules between columns on wider screens */
@media (min-width: 720px) {
  .osr-policy-stack td + td,
  .osr-policy-stack th + th {
    border-left: 1px solid #1a1a1a;
  }
  .osr-policy-stack th.ps-policy,
  .osr-policy-stack td.ps-policy { width: 38%; }
  .osr-policy-stack th.ps-evidence,
  .osr-policy-stack td.ps-evidence { width: 32%; }
  .osr-policy-stack th.ps-response,
  .osr-policy-stack td.ps-response { width: 30%; }
}

/* Stack vertically on narrow screens — header row hidden, each row becomes a card */
@media (max-width: 600px) {
  .osr-policy-stack thead { display: none; }
  .osr-policy-stack,
  .osr-policy-stack table,
  .osr-policy-stack tbody,
  .osr-policy-stack tr,
  .osr-policy-stack td { display: block; width: 100%; }
  .osr-policy-stack td {
    padding: 6px 0;
    border-bottom: none;
  }
  .osr-policy-stack tr {
    padding: 16px 0;
    border-bottom: 1px solid #1a1a1a;
  }
  .osr-policy-stack tr:last-child { border-bottom: none; }
  .osr-policy-stack td.ps-evidence,
  .osr-policy-stack td.ps-response {
    padding-top: 8px;
  }
}

/* ===== Map component (Leaflet) =====
   Inline interactive maps using Leaflet + OpenStreetMap (Carto dark tiles).
   Container styled to match the dark editorial language of the rest of the
   report.
   ================================================ */
.osr-map {
  width: 100%;
  height: 480px;
  margin: 24px 0 8px;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  background: #0a0a0a;
  overflow: hidden;
}

.osr-map.tall { height: 600px; }
.osr-map.short { height: 360px; }

.osr-map .leaflet-control-attribution {
  background: rgba(0, 0, 0, 0.7);
  color: #888;
  font-size: 0.65rem;
  padding: 2px 6px;
}

.osr-map .leaflet-control-attribution a {
  color: #aaa;
}

/* Popup styling — match dark theme */
.osr-map .leaflet-popup-content-wrapper {
  background: #111;
  color: #d0d0d0;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.osr-map .leaflet-popup-tip {
  background: #111;
  border: 1px solid #2a2a2a;
}

.osr-map .leaflet-popup-content {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 12px 14px;
  min-width: 180px;
}

.osr-map .leaflet-popup-content strong {
  display: block;
  color: #fff;
  font-family: 'Contrail One', cursive;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.osr-map .leaflet-popup-content em {
  display: block;
  color: #888;
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

.osr-map .leaflet-popup-content a {
  color: #00A86B;
  text-decoration: none;
  border-bottom: 1px dotted rgba(0, 168, 107, 0.4);
}

.osr-map .leaflet-popup-content a:hover {
  border-bottom-color: #00A86B;
}

.osr-map .leaflet-popup-close-button {
  color: #888;
}

.osr-map .leaflet-popup-close-button:hover {
  color: #fff;
}

/* Map caption (small text below the map, like figure captions) */
.osr-map-caption {
  font-family: 'Contrail One', cursive;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: #888;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

/* Legend block, optional, sits inline below caption */
.osr-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: #aaa;
  margin: 8px 0 24px;
}

.osr-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.osr-map-legend .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.osr-map-legend .dot.primary { background: #00A86B; border-color: #1d6444; }
.osr-map-legend .dot.historic { background: #888; border-color: #444; }
.osr-map-legend .dot.tbc { background: #e0b34a; border-color: #8a6a1f; }
.osr-map-legend .dot.intl { background: #7aa7ff; border-color: #3f5b8f; }
