/* ================================================================
   BYR — POEMS Condition Page
   WPCode: CSS Snippet | Site Wide Header | Priority: 30
   ================================================================
   SOURCE OF TRUTH for the POEMS page. This file is the one
   enqueued by functions.php as 'byr-poems' (16-poems-condition.css).
   An earlier replacement attempt produced a parallel
   `poems-post.css` targeting a never-built HTML structure; that
   file and all references to it were erased 2026-04-23. Do not
   reintroduce replacement scaffolding — edit here.
   ================================================================
   Complete styling for the POEMS Syndrome condition page.
   Uses BYR design tokens from Foundations.
   Self-contained container background (dark + light mode).
   Glassmorphism, glow, depth, hover states, responsive SVGs.
   ================================================================ */


/* §1 — POEMS Page Tokens
   ============================================================ */

:root {
  /* POEMS accent palette — maps to inline HTML color attributes */
  --poems-cyan:    #00e5ff;
  --poems-coral:   #ff7e67;
  --poems-mint:    #66ffcc;
  --poems-gold:    #ffd740;
  --poems-purple:  #ea80fc;
  --poems-red:     #ff5252;

  /* Container backgrounds */
  --poems-container-bg: linear-gradient(
    175deg,
    rgba(2, 6, 23, 0.97) 0%,
    rgba(8, 12, 30, 0.98) 30%,
    rgba(5, 10, 26, 0.97) 60%,
    rgba(10, 14, 26, 0.96) 100%
  );
  --poems-container-border: rgba(0, 229, 255, 0.08);
  --poems-container-shadow:
    0 4px 30px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 229, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  /* Glassmorphism */
  --poems-glass-bg:      rgba(255, 255, 255, 0.03);
  --poems-glass-bg-hover: rgba(255, 255, 255, 0.06);
  --poems-glass-border:  rgba(255, 255, 255, 0.08);
  --poems-glass-border-hover: rgba(255, 255, 255, 0.15);

  /* Depth shadows */
  --poems-shadow-card:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 1px rgba(255, 255, 255, 0.06);
  --poems-shadow-card-hover:
    0 4px 8px rgba(0, 0, 0, 0.5),
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 1px rgba(255, 255, 255, 0.1);
  --poems-shadow-glow-cyan:
    0 0 20px rgba(0, 229, 255, 0.08),
    0 0 60px rgba(0, 229, 255, 0.04);
  --poems-shadow-glow-coral:
    0 0 20px rgba(255, 126, 103, 0.08),
    0 0 60px rgba(255, 126, 103, 0.04);

  /* Text colors for POEMS page — explicit, not inherited */
  --poems-text-primary: #F5F5F8;
  --poems-text-secondary: #C7C7D8;
  --poems-text-muted: #8A8A9A;
  --poems-text-heading: #FFFFFF;

  /* Motion */
  --poems-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --poems-dur: 0.35s;
}


/* §2 — Page Container — Self-Contained Background
   ============================================================
   This gives the POEMS page its own dark glassy container
   regardless of what the underlying page background is.
   ============================================================ */

.poems-page {
  margin: 2rem auto 4rem;
  padding: 3rem 0 4rem;
  position: relative;
  z-index: var(--z-content, 1);

  /* Force text colors inside this container */
  color: var(--poems-text-primary);
}

/* Override Astra's .entry-content[data-ast-blocks-layout] > * 1400px cap.
   Higher specificity (0,2,1) beats Astra's (0,1,1). */
.entry-content .poems-page {
  max-width: var(--two-col-max-width);
  margin-inline: auto;
}

/* All direct children above the glow layer */
.poems-page > * {
  position: relative;
  z-index: 1;
}


/* §3 — Force ALL Text Visibility Inside .poems-page
   ============================================================
   This overrides Elementor/theme color resets that make text
   invisible. Every text element gets an explicit color.
   ============================================================ */

.poems-page,
.poems-page p,
.poems-page li,
.poems-page span,
.poems-page div,
.poems-page td,
.poems-page figcaption {
  color: var(--poems-text-secondary);
}

.poems-page strong,
.poems-page b {
  color: var(--poems-text-heading);
  font-weight: 700;
}

.poems-page em,
.poems-page i {
  color: var(--poems-text-secondary);
  font-style: italic;
}

/* Preserve inline style colors (the colored text in tables, etc) */
.poems-page td[style*="color"],
.poems-page span[style*="color"],
.poems-page strong[style*="color"],
.poems-page div[style*="color"],
.poems-page li strong[style*="color"],
.poems-page p strong[style*="color"],
.poems-page h3[style*="color"],
.poems-page h4[style*="color"] {
  color: inherit !important;
}


/* §4 — Section Spacing & Headings
   ============================================================ */

.poems-section {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.poems-section h2 {
  font-size: var(--text-3xl);
  line-height: 1.2;
  font-weight: 800;
  color: var(--poems-cyan) !important;
  margin-bottom: 1.5rem;
  text-shadow:
    0 0 30px rgba(0, 229, 255, 0.25),
    0 0 80px rgba(0, 229, 255, 0.08);
  letter-spacing: -0.02em;
}

.poems-section h3 {
  font-size: var(--text-xl);
  line-height: 1.3;
  font-weight: 700;
  color: var(--poems-coral) !important;
  margin-bottom: 1rem;
  margin-top: 2rem;
  text-shadow: 0 0 20px rgba(255, 126, 103, 0.15);
}

.poems-section p {
  font-size: var(--text-md, 1rem);
  line-height: var(--leading-relaxed, 1.7);
  color: var(--poems-text-primary);
  margin-bottom: 1rem;
  max-width: 80ch;
}


/* §5 — Stat Cards — Glassmorphism + Depth + Hover Glow
   ============================================================ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: var(--poems-glass-bg);
  border: 1px solid var(--poems-glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--poems-shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform var(--poems-dur) var(--poems-ease),
    box-shadow var(--poems-dur) var(--poems-ease),
    border-color var(--poems-dur) var(--poems-ease),
    background var(--poems-dur) var(--poems-ease);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(0, 229, 255, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--poems-dur) var(--poems-ease);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--poems-shadow-card-hover), var(--poems-shadow-glow-cyan);
  border-color: rgba(0, 229, 255, 0.2);
  background: var(--poems-glass-bg-hover);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .stat-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--poems-cyan) !important;
  line-height: 1.1;
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.stat-card .stat-label {
  font-size: var(--text-md);
  color: var(--poems-text-secondary) !important;
  margin-top: 0.6rem;
  font-weight: 500;
}

.stat-card .stat-detail {
  font-size: var(--text-sm);
  color: var(--poems-text-muted) !important;
  margin-top: 0.3rem;
}


/* §6 — Accordions — FULL Restyle
   ============================================================
   Completely explicit colors on every element.
   Nothing left to chance or inheritance.
   ============================================================ */

.accordion-item {
  border: 1px solid var(--poems-glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(10, 14, 30, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--poems-shadow-card);
  transition:
    border-color var(--poems-dur) var(--poems-ease),
    box-shadow var(--poems-dur) var(--poems-ease);
}

.accordion-item:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--poems-shadow-card), 0 0 15px rgba(0, 229, 255, 0.05);
}

/* TRIGGER — the clickable bar */
.poems-page .accordion-trigger,
.poems-page .accordion-trigger span {
  color: var(--poems-text-primary) !important;
}

.accordion-trigger {
  width: 100%;
  background: none !important;
  border: none !important;
  color: var(--poems-text-primary) !important;
  padding: 1.25rem 1.5rem;
  font-size: var(--text-lg);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.25s ease;
  font-family: inherit;
  line-height: 1.4;
}

.accordion-trigger:hover {
  background: rgba(0, 229, 255, 0.04) !important;
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--poems-cyan);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.accordion-trigger .accordion-icon {
  font-size: var(--text-2xl);
  color: var(--poems-cyan) !important;
  flex-shrink: 0;
  width: 1.6rem;
  text-align: center;
  transition: transform 0.4s var(--poems-ease);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-trigger[aria-expanded="true"] {
  background: rgba(0, 229, 255, 0.03) !important;
}

/* PANEL — the collapsing container */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--poems-ease);
}

/* PANEL INNER — all content text forced visible */
.accordion-panel-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.poems-page .accordion-panel-inner,
.poems-page .accordion-panel-inner p,
.poems-page .accordion-panel-inner li,
.poems-page .accordion-panel-inner span,
.poems-page .accordion-panel-inner div,
.poems-page .accordion-panel-inner td {
  color: var(--poems-text-secondary) !important;
}

.poems-page .accordion-panel-inner strong {
  color: var(--poems-text-heading) !important;
}

/* Preserve inline color= on strong tags inside panels */
.poems-page .accordion-panel-inner strong[style*="color"],
.poems-page .accordion-panel-inner li strong[style*="color"] {
  color: inherit !important;
}

.accordion-panel-inner ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.accordion-panel-inner ul li {
  padding: 0.35rem 0;
  line-height: 1.6;
  font-size: var(--text-md);
}

.accordion-panel-inner p {
  margin-bottom: 0.75rem;
  line-height: 1.65;
  font-size: var(--text-md);
  max-width: 75ch;
}

/* Inline styled no-bullet lists inside accordions */
.poems-page .accordion-panel-inner ul[style*="list-style: none"] {
  list-style: none !important;
  padding-left: 0 !important;
}

.poems-page .accordion-panel-inner ul[style*="list-style: none"] li {
  color: var(--poems-text-secondary) !important;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.poems-page .accordion-panel-inner ul[style*="list-style: none"] li strong[style*="color"] {
  color: inherit !important;
}

/* Columns layout for baseline testing */
.accordion-panel-inner ul[style*="columns"] {
  column-gap: 2.5rem;
}

.accordion-panel-inner ul[style*="columns"] li {
  break-inside: avoid;
}


/* §7 — Tables — Deep Glass Effect
   ============================================================ */

.poems-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--poems-glass-border);
  box-shadow: var(--poems-shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-overflow-scrolling: touch;
}

.poems-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-md);
}

.poems-table thead {
  background: rgba(0, 229, 255, 0.06);
}

.poems-table th {
  padding: 1rem 1.15rem;
  text-align: left;
  color: var(--poems-cyan) !important;
  font-weight: 700;
  white-space: nowrap;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
}

.poems-table td {
  padding: 0.9rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
  color: var(--poems-text-secondary) !important;
  line-height: 1.5;
}

.poems-table td strong {
  color: var(--poems-text-heading) !important;
}

.poems-table tbody tr {
  transition: background 0.2s ease;
}

.poems-table tbody tr:hover {
  background: rgba(0, 229, 255, 0.03);
}

/* Preserve inline color on table cells */
.poems-table td[style*="color"] {
  color: inherit !important;
  font-weight: 600;
}


/* §8 — SVG Infographics — Responsive + Container
   ============================================================ */

.svg-infographic {
  margin: 2.5rem 0;
  padding: 0;
  background: rgba(10, 14, 26, 0.5);
  border: 1px solid var(--poems-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--poems-shadow-card), var(--poems-shadow-glow-cyan);
  position: relative;
}

.svg-infographic::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(0, 229, 255, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.svg-infographic svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.svg-infographic svg text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

/* Chart containers */
.chart-container {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(10, 14, 30, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--poems-glass-border);
  box-shadow: var(--poems-shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chart-container h4 {
  font-size: var(--text-md);
  color: var(--poems-text-muted) !important;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.chart-container svg {
  display: block;
  margin: 0 auto;
}


/* §9 — Timeline — Glowing Path
   ============================================================ */

.timeline {
  position: relative;
  padding-left: 3rem;
  margin: 2.5rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--poems-cyan),
    var(--poems-coral),
    var(--poems-mint),
    var(--poems-purple)
  );
  box-shadow:
    0 0 8px rgba(0, 229, 255, 0.3),
    0 0 20px rgba(0, 229, 255, 0.1);
  border-radius: 2px;
}

.timeline-event {
  position: relative;
  margin-bottom: 2.25rem;
  padding: 0.5rem 0 0.5rem 0.5rem;
  transition: transform 0.3s var(--poems-ease);
}

.timeline-event:hover {
  transform: translateX(4px);
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: -2.55rem;
  top: 0.6rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--poems-cyan);
  border: 3px solid rgba(10, 14, 30, 0.95);
  box-shadow:
    0 0 10px rgba(0, 229, 255, 0.5),
    0 0 25px rgba(0, 229, 255, 0.2);
}

.timeline-event .timeline-year {
  font-weight: 800;
  color: var(--poems-cyan) !important;
  font-size: var(--text-lg);
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.timeline-event .timeline-text {
  color: var(--poems-text-secondary) !important;
  margin-top: 0.35rem;
  line-height: 1.6;
  font-size: var(--text-md);
}


/* §10 — Callout / Warning Boxes — Glass + Glow
   ============================================================ */

.callout-box {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--poems-shadow-card);
  position: relative;
  overflow: hidden;
}

.callout-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    currentColor,
    transparent
  );
  opacity: 0.15;
  pointer-events: none;
}

.callout-box.warning {
  background: rgba(255, 82, 82, 0.06);
  border: 1px solid rgba(255, 82, 82, 0.2);
  box-shadow: var(--poems-shadow-card), 0 0 30px rgba(255, 82, 82, 0.05);
}

.callout-box.warning .callout-title {
  color: var(--poems-red) !important;
  text-shadow: 0 0 15px rgba(255, 82, 82, 0.3);
}

.callout-box.info {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.12);
  box-shadow: var(--poems-shadow-card), var(--poems-shadow-glow-cyan);
}

.callout-box.info .callout-title {
  color: var(--poems-cyan) !important;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.callout-box.success {
  background: rgba(102, 255, 204, 0.04);
  border: 1px solid rgba(102, 255, 204, 0.12);
  box-shadow: var(--poems-shadow-card), 0 0 30px rgba(102, 255, 204, 0.05);
}

.callout-box.success .callout-title {
  color: var(--poems-mint) !important;
  text-shadow: 0 0 15px rgba(102, 255, 204, 0.3);
}

.callout-title {
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.3;
}

.callout-body {
  color: var(--poems-text-secondary) !important;
  line-height: 1.65;
  font-size: var(--text-md);
}

.callout-body p {
  margin-bottom: 0.75rem;
  color: var(--poems-text-secondary) !important;
}

.callout-body ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.callout-body ul li {
  padding: 0.3rem 0;
  color: var(--poems-text-secondary) !important;
}

.callout-body em {
  color: var(--poems-text-secondary) !important;
  font-style: italic;
}

.callout-body strong {
  color: var(--poems-text-heading) !important;
}


/* §11 — Expert Cards
   ============================================================ */

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.expert-card {
  background: var(--poems-glass-bg);
  border: 1px solid var(--poems-glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--poems-shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform var(--poems-dur) var(--poems-ease),
    box-shadow var(--poems-dur) var(--poems-ease),
    border-color var(--poems-dur) var(--poems-ease);
}

.expert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--poems-shadow-card-hover);
  border-color: var(--poems-glass-border-hover);
}

.expert-card .expert-name {
  font-weight: 700;
  color: var(--poems-cyan) !important;
  font-size: var(--text-lg);
}

.expert-card .expert-institution {
  color: var(--poems-coral) !important;
  font-size: var(--text-md);
  margin-top: 0.3rem;
}

.expert-card .expert-detail {
  color: var(--poems-text-muted) !important;
  font-size: var(--text-sm);
  margin-top: 0.5rem;
  line-height: 1.5;
}


/* §12 — Checklist — Styled Checkboxes
   ============================================================ */

.checklist {
  list-style: none !important;
  margin: 1.25rem 0;
  padding: 0 !important;
}

.checklist li {
  padding: 0.7rem 0 0.7rem 2.25rem;
  position: relative;
  color: var(--poems-text-secondary) !important;
  line-height: 1.5;
  font-size: var(--text-md);
  transition: color 0.2s ease;
}

.checklist li:hover {
  color: var(--poems-text-primary) !important;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 229, 255, 0.35);
  border-radius: var(--radius-xs);
  transition: all 0.2s ease;
}

.checklist li:hover::before {
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.15);
}

.checklist li.checked::before {
  background: var(--poems-cyan);
  border-color: var(--poems-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.checklist li.checked::after {
  content: '\2713';
  position: absolute;
  left: 3px;
  top: 0.55rem;
  color: rgba(10, 14, 30, 0.95);
  font-weight: 800;
  font-size: var(--text-sm);
}


/* §13 — Acronym Visual Grid
   ============================================================ */

.acronym-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.acronym-letter {
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--poems-glass-bg);
  border: 1px solid var(--poems-glass-border);
  box-shadow: var(--poems-shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform var(--poems-dur) var(--poems-ease),
    box-shadow var(--poems-dur) var(--poems-ease),
    border-color var(--poems-dur) var(--poems-ease);
}

.acronym-letter:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--poems-shadow-card-hover);
  border-color: var(--poems-glass-border-hover);
}

.acronym-letter .letter {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 30px currentColor;
}

.acronym-letter .meaning {
  font-size: var(--text-md);
  color: var(--poems-text-primary) !important;
  margin-top: 0.75rem;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.acronym-letter .prevalence {
  font-size: var(--text-sm);
  color: var(--poems-text-muted) !important;
  margin-top: 0.35rem;
}


/* §14 — Key Differentiator Blocks
   ============================================================ */

.differentiator {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, padding-left 0.3s var(--poems-ease);
}

.differentiator:hover {
  background: rgba(0, 229, 255, 0.02);
  padding-left: 0.5rem;
}

.differentiator .diff-arrow {
  color: var(--poems-cyan) !important;
  font-size: var(--text-xl);
  flex-shrink: 0;
  margin-top: 0.1rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.differentiator .diff-text {
  color: var(--poems-text-secondary) !important;
  line-height: 1.5;
  font-size: var(--text-md);
}

.differentiator .diff-text strong {
  color: var(--poems-coral) !important;
}


/* §15 — Figure / Image System
   ============================================================ */

.poems-figure {
  margin: 2rem 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(10, 14, 30, 0.5);
  border: 1px solid var(--poems-glass-border);
  box-shadow: var(--poems-shadow-card);
  transition:
    box-shadow var(--poems-dur) var(--poems-ease),
    border-color var(--poems-dur) var(--poems-ease);
}

.poems-figure:hover {
  box-shadow: var(--poems-shadow-card-hover);
  border-color: var(--poems-glass-border-hover);
}

.poems-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px 16px 0 0;
  transition: filter 0.4s ease;
}

.poems-figure:hover img {
  filter: brightness(1.05);
}

.poems-figure figcaption {
  padding: 1.15rem 1.5rem;
  font-size: var(--text-sm);
  color: var(--poems-text-muted) !important;
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.poems-figure figcaption strong {
  color: var(--poems-text-secondary) !important;
}

.poems-figure figcaption .fig-source {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--text-xs);
  color: var(--poems-text-muted) !important;
  opacity: 0.7;
}

/* Side-by-side image grid */
.image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.image-row .poems-figure {
  margin: 0;
}


/* §16 — Illustration Row (Servier icons)
   ============================================================ */

.illustration-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.illustration-item {
  text-align: center;
  max-width: 180px;
  transition: transform var(--poems-dur) var(--poems-ease);
}

.illustration-item:hover {
  transform: translateY(-4px) scale(1.05);
}

.illustration-item img {
  width: 100%;
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.2));
  transition: filter var(--poems-dur) var(--poems-ease);
}

.illustration-item:hover img {
  filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.35));
}

.illustration-item .illust-label {
  font-size: var(--text-sm);
  color: var(--poems-text-muted) !important;
  margin-top: 0.75rem;
  line-height: 1.4;
}


/* §17 — Recovery Comparison Grid
   ============================================================ */

.recovery-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.recovery-col h4 {
  font-size: var(--text-md);
  margin-bottom: 1rem;
  text-align: center;
}

.recovery-col.before h4 {
  color: var(--poems-red) !important;
  text-shadow: 0 0 12px rgba(255, 82, 82, 0.2);
}

.recovery-col.after h4 {
  color: var(--poems-mint) !important;
  text-shadow: 0 0 12px rgba(102, 255, 204, 0.2);
}


/* §18 — References List
   ============================================================ */

.references-list {
  list-style: none !important;
  counter-reset: ref-counter;
  margin: 1.25rem 0;
  padding: 0 !important;
}

.references-list li {
  counter-increment: ref-counter;
  padding: 0.6rem 0 0.6rem 2.75rem;
  position: relative;
  font-size: var(--text-sm);
  color: var(--poems-text-muted) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  line-height: 1.5;
}

.references-list li::before {
  content: counter(ref-counter) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--poems-cyan) !important;
}


/* §19 — Prognosis Factor Boxes (inline styled grids)
   ============================================================ */

.poems-section > div[style*="grid-template-columns"] > div {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--poems-shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform var(--poems-dur) var(--poems-ease),
    box-shadow var(--poems-dur) var(--poems-ease);
}

.poems-section > div[style*="grid-template-columns"] > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--poems-shadow-card-hover);
}

.poems-section > div[style*="grid-template-columns"] > div ul {
  list-style: disc;
}

.poems-section > div[style*="grid-template-columns"] > div li {
  color: var(--poems-text-secondary) !important;
  padding: 0.3rem 0;
  font-size: var(--text-md);
}

.poems-section > div[style*="grid-template-columns"] > div h3[style*="color"] {
  color: inherit !important;
}


/* §20 — Image Credits Section
   ============================================================ */

#poems-credits {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#poems-credits h3 {
  color: var(--poems-text-muted) !important;
  font-size: var(--text-md);
  text-shadow: none !important;
}

#poems-credits p {
  font-size: var(--text-sm);
  color: var(--poems-text-muted) !important;
  max-width: 100ch;
  opacity: 0.7;
}


/* §21 — Scroll Reveal Animation
   ============================================================ */

.poems-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s var(--poems-ease);
}

.poems-section.poems-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.poems-section.poems-visible .stat-card,
.poems-section.poems-visible .acronym-letter,
.poems-section.poems-visible .accordion-item,
.poems-section.poems-visible .differentiator,
.poems-section.poems-visible .timeline-event {
  animation: poemsFadeInUp 0.5s var(--poems-ease) both;
}

.poems-section.poems-visible .stat-card:nth-child(1) { animation-delay: 0.05s; }
.poems-section.poems-visible .stat-card:nth-child(2) { animation-delay: 0.1s; }
.poems-section.poems-visible .stat-card:nth-child(3) { animation-delay: 0.15s; }
.poems-section.poems-visible .stat-card:nth-child(4) { animation-delay: 0.2s; }
.poems-section.poems-visible .stat-card:nth-child(5) { animation-delay: 0.25s; }

.poems-section.poems-visible .acronym-letter:nth-child(1) { animation-delay: 0.05s; }
.poems-section.poems-visible .acronym-letter:nth-child(2) { animation-delay: 0.1s; }
.poems-section.poems-visible .acronym-letter:nth-child(3) { animation-delay: 0.15s; }
.poems-section.poems-visible .acronym-letter:nth-child(4) { animation-delay: 0.2s; }
.poems-section.poems-visible .acronym-letter:nth-child(5) { animation-delay: 0.25s; }

@keyframes poemsFadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* §22 — Responsive
   ============================================================ */

@media (max-width: 768px) {
  .poems-page {
    margin: 1rem auto 3rem;
    padding: 2rem 0 3rem;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.25rem 1rem;
  }

  .stat-card .stat-number {
    font-size: var(--text-3xl);
  }

  .acronym-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .image-row {
    grid-template-columns: 1fr;
  }

  .recovery-comparison {
    grid-template-columns: 1fr;
  }

  .illustration-row {
    gap: 1.25rem;
  }

  .illustration-item {
    max-width: 130px;
  }

  .accordion-trigger {
    padding: 1rem 1.25rem;
    font-size: var(--text-md) !important;
  }

  .accordion-panel-inner {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .poems-table {
    font-size: var(--text-sm);
  }

  .poems-table th,
  .poems-table td {
    padding: 0.65rem 0.75rem;
  }

  .timeline {
    padding-left: 2.5rem;
  }

  .callout-box {
    padding: 1.25rem;
  }

  .poems-section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* SVG infographics — scroll on small screens */
  .svg-infographic {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .svg-infographic svg {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  .poems-page {
    margin: 0.5rem auto 2rem;
    padding: 1.5rem 0 2rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .acronym-grid {
    grid-template-columns: 1fr 1fr;
  }

  .poems-section h2 {
    font-size: var(--text-2xl);
  }

  .svg-infographic svg {
    min-width: 500px;
  }
}


/* §23 — Light Mode Overrides
   ============================================================
   Pale glassy container with complementary dark text.
   ============================================================ */

.mode-light .poems-page {
  --poems-text-primary: #1a1a2e;
  --poems-text-secondary: #3b3b5c;
  --poems-text-muted: #6b7280;
  --poems-text-heading: #111827;

  --poems-glass-bg: rgba(0, 0, 0, 0.02);
  --poems-glass-bg-hover: rgba(0, 0, 0, 0.04);
  --poems-glass-border: rgba(0, 0, 0, 0.08);
  --poems-glass-border-hover: rgba(0, 0, 0, 0.15);

  --poems-shadow-card:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.04);
  --poems-shadow-card-hover:
    0 2px 6px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.06);
  --poems-shadow-glow-cyan:
    0 0 20px rgba(34, 211, 238, 0.06),
    0 0 50px rgba(34, 211, 238, 0.03);

  color: var(--poems-text-primary);
}

/* Light mode — force all text */
.mode-light .poems-page,
.mode-light .poems-page p,
.mode-light .poems-page li,
.mode-light .poems-page span,
.mode-light .poems-page div,
.mode-light .poems-page td,
.mode-light .poems-page figcaption {
  color: var(--poems-text-secondary);
}

.mode-light .poems-page strong,
.mode-light .poems-page b {
  color: var(--poems-text-heading);
}

.mode-light .poems-section p {
  color: var(--poems-text-primary);
}

.mode-light .poems-page .accordion-trigger,
.mode-light .poems-page .accordion-trigger span {
  color: var(--poems-text-primary) !important;
}

.mode-light .poems-page .accordion-panel-inner,
.mode-light .poems-page .accordion-panel-inner p,
.mode-light .poems-page .accordion-panel-inner li,
.mode-light .poems-page .accordion-panel-inner span,
.mode-light .poems-page .accordion-panel-inner div {
  color: var(--poems-text-secondary) !important;
}

.mode-light .poems-page .accordion-panel-inner strong {
  color: var(--poems-text-heading) !important;
}

.mode-light .accordion-item {
  background: rgba(255, 255, 255, 0.6);
}

.mode-light .accordion-trigger:hover {
  background: rgba(34, 211, 238, 0.04) !important;
}

.mode-light .stat-card {
  background: rgba(255, 255, 255, 0.5);
}

.mode-light .acronym-letter {
  background: rgba(255, 255, 255, 0.5);
}

.mode-light .poems-figure {
  background: rgba(255, 255, 255, 0.5);
}

.mode-light .svg-infographic {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(0, 0, 0, 0.06);
}

.mode-light .chart-container {
  background: rgba(255, 255, 255, 0.4);
}

.mode-light .callout-box.warning {
  background: rgba(255, 82, 82, 0.04);
  border-color: rgba(255, 82, 82, 0.15);
}

.mode-light .callout-box.info {
  background: rgba(34, 211, 238, 0.04);
  border-color: rgba(34, 211, 238, 0.15);
}

.mode-light .callout-box.success {
  background: rgba(16, 185, 129, 0.04);
  border-color: rgba(16, 185, 129, 0.15);
}

.mode-light .callout-body,
.mode-light .callout-body p,
.mode-light .callout-body li {
  color: var(--poems-text-secondary) !important;
}

.mode-light .callout-body strong {
  color: var(--poems-text-heading) !important;
}

.mode-light .poems-table td {
  color: var(--poems-text-secondary) !important;
}

.mode-light .poems-table td strong {
  color: var(--poems-text-heading) !important;
}

.mode-light .poems-table tbody tr:hover {
  background: rgba(34, 211, 238, 0.04);
}

.mode-light .differentiator .diff-text {
  color: var(--poems-text-secondary) !important;
}

.mode-light .differentiator .diff-text strong {
  color: var(--poems-coral) !important;
}

.mode-light .timeline-event .timeline-text {
  color: var(--poems-text-secondary) !important;
}

.mode-light .timeline-event::before {
  border-color: rgba(248, 248, 252, 0.95);
}

.mode-light .checklist li {
  color: var(--poems-text-secondary) !important;
}

.mode-light .checklist li:hover {
  color: var(--poems-text-primary) !important;
}

.mode-light .checklist li.checked::after {
  color: rgba(248, 248, 252, 0.95);
}

.mode-light .poems-section > div[style*="grid-template-columns"] > div li {
  color: var(--poems-text-secondary) !important;
}
.poems-fullwidth-notice {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, #0a0e1a 0%, #111633 100%);
  border-bottom: 1px solid rgba(0,229,255,0.2);
}

.notice-inner {
  max-width: 800px;
  margin: 0 auto;
}

.poems-fullwidth-notice h3 {
  font-size: var(--text-2xl);
  margin-bottom: 20px;
  color: #00e5ff;
}

.poems-fullwidth-notice p {
  font-size: var(--text-md);
  color: #ccc;
  margin-bottom: 30px;
}

.poems-fullwidth-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  background: linear-gradient(90deg, #00e5ff, #66ffcc);
  color: #0a0e1a;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poems-fullwidth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,229,255,0.3);
}

.notice-subtext {
  margin-top: 20px;
  font-size: var(--text-sm);
  color: #888;
}

.poems-quote-block {
  padding: 40px 20px;
  text-align: center;
}

.poems-quote-block blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  color: #ffd740;
  max-width: 800px;
  margin: 0 auto;
}

.mode-light .poems-quote-block blockquote {
  color: #7a4f1a;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 1.25rem 2rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}


/* ============================================================
   TABLE OF CONTENTS — POEMS palette overrides
   Shared grid + sticky behaviour live in 10-shared-page-components.
   Only accent colours are overridden here.
   ============================================================ */

.poems-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

.poems-page .byr-two-col {
  overflow: visible;
}

.poems-page .poems-main {
  min-width: 0;
  overflow-wrap: break-word;
}

.poems-toc {
  scrollbar-width: thin;
  scrollbar-color: var(--poems-cyan) transparent;
}

.poems-toc .byr-toc-inner {
  border-left-color: var(--poems-cyan);
}

.poems-toc .byr-toc-label {
  color: var(--poems-cyan);
}

.poems-toc a:hover,
.poems-toc a.is-active,
.poems-toc a[aria-current="true"] {
  color: var(--poems-cyan);
  background: rgba(0, 229, 255, 0.08);
  border-left-color: var(--poems-cyan);
}

.poems-toc a.is-active,
.poems-toc a[aria-current="true"] {
  font-weight: 600;
}

.poems-toc a:focus-visible {
  outline-color: var(--poems-cyan);
}

/* ============================================================
   POEMS — STORY MATTERS / FEEDBACK / COMMUNITY VOICES
   Mirrors HCS + Fechtner footer pattern, themed in POEMS cyan.
============================================================ */

.poems-story-section { padding-top: var(--poems-section-gap, 5rem); }

.poems-story-cta {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.08), transparent);
  border: 1px solid var(--poems-glass-border);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-bottom: 3rem;
}

.poems-story-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-heading);
  margin: 0 0 0.6rem;
  position: relative;
  display: inline-block;
}

.poems-story-cta h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, var(--poems-cyan), transparent);
  border-radius: 2px;
}

.poems-story-cta p {
  color: var(--color-text-secondary);
  max-width: 60ch;
  margin: 0 auto;
}

.poems-story-tag { margin-top: 1.5rem !important; text-align: center; }
.poems-story-tag strong { color: var(--poems-cyan); }

.poems-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.poems-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  font-family: inherit;
}

.poems-cta-btn--primary {
  background: linear-gradient(135deg, var(--poems-cyan-dim), var(--poems-cyan));
  color: #fff;
  border-color: var(--poems-cyan);
}
.poems-cta-btn--primary:hover {
  background: linear-gradient(135deg, var(--poems-cyan), var(--poems-cyan-dim));
  box-shadow: 0 0 24px var(--poems-cyan-glow);
  transform: translateY(-2px);
}

.poems-cta-btn--secondary {
  background: transparent;
  color: var(--poems-cyan);
  border-color: rgba(34, 211, 238, 0.40);
}
.poems-cta-btn--secondary:hover {
  background: var(--poems-cyan-subtle);
  border-color: var(--poems-cyan);
}

.poems-feedback { padding: 3rem 0; }
.poems-form { max-width: 640px; }
.poems-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.poems-form-group { margin-bottom: 1.5rem; }
.poems-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}
.poems-optional { color: var(--color-text-muted); font-weight: 400; }
.poems-required { color: #fb7185; }

.poems-input,
.poems-select,
.poems-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: var(--glass-bg);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 8px;
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.4;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.poems-input::placeholder,
.poems-textarea::placeholder { color: var(--color-text-muted); }
.poems-input:focus,
.poems-select:focus,
.poems-textarea:focus {
  border-color: var(--poems-cyan) !important;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.20) !important;
  outline: none !important;
}
.poems-select {
  appearance: none;
  min-height: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2322d3ee' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}
.poems-textarea { resize: vertical; min-height: 120px; }

.poems-form-consent { display: flex; align-items: flex-start; gap: 1rem; }
.poems-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  cursor: pointer;
}
.poems-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--poems-cyan);
}

.poems-form-error {
  font-size: 0.875rem;
  color: #fca5a5;
  margin-top: 0.3rem;
  min-height: 1.2em;
}
.mode-light .poems-form-error { color: #dc2626; }

.poems-submit-btn { margin-top: 1rem; }

.poems-form-success {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.30);
  border-radius: 8px;
}
.poems-form-success p { color: var(--color-text-primary); }

.poems-comments { padding: 2rem 0; }
.poems-comments-placeholder { margin-top: 1.5rem; }
.poems-comment-empty {
  text-align: center;
  padding: 3rem;
  border: 2px dashed rgba(34, 211, 238, 0.25);
  border-radius: 14px;
  color: var(--color-text-muted);
}
.poems-comment-empty svg { margin: 0 auto 1rem; opacity: 0.5; stroke: var(--poems-cyan); }
.poems-comment-empty p { font-style: italic; }

@media (max-width: 640px) {
  .poems-form-row { grid-template-columns: 1fr; }
  .poems-cta-buttons { flex-direction: column; align-items: stretch; }
  .poems-cta-btn { justify-content: center; }
}

@media print {
  .poems-story-cta,
  .poems-feedback,
  .poems-comments,
  .poems-cta-buttons { display: none; }
}


/* ============================================================
   LIGHT MODE — PAPER GROUND & COLOR BLOOM
   Fixed full-viewport paper-cream base with a warm POEMS bloom
   at top. Sits at z-index: -1, above the global body::before
   (z: -10), below page content.

   Anchored to #page::before (Astra's top wrapper), NOT to
   .poems-page::before — because .poems-page sets z-index: 1 at
   line 88, which makes it a stacking context. A fixed ::before
   at z: -1 inside .poems-page would paint above siblings like
   the hero section .byr-hero-slug-poems (at z: auto in root),
   erasing the hero. #page has no z-index, so its ::before
   bubbles to the root stacking context and sits cleanly below
   all content. Scope via page-id-1448 so only POEMS gets it.
   .mode-light is on <html>, so descendant combinator.
   ============================================================ */

.mode-light body.page-id-1448 #page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 70% at 50% 0%, rgba(183, 133, 64, 0.39), transparent 60%),
    linear-gradient(180deg, #F7F1E3 0%, #F4EDDC 100%);
}

/* Warm-shifted text tokens — readable against warm paper ground.
   Scoped cascade to all descendants of .poems-page. */
.mode-light .poems-page {
  --color-text-primary:   #1F1810;
  --color-text-secondary: #2B2218;
  --color-text-muted:     #5E4F3D;
  --color-heading:        #1A1208;
}
