    :root {
      color-scheme: light;
      --bg: #f6f1e8;
      --ink: #191714;
      --muted: #5f584e;
      --line: #2a2621;
      --accent: #3f3328;
      --accent-dark: #191714;
      --panel: #FFFFFF;
      --elg-title: #3D2F2A;
      --elg-moss: #536b3f;
      --elg-amber: #b56a2a;
      --elg-panel-width: 760px;
      --elg-radius: 12px;
      --importance-high: #b42318;
      --importance-medium: #d97706;
      --importance-low: #218a50;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 0.94rem;
      line-height: 1.58;
    }
    main {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      padding: 32px 0 56px;
    }
    a { color: var(--accent-dark); }
    .site-header {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: flex-start;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }
    nav { display: flex; gap: 12px; flex-wrap: wrap; }
    nav a {
      min-height: 36px;
      padding: 6px 10px;
      border: 1px solid var(--line);
      background: var(--panel);
      text-decoration: none;
      color: var(--ink);
    }
    h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 12px; letter-spacing: 0; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.45rem; margin-top: 34px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
    h3 { font-size: 1.12rem; margin-top: 26px; }
    h4 { font-size: 1rem; margin-top: 20px; }
    p, ul { margin-top: 0; }
    li { margin-bottom: 8px; }
    .eyebrow {
      color: var(--accent);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 0;
      margin: 0 0 6px;
      text-transform: uppercase;
    }
    .meta { color: var(--muted); margin: 0; }
    .summary-band {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      margin: 22px 0 28px;
      background: var(--line);
      border: 1px solid var(--line);
    }
    .summary-band div { background: var(--panel); padding: 14px; min-width: 0; }
    .summary-band span { display: block; color: var(--muted); font-size: .78rem; margin-bottom: 4px; }
    .summary-band strong { display: block; overflow-wrap: anywhere; }
    .section-rail {
      position: sticky;
      top: 0;
      z-index: 20;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      align-items: center;
      margin: 14px 0 18px;
      padding: 8px 0;
      background: rgba(246, 241, 232, .96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(6px);
    }
    .section-rail a {
      display: inline;
      max-width: 100%;
      color: var(--accent-dark);
      text-decoration: underline;
      text-underline-offset: 2px;
      overflow-wrap: anywhere;
    }
    .elg-panel {
      background: var(--panel);
      border: 1px solid rgba(42, 38, 33, .18);
      border-radius: var(--elg-radius);
      box-shadow: 0 8px 22px rgba(42, 38, 33, .06);
      margin-inline: auto;
      max-width: var(--elg-panel-width);
      width: 100%;
    }
    .elgjahalla-hero {
      padding: 18px 18px 22px;
    }
    .mountain-banner {
      display: block;
      width: 100%;
      height: 94px;
      margin: 0 0 18px;
      border-radius: calc(var(--elg-radius) - 4px);
      object-fit: cover;
      object-position: center 58%;
      background: #fff;
    }
    .elgjahalla-brand {
      max-width: 680px;
    }
    .elgjahalla-brand h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.9rem, 5.2vw, 4.2rem);
      font-weight: 700;
      letter-spacing: .12em;
      margin: 0;
      color: var(--elg-title);
    }
    .tagline {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(.95rem, 1.9vw, 1.4rem);
      margin: 4px 0 12px;
    }
    .rotating-subtitle {
      color: var(--muted);
      font-size: .88rem;
      margin: 0 auto;
      max-width: 46rem;
    }
    .site-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 26px;
      margin: 18px auto 0;
      padding: 14px 18px;
    }

    .top-nav {
      justify-content: flex-end;
      margin: 0 auto 14px;
    }
    .site-nav a,
    .comic-nav a {
      background: transparent;
      border: 0;
      color: var(--elg-moss);
      min-height: auto;
      padding: 0;
      position: relative;
      text-decoration: none;
      text-underline-offset: 3px;
      transition: color .18s ease;
    }
    .site-nav a::after,
    .comic-nav a::after {
      background: currentColor;
      bottom: -3px;
      content: "";
      height: 1px;
      left: 0;
      position: absolute;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .18s ease;
      width: 100%;
    }
    .site-nav a:hover,
    .site-nav a:focus-visible,
    .comic-nav a:hover,
    .comic-nav a:focus-visible {
      color: var(--elg-amber);
    }
    .site-nav a:hover::after,
    .site-nav a:focus-visible::after,
    .comic-nav a:hover::after,
    .comic-nav a:focus-visible::after {
      transform: scaleX(1);
    }
    .section-divider {
      border: 0;
      border-top: 1px solid rgba(42, 38, 33, .35);
      margin: 24px auto;
      max-width: var(--elg-panel-width);
    }
    .tru-warning {
      margin: 12px auto;
      padding: 10px 16px;
      color: var(--muted);
      font-size: 0.88rem;
      text-align: left;
      box-shadow: none;
    }
    .tru-warning p {
      margin: 0;
    }
    .tru-warning a {
      color: var(--elg-moss);
      font-weight: 650;
    }
    .saga-feature {
      padding: 24px 18px 22px;
      text-align: center;
    }
    .saga-feature h2 {
      border-bottom: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.3rem, 3.2vw, 2.05rem);
      margin: 0 0 18px;
      padding: 0;
    }
    .comic-frame {
      align-items: center;
      display: flex;
      justify-content: center;
      margin: 0 auto 14px;
      max-width: 590px;
      position: relative;
    }
    .comic-image {
      background: #fff;
      border: 1px solid var(--line);
      display: block;
      height: auto;
      max-width: 100%;
      width: 100%;
    }
    .comic-hover-caption {
      background: rgba(255, 253, 248, .94);
      border: 1px solid var(--line);
      bottom: 18px;
      color: var(--ink);
      left: 50%;
      opacity: 0;
      padding: 8px 12px;
      pointer-events: none;
      position: absolute;
      transform: translate(-50%, 8px);
      transition: opacity .18s ease, transform .18s ease;
      width: min(88%, 380px);
    }
    .comic-frame:hover .comic-hover-caption,
    .comic-frame:focus-within .comic-hover-caption {
      opacity: 1;
      transform: translate(-50%, 0);
    }
    .saga-meta {
      margin: 0 auto 22px;
      max-width: 520px;
      text-align: center;
    }
    .saga-meta p {
      margin: 4px 0;
    }
    .comic-nav {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 0 auto;
      max-width: 360px;
    }
    .comic-nav a[aria-disabled="true"] {
      color: var(--muted);
      opacity: .55;
      pointer-events: none;
    }
    .archive-feature {
      text-align: center;
    }
    .archive-table-wrap {
      margin: 0 auto;
      max-width: 540px;
      overflow-x: auto;
      width: fit-content;
    }
    .comic-archive-table {
      border-collapse: collapse;
      margin: 0 auto;
      min-width: 360px;
      width: auto;
    }
    .comic-archive-table th,
    .comic-archive-table td {
      border-bottom: 1px solid rgba(42, 38, 33, .18);
      padding: 7px 14px;
      text-align: center;
      vertical-align: top;
    }
    .comic-archive-table th:last-child,
    .comic-archive-table td:last-child {
      text-align: center;
      white-space: nowrap;
    }
    .comic-archive-table a {
      color: var(--elg-moss);
      text-decoration: none;
      text-underline-offset: 3px;
    }
    .comic-archive-table a:hover,
    .comic-archive-table a:focus-visible {
      color: var(--elg-amber);
      text-decoration: underline;
    }
    .small-note {
      color: var(--ink);
      margin: 0 auto;
      padding: 18px 20px;
      text-align: center;
    }
    .note-divider {
      border: 0;
      border-top: 1px solid var(--line);
      margin: 24px auto;
      max-width: var(--elg-panel-width);
    }
    .small-note p {
      margin: 4px 0;
    }
    .briefing {
      background: var(--panel);
      border: 1px solid var(--line);
      padding: 24px;
    }
    .trend-snapshot {
      margin: 24px 0;
      padding: 16px;
      border: 1px solid var(--line);
      background: #f8fafc;
    }
    .trend-snapshot-header {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: baseline;
      margin-bottom: 10px;
    }
    .trend-snapshot h2 {
      border-bottom: 0;
      margin: 0;
      padding-bottom: 0;
    }
    .trend-snapshot table, .trend-table {
      width: 100%;
      border-collapse: collapse;
    }
    .trend-snapshot th, .trend-snapshot td, .trend-table th, .trend-table td {
      border-bottom: 1px solid var(--line);
      padding: 7px 8px;
      text-align: left;
      vertical-align: top;
    }
    .trend-snapshot th, .trend-table th {
      color: var(--muted);
      font-size: .82rem;
      font-weight: 700;
    }
    .trend-page {
      background: var(--panel);
      border: 1px solid var(--line);
      margin-top: 24px;
      padding: 22px;
    }
    .trend-window-summary {
      border-bottom: 1px solid var(--line);
      padding: 12px 0 16px;
    }
    .trend-window-summary:first-of-type {
      padding-top: 0;
    }
    .trend-window-summary h2 {
      margin-top: 12px;
    }
    .trend-detail {
      border-left: 6px solid var(--accent);
      margin: 20px 0;
      padding: 2px 0 2px 16px;
    }
    .trend-detail h3 {
      margin-top: 0;
    }
    .trend-inline-links {
      color: var(--muted);
      display: inline;
    }
    .trend-sources {
      color: var(--muted);
      font-size: .92rem;
      margin-top: 8px;
    }
    .trend-sources ul {
      margin: 6px 0 0;
      padding-left: 20px;
    }
    .trend-summary {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      margin-bottom: 18px;
    }
    .trend-summary div {
      min-width: 0;
      background: var(--panel);
      padding: 12px;
    }
    .trend-summary span {
      display: block;
      color: var(--muted);
      font-size: .76rem;
      margin-bottom: 4px;
    }
    .trend-summary strong {
      display: block;
      font-size: 1.25rem;
    }
    .trend-table-wrap {
      overflow-x: auto;
      margin-bottom: 24px;
    }
    .trend-table {
      min-width: 980px;
      font-size: .92rem;
    }
    .keyword-metrics {
      margin: 16px 0 8px;
    }
    .keyword-metrics-header {
      align-items: baseline;
      display: flex;
      gap: 16px;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .keyword-metrics h3 {
      color: var(--muted);
      font-size: .92rem;
      margin: 0;
    }
    .keyword-metrics-header a {
      color: var(--elg-moss);
      font-size: .84rem;
    }
    .keyword-graph {
      background: #fffefb;
      border: 1px solid rgba(42, 38, 33, .22);
      margin-bottom: 10px;
      padding: 12px;
    }
    .keyword-graph svg {
      display: block;
      height: auto;
      max-height: 260px;
      overflow: visible;
      width: 100%;
    }
    .keyword-graph-bg {
      fill: #fffefb;
    }
    .keyword-grid-line {
      stroke: rgba(42, 38, 33, .18);
      stroke-width: 1;
    }
    .keyword-axis-label {
      fill: var(--muted);
      font-size: 13px;
    }
    .keyword-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      margin: 0 0 12px;
    }
    .keyword-legend span {
      align-items: center;
      color: var(--ink);
      display: inline-flex;
      font-size: .86rem;
      gap: 5px;
    }
    .keyword-legend i {
      display: inline-block;
      height: 10px;
      width: 22px;
    }
    .keyword-date-axis {
      border-top: 1px solid rgba(42, 38, 33, .2);
      height: 22px;
      margin-left: 5%;
      margin-right: 2%;
      position: relative;
    }
    .keyword-date-axis span {
      color: var(--muted);
      font-size: .78rem;
      position: absolute;
      top: 5px;
      transform: translateX(-50%);
      white-space: nowrap;
    }
    .keyword-table-details {
      margin-top: 8px;
    }
    .keyword-table-details summary {
      color: var(--elg-moss);
      cursor: pointer;
      font-size: .86rem;
      margin-bottom: 8px;
    }
    .keyword-table-wrap {
      overflow-x: auto;
    }
    .keyword-table {
      border-collapse: collapse;
      font-size: .82rem;
      min-width: 640px;
      width: 100%;
    }
    .keyword-table th,
    .keyword-table td {
      border-bottom: 1px solid rgba(42, 38, 33, .2);
      padding: 5px 6px;
      text-align: center;
      vertical-align: middle;
      white-space: nowrap;
    }
    .keyword-table th:first-child {
      color: var(--muted);
      font-weight: 700;
      text-align: left;
    }
    .keyword-table thead th {
      color: var(--muted);
      font-weight: 700;
      text-transform: none;
    }
    .keyword-cell {
      background: color-mix(in srgb, var(--elg-moss) calc(var(--keyword-level) * 12%), transparent);
      border-radius: 3px;
      display: inline-block;
      min-width: 1.65rem;
      padding: 2px 4px;
    }
    .briefing p { max-width: 82ch; }
    .briefing ul { max-width: 90ch; padding-left: 24px; }
    .briefing-item {
      border-left: 6px solid var(--importance-low);
      margin: 24px 0;
      padding: 2px 0 2px 16px;
    }
    .briefing-item h3 {
      margin-top: 0;
    }
    .briefing-item.importance-high { border-left-color: var(--importance-high); }
    .briefing-item.importance-medium { border-left-color: var(--importance-medium); }
    .briefing-item.importance-low { border-left-color: var(--importance-low); }
    .why {
      border-left: 4px solid var(--accent);
      padding-left: 12px;
      color: #253142;
    }
    .refs, .confidence { color: var(--muted); font-size: .92rem; }
    .confidence { margin-top: -4px; }
    .more-link { font-weight: 700; white-space: nowrap; }
    .artifacts, .archive-list {
      margin-top: 24px;
      background: var(--panel);
      border: 1px solid var(--line);
      padding: 20px;
    }
    .artifacts ul {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      padding-left: 18px;
      margin-bottom: 0;
    }
    .archive-list { list-style: none; padding-left: 20px; }
    .archive-item {
      display: flex;
      gap: 18px;
      align-items: center;
      border-bottom: 1px solid var(--line);
      padding: 12px 0;
    }
    .archive-item:last-child { border-bottom: 0; }
    .archive-date { font-weight: 700; min-width: 120px; }
    .status-page {
      background: var(--panel);
      border: 1px solid var(--line);
      margin-top: 24px;
      padding: 20px;
    }
    .status-page table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 24px;
    }
    .status-page th, .status-page td {
      border-bottom: 1px solid var(--line);
      padding: 8px;
      text-align: left;
      vertical-align: top;
    }
    .status-page pre {
      background: #eef1f5;
      overflow: auto;
      padding: 12px;
    }
    .admin-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }
    .admin-links a {
      border: 1px solid var(--line);
      color: var(--ink);
      min-height: 36px;
      padding: 6px 10px;
      text-decoration: none;
    }
    .admin-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-grid section {
      border: 1px solid var(--line);
      padding: 14px;
    }
    .admin-grid h2 {
      font-size: 1rem;
      margin-top: 0;
    }
    .admin-comic-builder h2 {
      font-size: 1rem;
    }
    .admin-form {
      display: grid;
      gap: 16px;
      margin: 20px 0;
    }
    .form-grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-form label {
      color: var(--muted);
      display: grid;
      font-size: .84rem;
      gap: 5px;
    }
    .admin-form input,
    .admin-form select,
    .admin-form textarea,
    .json-output {
      border: 1px solid var(--line);
      color: var(--ink);
      font: inherit;
      min-height: 36px;
      padding: 7px 9px;
      width: 100%;
    }
    .admin-form textarea,
    .json-output {
      font-family: Consolas, "Courier New", monospace;
      min-height: 120px;
    }
    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .button-row button {
      background: var(--panel);
      border: 1px solid var(--line);
      color: var(--ink);
      cursor: pointer;
      min-height: 36px;
      padding: 7px 10px;
    }
    .button-row button:hover,
    .button-row button:focus-visible {
      border-color: var(--elg-amber);
      color: var(--elg-amber);
    }
    .upload-status {
      border: 1px solid rgba(42, 38, 33, .2);
      margin: 12px 0 20px;
      min-height: 40px;
      padding: 9px 11px;
    }
    .upload-status:empty {
      display: none;
    }
    .upload-status[data-mode="success"] {
      border-color: var(--importance-low);
      color: var(--importance-low);
    }
    .upload-status[data-mode="error"] {
      border-color: var(--importance-high);
      color: var(--importance-high);
    }
    code { background: #eef1f5; padding: 1px 4px; }
    @media (max-width: 760px) {
      main { width: min(100% - 20px, 1120px); padding-top: 18px; }
      .site-header { display: block; }
      nav { margin-top: 14px; }
      .summary-band { grid-template-columns: 1fr 1fr; }
      .trend-summary { grid-template-columns: 1fr 1fr; }
      .trend-snapshot-header { display: block; }
      .admin-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .comic-nav { grid-template-columns: 1fr; }
      .briefing { padding: 16px; }
      h1 { font-size: 1.55rem; }
    }
    @media (max-width: 460px) {
      .summary-band { grid-template-columns: 1fr; }
      .trend-summary { grid-template-columns: 1fr; }
    }

    .tru-index {
      margin: 18px auto;
      padding: 22px 20px;
    }
    .tru-index h2,
    .tru-post h2 {
      border-bottom: 0;
      font-family: inherit;
      margin-top: 0;
      padding-bottom: 0;
    }
    .tru-post-card {
      border-top: 1px solid rgba(42, 38, 33, .16);
      padding: 18px 0 10px;
    }
    .tru-post-card:first-of-type {
      border-top: 0;
      padding-top: 0;
    }
    .tru-post-card h2 {
      font-size: 1.3rem;
      margin: 0 0 8px;
    }
    .tru-post-card h2 a {
      color: var(--ink);
      text-decoration: none;
    }
    .tru-post-card h2 a:hover,
    .tru-post-card h2 a:focus-visible {
      color: var(--elg-amber);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .tru-post {
      margin: 18px auto;
      padding: 24px 22px;
    }
    .tru-post-body {
      font-family: inherit;
      font-size: 1.02rem;
      line-height: 1.72;
      margin-top: 18px;
    }
    .tru-post-body blockquote {
      border-left: 4px solid var(--elg-moss);
      color: var(--muted);
      margin: 18px 0;
      padding-left: 14px;
    }
    .tru-hashtags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0 0;
    }
    .tru-hashtags span {
      color: var(--elg-moss);
      font-size: .88rem;
    }


    .post-snapshot {
      margin: 18px auto;
      padding: 18px 20px 20px;
    }
    .post-snapshot-head {
      align-items: center;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 14px;
    }
    .post-snapshot-head h2 {
      border-bottom: 0;
      font-size: 1.15rem;
      margin: 0;
      padding: 0;
    }
    .post-snapshot-controls {
      display: flex;
      gap: 8px;
    }
    .post-snapshot-controls button {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--ink);
      cursor: pointer;
      font: inherit;
      font-weight: 800;
      height: 34px;
      width: 38px;
    }
    .post-snapshot-controls button:hover,
    .post-snapshot-controls button:focus-visible {
      border-color: var(--elg-amber);
      color: var(--elg-amber);
    }
    .post-snapshot-track {
      display: grid;
      gap: 14px;
      grid-auto-columns: calc((100% - 28px) / 3);
      grid-auto-flow: column;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
    }
    .post-snapshot-card {
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
      border-radius: 8px;
      min-height: 190px;
      padding: 14px;
      scroll-snap-align: start;
    }
    .post-snapshot-card h3 {
      font-size: 1rem;
      line-height: 1.25;
      margin: 0 0 8px;
    }
    .post-snapshot-date {
      color: var(--muted);
      font-size: .86rem;
      font-weight: 700;
      margin: -2px 0 9px;
    }
    .post-snapshot-card h3 a {
      border-bottom: 0;
      color: var(--ink);
      text-decoration: none !important;
    }
    .post-snapshot-card h3 a * {
      border-bottom: 0;
      text-decoration: none !important;
    }
    .post-snapshot-card h3 a:hover,
    .post-snapshot-card h3 a:focus-visible,
    .post-snapshot-card .more-link:hover,
    .post-snapshot-card .more-link:focus-visible {
      color: var(--elg-amber);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .post-snapshot-card p {
      font-size: .95rem;
      line-height: 1.55;
      margin: 0 0 10px;
    }
    .post-snapshot-card .more-link {
      color: var(--elg-moss);
      font-weight: 800;
      white-space: nowrap;
    }
    .post-snapshot-card .tru-hashtags {
      margin-top: 12px;
    }
    @media (max-width: 860px) {
      .post-snapshot-track {
        grid-auto-columns: calc((100% - 14px) / 2);
      }
    }
    @media (max-width: 560px) {
      .post-snapshot-track {
        grid-auto-columns: 100%;
      }
    }

    .tru-summary-list {
      display: grid;
      gap: 16px;
    }
    .tru-summary-item {
      border-top: 1px solid rgba(42, 38, 33, .16);
      padding: 16px 0 4px;
    }
    .tru-summary-item:first-child {
      border-top: 0;
      padding-top: 0;
    }
    .tru-summary-item h3 {
      font-family: inherit;
      font-size: 1.08rem;
      line-height: 1.3;
      margin: 0 0 8px;
    }
    .tru-summary-item h3 a {
      color: var(--ink);
      text-decoration: none;
    }
    .tru-summary-item h3 a:hover,
    .tru-summary-item h3 a:focus-visible,
    .tru-summary-item .more-link:hover,
    .tru-summary-item .more-link:focus-visible {
      color: var(--elg-amber);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .tru-summary-item p {
      line-height: 1.55;
      margin: 0 0 10px;
    }
    .tru-summary-item .more-link {
      color: var(--elg-moss);
      font-weight: 800;
      white-space: nowrap;
    }

.post-snapshot--compact .post-snapshot-card {
  min-height: 128px;
}

.post-snapshot-card--compact {
  justify-content: center;
}

.post-snapshot-card--compact h3 {
  margin-bottom: 0.45rem;
}

.post-snapshot-card--compact .post-snapshot-date {
  margin-bottom: 0.35rem;
}

.post-snapshot-card--compact .tru-hashtags {
  margin-top: 0;
}



.site-search {
  margin: 18px auto;
  padding: 16px 18px;
}
.site-search label {
  display: grid;
  gap: 8px;
  justify-items: center;
}
.site-search label > span {
  justify-self: start;
  width: 80%;
  max-width: 100%;
  margin-inline: auto;
}
.site-search span:first-child {
  color: var(--moss);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-search input[type="search"] {
  background: #fffefa;
  border: 1px solid rgba(42, 38, 33, .24);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
  width: 80%;
  max-width: 100%;
}
.site-search input[type="search"]:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(83, 107, 63, .14);
  outline: none;
}
.site-search-status,
.site-search-empty {
  color: var(--muted);
  font-size: .9rem;
  margin: 8px 0 0;
}
.site-search-results {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
}
.site-search-result {
  border-left: 3px solid var(--moss);
  padding: 4px 0 6px 12px;
}
.site-search-result h3 {
  font-size: 1.02rem;
  margin: 0 0 4px;
}
.site-search-result p {
  margin: 4px 0;
}
.site-search-result .tru-hashtags span {
  color: var(--moss);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.tru-entity-network {
  margin: 18px auto;
}
.tru-entity-network-intro {
  color: var(--muted);
  margin-bottom: 16px;
}
.tru-entity-network-summary {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.tru-network-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .92rem;
}
.tru-network-stats strong {
  color: var(--ink);
}
.tru-network-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tru-network-chip {
  background: #fffefa;
  border: 1px solid rgba(42, 38, 33, .24);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  min-width: 132px;
  padding: 8px 12px;
  text-decoration: none;
}
a.tru-network-chip:hover,
a.tru-network-chip:focus-visible {
  border-color: var(--elg-amber);
  color: var(--elg-amber);
}
.tru-network-chip-label {
  font-weight: 800;
  line-height: 1.2;
}
.tru-network-chip-meta,
.tru-network-note {
  color: var(--muted);
  font-size: .84rem;
}
.tru-network-note {
  margin: 14px 0 0;
}

.tru-network-stage {
  background: #fffefa;
  border: 1px solid rgba(42, 38, 33, .18);
  border-radius: 10px;
  overflow: hidden;
}
.tru-network-svg {
  display: block;
  height: auto;
  min-height: 340px;
  width: 100%;
}
.tru-network-edge {
  cursor: pointer;
  stroke: rgba(42, 38, 33, .42);
  transition: opacity .16s ease, stroke .16s ease, stroke-width .16s ease;
}
.tru-network-edge:hover,
.tru-network-edge:focus-visible {
  opacity: .95;
  outline: none;
  stroke: var(--elg-amber);
}
.tru-network-node {
  cursor: pointer;
  outline: none;
}
.tru-network-node circle {
  fill: rgba(83, 107, 63, .68);
  stroke: rgba(42, 38, 33, .72);
  stroke-width: 1.4;
  transition: fill .16s ease, stroke .16s ease, stroke-width .16s ease;
}
.tru-network-node--default circle {
  fill: rgba(181, 106, 42, .72);
  stroke-width: 2;
}
.tru-network-node text {
  fill: var(--ink);
  font-size: 13px;
  font-weight: 800;
  paint-order: stroke;
  pointer-events: none;
  stroke: #fffefa;
  stroke-linejoin: round;
  stroke-width: 4px;
}
.tru-network-node:hover circle,
.tru-network-node:focus-visible circle {
  fill: var(--elg-amber);
  stroke: var(--ink);
  stroke-width: 2.6;
}
.tru-network-detail {
  border-left: 4px solid var(--elg-moss);
  margin-top: 14px;
  padding: 4px 0 2px 14px;
}
.tru-network-detail h3 {
  font-size: 1rem;
  margin: 0 0 5px;
}
.tru-network-detail p {
  color: var(--muted);
  margin: 0 0 8px;
}
.tru-network-detail ol {
  margin: 0;
  padding-left: 20px;
}
.tru-network-detail li {
  margin-bottom: 5px;
}
.tru-network-detail span {
  color: var(--muted);
  font-size: .86rem;
}
@media (max-width: 620px) {
  .tru-network-svg {
    min-height: 420px;
  }
  .tru-network-node text {
    font-size: 15px;
  }
}



/* Trú entity network phase 4 controls and readability */
.tru-network-controls {
  align-items: center;
  border-bottom: 1px solid rgba(42, 38, 33, .16);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: space-between;
  margin: 0 0 14px;
  padding: 0 0 14px;
}
.tru-network-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tru-network-filter {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--elg-moss);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 4px 2px;
}
.tru-network-filter:hover,
.tru-network-filter:focus-visible,
.tru-network-filter.is-active {
  border-color: var(--elg-amber);
  color: var(--elg-amber);
  outline: none;
}
.tru-network-strength {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .9rem;
  gap: 8px;
}
.tru-network-strength input {
  accent-color: var(--elg-moss);
  max-width: 190px;
}
.tru-network-strength output {
  color: var(--ink);
  font-weight: 800;
  min-width: 2ch;
}
.tru-network-stage {
  background: #fffefa;
  border: 1px solid rgba(42, 38, 33, .18);
  border-radius: 10px;
  overflow: hidden;
}
.tru-network-svg {
  display: block;
  height: auto;
  min-height: 390px;
  width: 100%;
}
.tru-network-edge {
  cursor: pointer;
  stroke: rgba(42, 38, 33, .54);
  transition: opacity .16s ease, stroke .16s ease, stroke-width .16s ease;
}
.tru-network-edge:hover,
.tru-network-edge:focus-visible {
  opacity: .95;
  outline: none;
  stroke: var(--elg-amber);
}
.tru-network-node {
  cursor: pointer;
  outline: none;
}
.tru-network-node circle {
  fill: rgba(83, 107, 63, .68);
  stroke: rgba(42, 38, 33, .72);
  stroke-width: 1.4;
  transition: fill .16s ease, stroke .16s ease, stroke-width .16s ease;
}
.tru-network-node--deity circle,
.tru-network-node--myth circle,
.tru-network-node--default circle {
  fill: rgba(181, 106, 42, .74);
  stroke-width: 2;
}
.tru-network-node--concept circle {
  fill: rgba(83, 107, 63, .72);
}
.tru-network-node--practice circle {
  fill: rgba(92, 113, 132, .72);
}
.tru-network-node--source circle,
.tru-network-node--tradition circle {
  fill: rgba(113, 93, 72, .66);
}
.tru-network-node text {
  fill: var(--ink);
  font-size: 13px;
  font-weight: 800;
  paint-order: stroke;
  pointer-events: none;
  stroke: #fffefa;
  stroke-linejoin: round;
  stroke-width: 4px;
}
.tru-network-node:hover circle,
.tru-network-node:focus-visible circle {
  fill: var(--elg-amber);
  stroke: var(--ink);
  stroke-width: 2.6;
}
@media (max-width: 620px) {
  .tru-network-controls {
    align-items: flex-start;
    flex-direction: column;
  }
  .tru-network-svg {
    min-height: 460px;
  }
  .tru-network-node text {
    font-size: 14px;
  }
}


/* Trú entity network selection and dragging */
.tru-network-edge.selected,
.tru-network-edge.is-related {
  opacity: .96 !important;
  stroke: var(--elg-amber);
}
.tru-network-edge.is-dimmed {
  opacity: .11 !important;
}
.tru-network-node.selected circle,
.tru-network-node.is-related circle {
  fill: var(--elg-amber);
  stroke: var(--ink);
  stroke-width: 2.8;
}
.tru-network-node.selected text,
.tru-network-node.is-related text {
  fill: var(--ink);
  stroke: #fff3d8;
}
.tru-network-node.is-dimmed {
  opacity: .33;
}
.tru-network-node.is-dragging {
  cursor: grabbing;
}
.tru-network-node text {
  user-select: none;
}


/* Trú local admin entity review */
.tru-admin-review code {
  color: var(--muted);
  font-size: .84rem;
}
.tru-admin-table-wrap {
  overflow-x: auto;
}
.tru-admin-table {
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 1120px;
  width: 100%;
}
.tru-admin-table th,
.tru-admin-table td {
  border-bottom: 1px solid rgba(42, 38, 33, .16);
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
}
.tru-admin-table th {
  color: var(--ink);
  font-weight: 900;
}
.tru-admin-table td {
  color: var(--muted);
}
.tru-admin-table td:first-child,
.tru-admin-table td:nth-child(2),
.tru-admin-table td:nth-child(3),
.tru-admin-table td:nth-child(4),
.tru-admin-table td:nth-child(5) {
  color: var(--ink);
}
