/* ─────────────────────────────────────────
   THE LEDGER — main.css
   ───────────────────────────────────────── */

:root {
  --ink:        #0c0c0a;
  --ink-soft:   #2a2a26;
  --ink-muted:  #6e6e64;
  --rule:       #d8d3c8;
  --rule-light: #edeae3;
  --cream:      #faf8f2;
  --paper:      #f3f0e8;
  --white:      #ffffff;

  /* Pillar colours */
  --agri:       #1a5c36;
  --banking:    #1a3a5c;
  --econ:       #7a2020;
  --data:       #4a3270;
  --leadership: #7a5a10;
  --tools:      #1a4a4a;
  --gold:       #e8c96a;

  /* Nav colours — warm olive replaces near-black */
  --nav-bg:         #2c3320;   /* dark olive green */
  --nav-border:     #3d4a2a;   /* slightly lighter olive for dividers */
  --nav-item:       #9aaa7a;   /* muted sage — readable, not washed out */
  --nav-item-hover: #e8e8d8;   /* warm off-white on hover */
  --nav-active:     #f0ecd8;   /* cream on active */

  /* Utility bar — slightly warmer dark */
  --util-bg:    #1a1e12;

  --max-width: 1200px;
  --gutter:    32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink-muted); }

/* ── UTILITY BAR ── */
.utility-bar {
  background: var(--util-bg);
  color: #7a8a60;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  padding: 6px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ub-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.ub-mpc { color: var(--gold); display: flex; align-items: center; gap: 6px; }
.ub-mpc::before { content: '●'; animation: blink 2s infinite; }
.ub-right a { color: #7a8a60; margin-left: 16px; transition: color .2s; }
.ub-right a:hover { color: var(--cream); }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* ── MASTHEAD ── */
.masthead {
  background: var(--cream);
  border-bottom: 3px double var(--ink);
  position: sticky;
  top: 0;
  z-index: 200;
}
.masthead-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}
.mh-left {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.mh-logo { text-align: center; }
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -1px;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 7.5px;
  letter-spacing: 5px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 3px;
  text-transform: uppercase;
}
.mh-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.mh-btn {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}
.mh-btn:hover, .mh-btn.primary { background: var(--ink); color: var(--cream); }
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  padding: 6px 10px;
  font-size: 16px;
  cursor: pointer;
  color: var(--ink);
}

/* ── SECTION NAV ── */
.section-nav { background: var(--nav-bg); overflow-x: auto; }
.section-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: stretch;
}
.snav-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nav-item);
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all .2s;
  border-right: 1px solid var(--nav-border);
  display: block;
}
.snav-item:hover { color: var(--nav-item-hover); }
.snav-item.active { color: var(--nav-active); border-bottom-color: var(--gold); }
.snav-item[data-pillar="agri"].active   { color: #6de0a0; border-bottom-color: #6de0a0; }
.snav-item[data-pillar="banking"].active{ color: #7ec8e3; border-bottom-color: #7ec8e3; }
.snav-item[data-pillar="econ"].active   { color: #e06c5e; border-bottom-color: #e06c5e; }
.snav-item[data-pillar="data"].active   { color: #b794f4; border-bottom-color: #b794f4; }
.snav-item[data-pillar="leadership"].active { color: var(--gold); border-bottom-color: var(--gold); }
.snav-item[data-pillar="tools"].active  { color: #81e6d9; border-bottom-color: #81e6d9; }
.snav-divider { flex: 1; }
.snav-dim { color: var(--nav-border) !important; }

/* ── LIVE TICKER ── */
.ticker-wrap {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  height: 38px;
}
.ticker-label {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--nav-bg);
  color: var(--nav-item-hover);
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 14px;
  display: flex;
  align-items: center;
  z-index: 2;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  animation: ticker 65s linear infinite;
  padding-left: 130px;
  height: 100%;
  align-items: center;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tick-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  border-right: 1px solid var(--rule);
  white-space: nowrap;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  height: 100%;
}
.tick-name { color: var(--ink-muted); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; }
.tick-val  { color: var(--ink); font-weight: 500; }
.tick-chg  { font-size: 9.5px; }
.tick-up   { color: var(--agri); }
.tick-dn   { color: var(--econ); }
.tick-sep  { color: var(--rule); font-size: 18px; }

/* ── LAYOUT HELPERS ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sec-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.sec-label h2 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}
.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── PILLS ── */
.pill {
  display: inline-block;
  padding: 3px 9px;
  font-size: 8.5px;
  letter-spacing: 2px;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  color: #fff;
}
.pill-agri       { background: var(--agri); }
.pill-banking    { background: var(--banking); }
.pill-econ       { background: var(--econ); }
.pill-data       { background: var(--data); }
.pill-leadership { background: var(--leadership); }
.pill-tools      { background: var(--tools); }

/* ── AD SLOT ── */
.ad-slot {
  background: var(--paper);
  border: 1px dashed var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 100%;
}
.ad-slot.lb { height: 90px; margin: 36px 0; }

/* ── BROADSHEET HERO (with image) ── */
.broadsheet-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-bottom: 2px solid var(--ink);
}
.bh-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
}

/* Lead article */
.bh-lead { padding: 0 36px 40px 0; border-right: 1px solid var(--rule); }

.bh-image-wrap {
  position: relative;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--paper);
  aspect-ratio: 16/7;
}
.bh-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.bh-image-wrap:hover .bh-image { transform: scale(1.02); }
.bh-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: rgba(255,255,255,.75);
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  padding: 20px 12px 8px;
}
.bh-image-wrap.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px dashed var(--rule);
}
.bh-image-wrap.no-image::after {
  content: 'Add image to /images/hero-placeholder.jpg';
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.bh-image-wrap.no-image .bh-image { display: none; }
.bh-image-wrap.no-image .bh-image-caption { display: none; }

.bh-content { padding-top: 4px; }
.bh-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--agri);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bh-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--agri);
  display: inline-block;
}
.bh-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: var(--ink);
}
.bh-headline em { font-style: italic; color: var(--ink-muted); }
.bh-deck {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 560px;
}
.bh-byline {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bh-dot { color: var(--rule); }
.bh-read-btn {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--agri);
  color: #fff;
  transition: background .2s;
}
.bh-read-btn:hover { background: #14492b; }

/* Sidebar stories */
.bh-sidebar { padding: 0 0 0 28px; display: flex; flex-direction: column; }
.bhs-label {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 20px 0 14px;
  border-bottom: 1px solid var(--rule);
}
.bhs-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-light);
  cursor: pointer;
  transition: opacity .2s;
  color: var(--ink);
}
.bhs-item:last-child { border-bottom: none; }
.bhs-item:hover { opacity: .75; }
.bhs-item-img-wrap {
  width: 72px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--paper);
}
.bhs-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bhs-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bhs-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

/* ── PILLAR FEED ── */
.pillar-feed {
  border-bottom: 1px solid var(--rule);
}
.pillar-feed-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.pf-col {
  padding: 28px 18px;
  border-right: 1px solid var(--rule);
}
.pf-col:first-child { padding-left: 0; }
.pf-col:last-child  { border-right: none; padding-right: 0; }
.pf-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid currentColor;
  margin-bottom: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity .2s;
}
.pf-header:hover { opacity: .7; }
.pf-agri       { color: var(--agri); }
.pf-banking    { color: var(--banking); }
.pf-econ       { color: var(--econ); }
.pf-data       { color: var(--data); }
.pf-leadership { color: var(--leadership); }
.pf-story {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-light);
}
.pf-story:last-child { border-bottom: none; margin-bottom: 0; }
.pf-story h4 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.pf-story h4 a { color: var(--ink); transition: color .2s; }
.pf-story h4 a:hover { color: var(--agri); }
.pf-meta {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  color: var(--ink-muted);
  letter-spacing: 1px;
}

/* ── TOOLS SECTION ── */
.tools-section { padding: 48px 0; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.tool-card {
  background: var(--cream);
  padding: 32px 28px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  display: block;
  color: var(--ink);
}
.tool-card:hover {
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  transform: translateY(-2px);
  z-index: 2;
}
.tc-status {
  position: absolute;
  top: 18px; right: 18px;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}
.tc-live { background: #dcfce7; color: #166534; }
.tc-soon { background: #f3f4f6; color: #6b7280; }
.tc-icon { font-size: 26px; margin-bottom: 18px; display: block; }
.tool-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--ink);
}
.tool-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.tc-action {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tools);
}
.tc-action::after { content: ' →'; }

/* ── NEWSLETTER ── */
.nl-bar { background: var(--agri); padding: 40px var(--gutter); }
.nl-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nl-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.nl-text p { font-size: 13px; color: rgba(255,255,255,.65); }
.nl-form { display: flex; min-width: 360px; }
.nl-form input {
  flex: 1;
  padding: 12px 15px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  letter-spacing: 1px;
}
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form button {
  padding: 12px 22px;
  background: var(--cream);
  color: var(--ink);
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.nl-form button:hover { background: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: #555;
  padding: 56px var(--gutter) 28px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a16;
  margin-bottom: 24px;
}
.footer-logo { color: var(--cream); font-size: 24px; }
.fg-brand p  { font-size: 12.5px; color: #3a3a36; line-height: 1.7; margin-top: 12px; max-width: 260px; }
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2a2a26;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 12.5px;
  color: #3a3a36;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #ccc; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: #2a2a26;
  letter-spacing: 1px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── ARTICLE PAGE STYLES ── */
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
  display: block;
}
.article-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px var(--gutter);
}
.article-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.article-deck {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 24px;
  border-left: 3px solid var(--agri);
  padding-left: 20px;
}
.article-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.article-body p    { margin-bottom: 1.5em; }
.article-body h2   { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin: 2em 0 .75em; }
.article-body h3   { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; margin: 1.5em 0 .5em; }

.the-brief {
  background: var(--paper);
  border-left: 3px solid var(--agri);
  padding: 20px 24px;
  margin-bottom: 36px;
  font-family: 'DM Mono', monospace;
}
.the-brief-label {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--agri);
  margin-bottom: 12px;
}
.the-brief ul { list-style: none; padding: 0; }
.the-brief li {
  font-size: 12px;
  color: var(--ink-soft);
  padding: 5px 0;
  border-bottom: 1px solid var(--rule-light);
  display: flex;
  gap: 10px;
  letter-spacing: .5px;
}
.the-brief li::before { content: '→'; color: var(--agri); flex-shrink: 0; }
.the-brief li:last-child { border-bottom: none; }

/* ── ARTICLE CARD GRID ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-bottom: 2px;
}
.article-card {
  background: var(--cream);
  padding: 0;
  cursor: pointer;
  transition: background .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.article-card:hover { background: var(--white); }
.ac-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper);
}
.ac-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.article-card:hover .ac-image { transform: scale(1.03); }
.ac-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.ac-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.ac-bar.agri       { background: var(--agri); }
.ac-bar.banking    { background: var(--banking); }
.ac-bar.econ       { background: var(--econ); }
.ac-bar.data       { background: var(--data); }
.ac-bar.leadership { background: var(--leadership); }
.ac-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.ac-kicker.agri       { color: var(--agri); }
.ac-kicker.banking    { color: var(--banking); }
.ac-kicker.econ       { color: var(--econ); }
.ac-kicker.data       { color: var(--data); }
.ac-kicker.leadership { color: var(--leadership); }
.article-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--ink);
}
.article-card p {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.ac-footer {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: #bbb;
  letter-spacing: 1px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}
.ac-read {
  background: var(--paper);
  padding: 2px 7px;
  color: var(--ink-muted);
}

/* ── PULLQUOTE ── */
.pullquote {
  border-left: 3px solid var(--agri);
  padding: 18px 24px;
  margin: 32px 0;
  background: var(--paper);
}
.pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ── PAGE HEADER (pillar pages) ── */
.page-header {
  padding: 48px var(--gutter) 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header-bar {
  height: 5px;
  margin-bottom: 32px;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}
.article-hero{
width:100%;
position:relative;
margin-bottom:40px;
}

.article-hero-image img{
width:100%;
height:420px;
object-fit:cover;
}

.article-hero-content{
max-width:900px;
margin:auto;
margin-top:-120px;
background:white;
padding:40px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.article-title{
font-family:'Playfair Display',serif;
font-size:52px;
margin-bottom:8px;
}

.article-subtitle{
font-family:'Lora',serif;
font-style:italic;
font-size:28px;
margin-bottom:20px;
}

.article-meta{
font-size:13px;
color:#666;
letter-spacing:1px;
}

.article-body{
max-width:760px;
margin:auto;
font-family:'Lora',serif;
font-size:18px;
line-height:1.8;
}

.article-body h2{
font-family:'Playfair Display',serif;
margin-top:40px;
}

.ledger-insight{
margin-top:40px;
padding:24px;
background:#f5f5f3;
border-left:4px solid #1f3d2b;
}


.article-hero{
width:100%;
position:relative;
margin-bottom:40px;
}

.article-hero-image img{
width:100%;
height:420px;
object-fit:cover;
}

.article-hero-content{
max-width:900px;
margin:auto;
margin-top:-120px;
background:white;
padding:40px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.article-title{
font-family:'Playfair Display',serif;
font-size:52px;
margin-bottom:8px;
}

.article-subtitle{
font-family:'Lora',serif;
font-style:italic;
font-size:28px;
margin-bottom:20px;
}

.article-meta{
font-size:13px;
color:#666;
letter-spacing:1px;
}

.article-body{
max-width:760px;
margin:auto;
font-family:'Lora',serif;
font-size:18px;
line-height:1.8;
}

.article-body h2{
font-family:'Playfair Display',serif;
margin-top:40px;
}

.ledger-insight{
margin-top:40px;
padding:24px;
background:#f5f5f3;
border-left:4px solid #1f3d2b;
}