html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
#storymap-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* ── Ring label tooltips ── */
/* .ring-label {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.ring-label::before {
  display: none;
} */

/* ── Heading type scale ──────────────────────────────────────────────────────
   Anchored at h1 = 36px, each level steps down ~4–5px.
   line-height tightens as size decreases for better optical rhythm.
   margin-top scales with level to reinforce visual hierarchy.
   All headings inherit Bitter (serif) from font.bitter-raleway.css.
   ───────────────────────────────────────────────────────────────────────── */

.vco-storymap h1 {
  font-size: 36px;
  line-height: 1.1;
  margin-top: 24px;
  margin-bottom: 6px;
}
.vco-storymap h1 small {
  font-size: 23px;
  line-height: 1.2;
}

.vco-storymap h2 {
  font-size: 30px;
  line-height: 1.15;
  margin-top: 20px;
  margin-bottom: 5px;
}
.vco-storymap h2 small {
  font-size: 19px;
  line-height: 1.2;
}

.vco-storymap h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 4px;
}
.vco-storymap h3 small {
  font-size: 17px;
  line-height: 1.3;
}

.vco-storymap h4 {
  font-size: 22px;
  line-height: 1.25;
  margin-top: 14px;
  margin-bottom: 4px;
}
.vco-storymap h4 small {
  font-size: 14px;
  line-height: 1.3;
}

.vco-storymap h5 {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 12px;
  margin-bottom: 3px;
}
.vco-storymap h5 small {
  font-size: 13px;
  line-height: 1.3;
}

.vco-storymap h6 {
  font-size: 15px;
  line-height: 1.35;
  margin-top: 10px;
  margin-bottom: 3px;
  font-weight: 600;           /* slightly lighter than h1–h5 at this size */
  letter-spacing: 0.02em;    /* subtle optical spacing boost at label size */
}
.vco-storymap h6 small {
  font-size: 12px;
  line-height: 1.35;
}

/* ── Title slide hero heading (overrides h2 above) ── */
.vco-storymap h2.vco-headline-title {
  font-size: 36px;
  line-height: 1.05;
  margin-top: 0;
  margin-bottom: 8px;
}
.vco-storymap h2.vco-headline-title small {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.2;
}

/* ── Body text ── */
.vco-storymap p {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.55;          /* slightly more open than the 1.3 default */
}

.vco-storymap .vco-caption, .vco-storymap .vco-credit, .vco-storymap .vco-slidenav-next, .vco-storymap .vco-slidenav-previous {
    font-size: 13px;
    line-height: 15px;
}

.vco-caption {
  margin-top: 4px;
}

.vco-text, .vco-text p, .vco-storymap p, .vco-caption {
  color: #333;
}
.vco-text h3, .vco-menubar-button {
  color: #555;
}

/* Replace the default StoryMapJS map marker icon with assets/school.svg
   and suppress any generated content in ::after. */

.vco-map .vco-mapmarker::before,
.vco-map .vco-mapmarker-active::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("school.svg") center center / contain no-repeat;
  font-size: 0;
  text-shadow: none;
  position: relative;
  top: 38px;
  left: 8px;
}

.vco-map .vco-mapmarker::after,
.vco-map .vco-mapmarker-active::after {
  content: none;
  display: none;
}

.well-tooltip {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 11px;
  line-height: 1.5;
  padding: 6px 9px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  pointer-events: none;
  white-space: nowrap;
}
.well-tooltip .low-producing {
  display: inline-block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  color: #f90;
  background: rgba(255,153,0,0.1);
  border-radius: 3px;
  padding: 1px 4px;
}
.leaflet-tooltip.well-tooltip::before {
  display: none;
}