:root {
  --sage-dark: #4a6b52;
  --sage-mid: #7c9885;
  --sage-light: #aac1a7;
  --sage-pale: #dce8dd;
  --sage-bg: #f2f5f2;

  --gold: #d5a93c;
  --gold-light: #e8cc7a;
  --gold-pale: #f5ecd0;

  --slate: #57899c;
  --slate-light: #8ab0be;

  --terracotta: #c65528;
  --plum: #6a5983;

  --text-dark: #383731;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #c6d4c8;
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--sage-bg);
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-mid) 100%);
  color: white;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 12px;
}

.site-title {
  color: white;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.site-title:hover {
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: white;
  font-size: 0.9rem;
  opacity: 0.88;
  padding: 6px 14px;
  border-radius: 6px;
}

.site-nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.hero {
  padding: 40px 0 30px;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  margin: 30px 0 35px;
  border: 1px solid var(--border);
}

.hero.compact {
  margin-bottom: 24px;
  padding: 28px 24px 24px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--sage-mid);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  margin: 0;
  font-family: Georgia, serif;
  color: var(--sage-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: normal;
}

h2 {
  font-family: Georgia, serif;
  color: var(--sage-dark);
  font-weight: normal;
}

h3 {
  color: var(--text-dark);
}

.lede {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

.field-guide-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 24px;
}

.field-guide-nav--page {
  margin-bottom: 20px;
}

.field-guide-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--sage-dark);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.field-guide-nav__link:hover,
.field-guide-nav__link:focus-visible {
  text-decoration: none;
  border-color: var(--sage-mid);
  box-shadow: var(--shadow-md);
}

.field-guide-nav__link.is-active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

.tabernacle-home-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 40px;
}

.tabernacle-home-intro {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 24px;
}

.tabernacle-home-hero-image {
  margin-bottom: 24px;
}

.tabernacle-home-hero-image__frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.tabernacle-home-hero-image__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.tabernacle-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.tabernacle-home-column {
  display: grid;
  gap: 20px;
  align-content: start;
}

.tabernacle-home-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.tabernacle-home-card:hover,
.tabernacle-home-card:focus-visible {
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.tabernacle-home-card__image {
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}

.tabernacle-home-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.tabernacle-home-card__image--breastplate {
  padding: 16px;
}

.tabernacle-home-card__image--breastplate img {
  max-width: min(100%, 460px);
  margin: 0 auto;
}

.tabernacle-home-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tabernacle-home-card__eyebrow {
  margin: 0 0 8px;
  color: var(--sage-mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tabernacle-home-card__body h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.tabernacle-home-card__body p {
  margin: 0;
}

.tabernacle-home-card__subnote {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.tabernacle-home-card__cta {
  display: inline-flex;
  align-items: center;
  color: var(--sage-dark);
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .tabernacle-home-grid {
    grid-template-columns: 1fr;
  }
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 0 28px;
}

.hero-copy {
  text-align: left;
}

.hero-copy .lede {
  margin-left: 0;
  margin-right: 0;
}

.hero-text {
  color: var(--text-secondary);
  margin: 16px 0 0;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-button {
  display: inline-block;
  background: var(--white);
  color: var(--sage-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero-button.primary {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.hero-button:hover {
  text-decoration: none;
}

.hero-image-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.card,
.status-block,
.deep-dive,
.hotspot-card,
.content-column .prose,
.map-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card {
  padding: 22px;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.card a {
  display: inline-block;
  color: var(--sage-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
}

.status-block {
  padding: 24px;
  margin-bottom: 40px;
}

.status-block h2 {
  margin-top: 0;
}

.page-intro {
  margin-bottom: 24px;
}

.prose--intro {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px 28px;
}

.prose--intro > * {
  margin-top: 0;
  margin-bottom: 0;
}

.prose--intro > * + * {
  margin-top: 1rem;
}

.prose--intro p:first-child {
  margin-top: 0;
}

.prose--intro p:last-child {
  margin-bottom: 0;
}

.prose--intro .intro-callout {
  margin-bottom: 18px;
  padding: 6px 2px 2px;
}

.prose--intro .intro-callout__eyebrow {
  margin: 0 0 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.prose--intro .intro-callout__title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
  color: var(--sage-dark);
  text-wrap: balance;
}

.prose--intro .intro-toggle {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
  overflow: hidden;
}

.prose--intro .intro-toggle:first-child {
  margin-top: 0;
}

.prose--intro .intro-toggle summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.prose--intro .intro-toggle__label {
  font-weight: 900;
  letter-spacing: 0.01em;
}

.prose--intro .intro-toggle summary::-webkit-details-marker {
  display: none;
}

.prose--intro .intro-toggle summary::before {
  content: "▸";
  font-size: 14px;
  color: var(--terracotta);
  transform: translateY(-1px);
  transition: transform 160ms ease;
}

.prose--intro .intro-toggle[open] summary::before {
  transform: rotate(90deg) translateX(1px);
}

.prose--intro .intro-toggle summary:focus {
  outline: none;
}

.prose--intro .intro-toggle summary:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(96, 122, 102, 0.22);
  border-radius: calc(var(--radius) - 2px);
}

.prose--intro .intro-toggle__content {
  border-top: 1px solid var(--border);
  padding: 16px 18px 18px;
}

.prose--intro .intro-toggle__content > *,
.deep-dive-toggle__content > *,
.figure-supplement__deep-dive-scroll > *,
.hotspot-card__body > * {
  margin-top: 0;
  margin-bottom: 0;
}

.prose--intro .intro-toggle__content > * + *,
.deep-dive-toggle__content > * + *,
.figure-supplement__deep-dive-scroll > * + *,
.hotspot-card__body > * + * {
  margin-top: 1rem;
}

.prose--intro .intro-toggle__content p,
.deep-dive-toggle__content p,
.figure-supplement__deep-dive-scroll p,
.hotspot-card__body p {
  white-space: pre-line;
}

.prose--intro .intro-toggle__content > :first-child {
  margin-top: 0;
}

.prose--intro .intro-toggle__content > :last-child {
  margin-bottom: 0;
}

.prose--intro .intro-toggle__content p + p,
.deep-dive-toggle__content p + p,
.figure-supplement__deep-dive-scroll p + p,
.hotspot-card__body p + p {
  margin-top: 0.95rem;
}

.prose--intro .intro-toggle__content p + ul,
.prose--intro .intro-toggle__content p + ol,
.deep-dive-toggle__content p + ul,
.deep-dive-toggle__content p + ol,
.figure-supplement__deep-dive-scroll p + ul,
.figure-supplement__deep-dive-scroll p + ol,
.hotspot-card__body p + ul,
.hotspot-card__body p + ol {
  margin-top: 0.8rem;
}

.prose--intro .intro-toggle__content ul,
.prose--intro .intro-toggle__content ol,
.deep-dive-toggle__content ul,
.deep-dive-toggle__content ol,
.figure-supplement__deep-dive-scroll ul,
.figure-supplement__deep-dive-scroll ol,
.hotspot-card__body ul,
.hotspot-card__body ol {
  margin: 0.85rem 0 1rem 1.35rem;
  padding-left: 0.25rem;
}

.prose--intro .intro-toggle__content li + li,
.deep-dive-toggle__content li + li,
.figure-supplement__deep-dive-scroll li + li,
.hotspot-card__body li + li {
  margin-top: 0.45rem;
}

.prose--intro .intro-toggle__content h3,
.prose--intro .intro-toggle__content h4,
.deep-dive-toggle__content h3,
.deep-dive-toggle__content h4,
.figure-supplement__deep-dive-scroll h3,
.figure-supplement__deep-dive-scroll h4,
.hotspot-card__body h3,
.hotspot-card__body h4 {
  margin-top: 1.65rem;
  margin-bottom: 0.65rem;
}

.prose--intro .intro-toggle__content h3:first-child,
.prose--intro .intro-toggle__content h4:first-child,
.deep-dive-toggle__content h3:first-child,
.deep-dive-toggle__content h4:first-child,
.figure-supplement__deep-dive-scroll h3:first-child,
.figure-supplement__deep-dive-scroll h4:first-child,
.hotspot-card__body h3:first-child,
.hotspot-card__body h4:first-child {
  margin-top: 0;
}

.prose--intro .intro-toggle__content h3 + p,
.prose--intro .intro-toggle__content h4 + p,
.deep-dive-toggle__content h3 + p,
.deep-dive-toggle__content h4 + p,
.figure-supplement__deep-dive-scroll h3 + p,
.figure-supplement__deep-dive-scroll h4 + p,
.hotspot-card__body h3 + p,
.hotspot-card__body h4 + p {
  margin-top: 0.75rem;
}

.prose--intro .intro-toggle__content p + h3,
.prose--intro .intro-toggle__content p + h4,
.deep-dive-toggle__content p + h3,
.deep-dive-toggle__content p + h4,
.figure-supplement__deep-dive-scroll p + h3,
.figure-supplement__deep-dive-scroll p + h4,
.hotspot-card__body p + h3,
.hotspot-card__body p + h4,
.prose--intro .intro-toggle__content ul + h3,
.prose--intro .intro-toggle__content ul + h4,
.deep-dive-toggle__content ul + h3,
.deep-dive-toggle__content ul + h4,
.figure-supplement__deep-dive-scroll ul + h3,
.figure-supplement__deep-dive-scroll ul + h4,
.hotspot-card__body ul + h3,
.hotspot-card__body ul + h4,
.prose--intro .intro-toggle__content ol + h3,
.prose--intro .intro-toggle__content ol + h4,
.deep-dive-toggle__content ol + h3,
.deep-dive-toggle__content ol + h4,
.figure-supplement__deep-dive-scroll ol + h3,
.figure-supplement__deep-dive-scroll ol + h4,
.hotspot-card__body ol + h3,
.hotspot-card__body ol + h4 {
  margin-top: 2rem;
}

.prose--intro h3,
.prose--intro h4 {
  margin-top: 1.65rem;
  margin-bottom: 0.65rem;
}

.prose--intro h3:first-child,
.prose--intro h4:first-child {
  margin-top: 0;
}

.prose--intro h3 + p,
.prose--intro h4 + p {
  margin-top: 0.75rem;
}

.prose--intro .intro-toggle__content table,
.deep-dive-toggle__content table,
.figure-supplement__deep-dive-scroll table,
.hotspot-card__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(198, 212, 200, 0.92);
}

.prose--intro .intro-toggle__content th,
.prose--intro .intro-toggle__content td,
.deep-dive-toggle__content th,
.deep-dive-toggle__content td,
.figure-supplement__deep-dive-scroll th,
.figure-supplement__deep-dive-scroll td,
.hotspot-card__body th,
.hotspot-card__body td {
  padding: 10px 12px;
  vertical-align: top;
  border: 1px solid rgba(198, 212, 200, 0.88);
}

.prose--intro .intro-toggle__content th,
.deep-dive-toggle__content th,
.figure-supplement__deep-dive-scroll th,
.hotspot-card__body th {
  background: rgba(245, 236, 208, 0.85);
  color: var(--sage-dark);
  text-align: left;
  font-weight: 700;
}

.interactive-shell {
  margin-bottom: 40px;
}

.interactive-shell--map {
  display: grid;
  gap: 20px;
}

.interactive-shell--figure {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.interactive-visual-area {
  display: grid;
  justify-items: center;
  width: 100%;
  min-width: 0;
}

.interactive-shell--figure .interactive-visual-area {
  gap: 16px;
  width: 100%;
}

.interactive-shell--figure > .figure-supplement {
  grid-column: 1 / -1;
  max-width: 1200px;
  margin: 4px auto 0;
}

.map-frame--map {
  width: min(100%, 1120px);
}

.map-frame--figure {
  width: min(100%, 760px);
}

.selection-panel {
  background: transparent;
  min-width: 0;
}

.selection-panel--map {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.selection-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(245, 236, 208, 0.85) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: var(--shadow-sm);
}

.selection-ribbon__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.selection-ribbon__group-title {
  margin: 0 2px 0 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.selection-ribbon__tab {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(74, 107, 82, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--sage-dark);
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.selection-ribbon__tab:hover,
.selection-ribbon__tab:focus-visible {
  background: rgba(213, 169, 60, 0.14);
  border-color: rgba(213, 169, 60, 0.52);
  outline: none;
}

.selection-ribbon__tab.is-active {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-mid) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(74, 107, 82, 0.22);
  transform: translateY(-1px);
}

.selection-ribbon__title {
  display: block;
  white-space: nowrap;
}

.interactive-shell--figure .interactive-visual-area {
  position: sticky;
  top: 88px;
  align-self: start;
}

.interactive-shell--figure.has-active-figure-supplement .interactive-visual-area {
  position: static;
}

.figure-toolbar {
  width: min(100%, 760px);
  display: grid;
  gap: 12px;
}

.figure-state-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.figure-state-toggle__button {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(74, 107, 82, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--sage-dark);
  padding: 10px 16px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.figure-state-toggle__button:hover,
.figure-state-toggle__button:focus-visible {
  border-color: rgba(213, 169, 60, 0.52);
  background: rgba(213, 169, 60, 0.12);
  outline: none;
}

.figure-state-toggle__button.is-active {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-mid) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(74, 107, 82, 0.22);
}

.figure-state-toggle__button:disabled {
  cursor: default;
  opacity: 0.55;
}

.figure-intro-snippet {
  padding: 14px 16px;
  border: 1px solid rgba(198, 212, 200, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 236, 208, 0.84) 100%);
  box-shadow: var(--shadow-sm);
}

.figure-intro-snippet__title {
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-mid);
}

.figure-intro-snippet p:last-child {
  margin-bottom: 0;
}

.figure-supplement {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(198, 212, 200, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.figure-supplement[hidden] {
  display: none !important;
}

.figure-supplement__header {
  display: grid;
  gap: 6px;
}

.figure-supplement__content-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.figure-supplement__content-tab {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(74, 107, 82, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sage-dark);
  padding: 8px 14px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.figure-supplement__content-tab:hover,
.figure-supplement__content-tab:focus-visible {
  border-color: rgba(213, 169, 60, 0.52);
  background: rgba(213, 169, 60, 0.12);
  outline: none;
}

.figure-supplement__content-tab.is-active {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-mid) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(74, 107, 82, 0.22);
}

.figure-supplement__content-pane {
  display: none;
  gap: 14px;
  min-width: 0;
}

.figure-supplement__content-pane.is-active {
  display: grid;
}

.figure-supplement__research-layout {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.figure-supplement__research-figure-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(198, 212, 200, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.figure-supplement__research-figure-card .hotspot-card__image-button {
  justify-self: center;
}

.figure-supplement__research-figure-card .hotspot-card__image-button img {
  display: block;
  width: min(100%, 560px);
  max-width: 100%;
  height: auto;
  max-height: none;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(56, 55, 49, 0.12);
}

.figure-supplement__research-content {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.figure-supplement__title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-mid);
}

.figure-supplement__summary {
  margin: 0;
  color: var(--text-secondary);
}

.figure-supplement__image {
  display: grid;
  place-items: center;
}

.figure-supplement__image img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(56, 55, 49, 0.12);
}

.figure-supplement__deep-dive {
  margin-top: 0;
}

.figure-supplement__deep-dive-scroll {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;
}

.figure-supplement__deep-dive-scroll h3,
.figure-supplement__deep-dive-scroll h4 {
  margin-top: 1.4rem;
  margin-bottom: 0.55rem;
}

.figure-supplement__deep-dive-scroll h3:first-child,
.figure-supplement__deep-dive-scroll h4:first-child {
  margin-top: 0;
}

.figure-supplement__research-table {
  margin-top: 0;
}

.figure-supplement__table-wrap {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  border: 1px solid rgba(198, 212, 200, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
}

.figure-supplement__table-wrap table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.figure-supplement__table-wrap th,
.figure-supplement__table-wrap td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(198, 212, 200, 0.7);
  vertical-align: top;
  text-align: left;
}

.figure-supplement__table-wrap th {
  background: linear-gradient(180deg, rgba(245, 236, 208, 0.82) 0%, rgba(255, 255, 255, 0.98) 100%);
  color: var(--sage-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.figure-supplement__table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.figure-supplement__gallery-slot {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px dashed rgba(122, 155, 126, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 236, 208, 0.52) 100%);
}

.figure-supplement__gallery-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.figure-supplement__gallery-note {
  margin: 0;
  color: var(--text-secondary);
}

.figure-supplement__gallery-placeholders {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.figure-supplement__gallery-pill {
  padding: 9px 12px;
  border: 1px solid rgba(74, 107, 82, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sage-dark);
  font-size: 0.86rem;
  line-height: 1.35;
}


.interactive-shell--figure .selection-ribbon {
  display: grid;
  gap: 14px;
}

.selected-cards {
  position: relative;
  min-width: 0;
}

.hotspot-card--interactive {
  display: none;
  padding: 22px 24px;
  min-width: 0;
  overflow-x: hidden;
}

.hotspot-card--interactive.is-active {
  display: block;
}

.hotspot-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 190px);
  gap: 14px;
  align-items: start;
}

.hotspot-card__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-mid);
}

.hotspot-card__header h3 {
  margin: 0 0 6px;
}

.hotspot-card__image {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 4px;
  gap: 10px;
}

.hotspot-card__image-variants {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hotspot-card__image-variant-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(198, 212, 200, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.hotspot-card__image-variant-tab {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(74, 107, 82, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--sage-dark);
  padding: 8px 14px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.hotspot-card__image-variant-tab:hover,
.hotspot-card__image-variant-tab:focus-visible {
  border-color: rgba(213, 169, 60, 0.52);
  background: rgba(213, 169, 60, 0.12);
  outline: none;
}

.hotspot-card__image-variant-tab.is-active {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-mid) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(74, 107, 82, 0.22);
}

.hotspot-card__image-button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  display: grid;
  place-items: center;
}

.hotspot-card__image img {
  max-width: 100%;
  max-height: 140px;
  display: block;
}

.hotspot-card__image-button:focus-visible {
  outline: 2px solid rgba(74, 107, 82, 0.5);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(24, 29, 27, 0.76);
  cursor: zoom-out;
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  padding: 54px 18px 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(198, 212, 200, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-lightbox__close {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(74, 107, 82, 0.2);
  border-radius: 999px;
  background: var(--white);
  color: var(--sage-dark);
  padding: 7px 12px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.image-lightbox__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  margin: 0 auto;
}

.meta-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin: 6px 0 0;
  font-size: 0.94rem;
}

.meta-label {
  color: var(--text-muted);
  font-weight: 600;
}

.blb-popup {
  position: absolute;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(122, 155, 126, 0.3);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 12px;
  max-width: 380px;
  min-width: 200px;
  font-size: 0.88em;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s;
}

.blb-popup.visible {
  opacity: 1;
  pointer-events: auto;
}

.blb-popup .bp-title {
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 6px;
}

.blb-popup .bp-original {
  font-size: 1.25em;
  margin-bottom: 4px;
}

.blb-popup .bp-hebrew {
  font-family: "SBL Hebrew", "Ezra SIL", "Times New Roman", serif;
  direction: rtl;
}

.blb-popup .bp-greek {
  font-family: "SBL Greek", "Times New Roman", serif;
}

.blb-popup .bp-strongs {
  color: #888;
  font-size: 0.85em;
  margin-left: 6px;
}

.blb-popup .bp-body {
  color: #222;
}

.blb-popup .bp-link {
  margin-top: 8px;
  font-size: 0.82em;
}

.blb-popup .bp-link a {
  color: var(--sage-dark);
  text-decoration: underline;
  pointer-events: auto;
}

.scripture-ref {
  color: var(--sage-dark);
  cursor: help;
  border-bottom: 1px dotted var(--sage-dark);
  text-decoration: none;
}

.scripture-ref:hover,
.scripture-ref:focus-visible {
  background-color: rgba(74, 107, 82, 0.1);
  outline: none;
}

.term-ref {
  color: var(--sage-dark);
  cursor: help;
  text-decoration: none;
}

.term-ref--button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  text-align: left;
}

.term-ref em {
  border-bottom: 1px dotted var(--sage-dark);
}

.term-ref:hover,
.term-ref:focus-visible {
  background-color: rgba(74, 107, 82, 0.1);
  outline: none;
}

.meta-value {
  color: var(--text-secondary);
}

.meta-row--sources {
  align-items: start;
}

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-pill {
  position: relative;
  display: inline-flex;
  max-width: 100%;
}

.source-pill__trigger {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  border: 1px solid rgba(74, 107, 82, 0.16);
  border-radius: 999px;
  background: rgba(250, 246, 235, 0.88);
  color: var(--sage-dark);
  padding: 6px 10px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease, color 140ms ease;
}

.source-pill__trigger:hover,
.source-pill__trigger:focus-visible,
.source-pill:focus-within .source-pill__trigger {
  border-color: rgba(74, 107, 82, 0.34);
  background: rgba(255, 255, 255, 0.98);
  color: var(--forest);
  box-shadow: 0 10px 18px rgba(41, 58, 46, 0.1);
  outline: none;
}

.source-pill[data-source-kind="scripture"] .source-pill__trigger {
  background: rgba(244, 235, 206, 0.9);
}

.source-pill[data-source-kind="term"] .source-pill__trigger {
  background: rgba(230, 239, 233, 0.92);
}

.source-pill[data-source-kind="jewish-tradition"] .source-pill__trigger,
.source-pill[data-source-kind="interpretive-tradition"] .source-pill__trigger {
  background: rgba(240, 232, 245, 0.92);
}

.hotspot-card__body {
  margin-top: 16px;
  color: var(--text-primary);
}

.hotspot-card__body > :first-child {
  margin-top: 0;
}

.hotspot-card__body > :last-child {
  margin-bottom: 0;
}

.hotspot-videos {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(198, 212, 200, 0.8);
}

.hotspot-videos h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--sage-dark);
}

.hotspot-videos__grid {
  display: grid;
  gap: 14px;
}

.hotspot-videos--figure-panel {
  width: min(100%, 760px);
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(198, 212, 200, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.hotspot-videos__set {
  display: none;
}

.hotspot-videos__set.is-active {
  display: block;
}

.hotspot-video__title {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hotspot-video__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(74, 107, 82, 0.08);
  box-shadow: var(--shadow-sm);
}

.hotspot-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.deep-dive-toggle {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
  overflow: hidden;
}

.deep-dive-toggle summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--sage-dark);
}

.deep-dive-toggle summary::-webkit-details-marker {
  display: none;
}

.deep-dive-toggle__content {
  border-top: 1px solid var(--border);
  padding: 16px;
}

.deep-dive-toggle__content > :first-child {
  margin-top: 0;
}

.deep-dive-toggle__content > :last-child {
  margin-bottom: 0;
}

.hotspot-gallery {
  margin-top: 18px;
  padding-top: 16px;
  min-width: 0;
  border-top: 1px solid rgba(198, 212, 200, 0.8);
}

.hotspot-gallery h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--sage-dark);
}

.hotspot-gallery__track {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.hotspot-gallery__item {
  margin: 0;
  display: grid;
  gap: 10px;
  flex: 0 0 min(300px, 78vw);
  min-width: 240px;
  max-width: 300px;
  scroll-snap-align: start;
}

.hotspot-gallery__image-button {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: 1px solid rgba(198, 212, 200, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: zoom-in;
}

.hotspot-gallery__image-button img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hotspot-gallery__image-button:focus-visible {
  outline: 2px solid rgba(74, 107, 82, 0.5);
  outline-offset: 4px;
}

.hotspot-gallery__caption-body p,
.hotspot-gallery__caption p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.55;
}

.hotspot-gallery__credit {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.hotspot-gallery__credit a {
  color: var(--sage-dark);
  text-decoration: underline;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.content-column .prose {
  padding: 24px;
}

.content-column .prose p:first-child {
  margin-top: 0;
}

.content-column .prose p:last-child {
  margin-bottom: 0;
}

.deep-dive {
  margin-top: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
  border-left: 4px solid var(--gold);
}

.deep-dive h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.map-frame {
  position: relative;
  overflow: hidden;
}

.map-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 4px rgba(213, 169, 60, 0.22);
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  z-index: 3;
}

.hotspot[data-hotspot-kind="icon"] {
  width: 96px;
  height: 96px;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none;
  display: grid;
  place-items: center;
  overflow: visible;
  z-index: 2;
}

.hotspot[data-hotspot-kind="icon"] img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
  transition: transform 140ms ease, filter 140ms ease;
}

.hotspot[data-hotspot-button="brazen-altar"] img {
  transform: scale(1.25);
}

.hotspot[data-hotspot-button="menorah"] {
  width: 64px;
  height: 64px;
  position: absolute;
}

.hotspot[data-hotspot-button="menorah"] img {
  position: absolute;
  left: 50%;
  top: calc(50% - 7px);
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
}

.hotspot[data-hotspot-button="table-showbread"] {
  width: 56px;
  height: 44px;
}

.hotspot[data-hotspot-button="table-showbread"] img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76.8px;
  height: 76.8px;
  transform: translate(-50%, -50%);
}

.hotspot[data-hotspot-button="incense-altar"] {
  width: 48px;
  height: 48px;
}

.hotspot[data-hotspot-button="incense-altar"] img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%) scale(0.64);
}

.hotspot[data-hotspot-button="incense-altar"] img,
.hotspot[data-hotspot-button="ark"] img {
  transform: scale(0.8);
}

.hotspot[data-hotspot-button="ark"] {
  width: 77px;
  height: 77px;
}

.hotspot[data-hotspot-button="ark"] img {
  transform: scale(0.64);
}

.hotspot[data-hotspot-button="incense-altar"] img {
  transform: translate(-50%, -50%) scale(0.64);
}

.hotspot[data-hotspot-button="brazen-altar"] {
  transform: translate(calc(-50% - 56px), calc(-50% + 29px));
}

.hotspot[data-hotspot-button="laver"] {
  width: 77px;
  height: 77px;
  transform: translate(calc(-50% - 70px), calc(-50% + 60px));
}

.hotspot[data-hotspot-button="outer-gate"] {
  transform: translate(calc(-50% - 53px), calc(-50% + 14px));
}

.hotspot[data-hotspot-button="outer-court"] {
  transform: translate(calc(-50% + 20px), calc(-50% - 60px));
}

.hotspot[data-hotspot-button="table-showbread"] {
  transform: translate(calc(-50% - 10px), calc(-50% + 58px));
}

.hotspot[data-hotspot-button="tent-entrance"] {
  transform: translate(calc(-50% + 120px), calc(-50% + 51px));
}

.hotspot[data-hotspot-button="holy-place"] {
  transform: translate(calc(-50% + 105px), calc(-50% + 70px));
}

.hotspot[data-hotspot-button="menorah"] {
  transform: translate(calc(-50% + 50px), calc(-50% + 60px));
}

.hotspot[data-hotspot-button="incense-altar"] {
  transform: translate(calc(-50% + 53px), calc(-50% + 55px));
}

.hotspot[data-hotspot-button="inner-veil"] {
  transform: translate(calc(-50% + 99px), calc(-50% + 70px));
}

.hotspot[data-hotspot-button="most-holy-place"] {
  transform: translate(calc(-50% + 140px), calc(-50% + 70px));
}

.hotspot[data-hotspot-button="ark"] {
  transform: translate(calc(-50% + 135px), calc(-50% + 50px));
}

.page--figure .hotspot[data-hotspot-button="bells-pomegranates"],
.page--figure .hotspot[data-hotspot-button="white-linen"] {
  transform: translate(-50%, calc(-50% - 60px));
}

.page--figure .hotspot[data-hotspot-button="bells-pomegranates"] {
  transform: translate(-50%, calc(-50% - 65px));
}

.page--figure .hotspot[data-hotspot-button="blue-robe"] {
  transform: translate(-50%, calc(-50% + 50px));
}

.page--figure .hotspot[data-hotspot-button="shoulder-stones"] {
  transform: translate(calc(-50% - 60px), calc(-50% + 135px));
}

.page--figure .hotspot[data-hotspot-button="forehead-plate"] {
  transform: translate(-50%, calc(-50% + 200px));
}

.page--figure .hotspot[data-hotspot-button="turban"] {
  transform: translate(-50%, calc(-50% + 95px));
}

.page--figure .hotspot[data-hotspot-button="breastplate"] {
  transform: translate(-50%, calc(-50% + 80px));
}

.page--figure .hotspot[data-hotspot-button="ephod"] {
  transform: translate(-50%, calc(-50% + 92px));
}

.page--figure .hotspot[data-hotspot-button="sash"] {
  transform: translate(-50%, -50%);
}

.page--figure .hotspot[data-hotspot-button="white-linen"] {
  transform: translate(-50%, calc(-50% - 73px));
}

.hotspot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(74, 107, 82, 0.96);
  color: white;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.hotspot:hover span,
.hotspot:focus span,
.hotspot.is-active span {
  opacity: 1;
}

.hotspot[data-hotspot-button="menorah"] span {
  top: calc(100% + 6px);
  bottom: auto;
}

.hotspot.is-active {
  box-shadow: 0 0 0 6px rgba(213, 169, 60, 0.28);
}

.hotspot[data-hotspot-kind="icon"].is-active {
  box-shadow: none;
}

.hotspot[data-hotspot-kind="icon"].is-active img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
}

.hotspot[data-hotspot-button="table-showbread"].is-active img {
  transform: translate(-50%, -50%) scale(1.06);
}

.hotspot[data-hotspot-button="menorah"].is-active img {
  transform: translate(-50%, -50%) scale(1.06);
}

.hotspot[data-hotspot-button="ark"].is-active img {
  transform: scale(0.6784);
}

.hotspot[data-hotspot-button="incense-altar"].is-active img {
  transform: translate(-50%, -50%) scale(0.6784);
}

.hotspot-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.hotspot-list h2 {
  margin: 0 0 4px;
}

.hotspot-card {
  padding: 18px 20px;
  scroll-margin-top: 90px;
}

.hotspot-card h3 {
  margin: 0 0 6px;
}

.tooltip-copy {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-split,
  .interactive-shell--figure,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .prose--intro {
    padding: 22px 20px;
  }

  .hotspot-card__header {
    grid-template-columns: 1fr;
  }

  .hotspot-card__image {
    order: -1;
    min-height: 0;
  }

  .interactive-shell--figure .interactive-visual-area {
    position: static;
  }

  .figure-toolbar,
  .hotspot-videos--figure-panel {
    width: 100%;
  }

  .hotspot span {
    display: none;
  }
}
