/* ============================================================
   Moda v. Aghazarian, et al. — Case Site Shared Stylesheet
   Case No. 25STCV19732, LASC
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1f2a2e;
  --navy-deep: #141d20;
  --navy-light: #2d4148;
  --gold: #7d6c47;
  --gold-light: #a8916a;
  --paper: #f4f3ef;
  --paper-alt: #eceae4;
  --ink: #1a1a1a;
  --muted: #6e6d6d;
  --line: #d5d0c4;
  --white: #ffffff;
  --danger-bg: #fff6e5;
  --danger-border: #a8916a;
  --shadow: 0 2px 10px rgba(20,29,32,0.10);
  --shadow-lg: 0 8px 30px rgba(20,29,32,0.18);
  --radius: 8px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  --hero-video: url('https://metropolislosangeles.com/wp-content/uploads/2026/02/video2.mp4');
  --hero-img: url('https://metropolislosangeles.com/wp-content/uploads/2026/02/THEA-Exterior-UNRETOUCHED-05.jpg');
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--navy-deep);
  color: #b9c6da;
  font-family: var(--sans);
  font-size: 0.76rem;
  text-align: center;
  padding: 0.35rem 1rem;
  letter-spacing: 0.03em;
}

/* ---------- Header ---------- */
/* ---- Landing hero splash (index.html only) ---- */
.landing-splash {
  position: relative;
  width: 100%;
  max-height: 88vh;
  overflow: hidden;
  background: #060b14;
  display: flex;
  align-items: stretch;
}
.landing-splash img.splash-photo {
  width: 100%;
  max-height: 88vh;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  opacity: 0.88;
}
.landing-splash .splash-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,11,20,0.18) 0%, rgba(6,11,20,0.0) 35%, rgba(6,11,20,0.72) 80%, rgba(6,11,20,0.94) 100%);
  pointer-events: none;
}
.landing-splash .splash-caption {
  position: absolute;
  bottom: 2.4rem;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 1.5rem;
}
.landing-splash .splash-caption .sc-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,168,88,0.45);
  padding: 0.28em 0.9em;
  margin-bottom: 0.7rem;
}
.landing-splash .splash-caption h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f4ecda;
  margin: 0;
  line-height: 1.05;
  text-transform: uppercase;
}
.landing-splash .splash-caption h2 span {
  display: block;
  color: var(--gold);
  font-size: 0.55em;
  letter-spacing: 0.18em;
  font-weight: 400;
  margin-top: 0.25em;
}
/* ----------------------------------------------- */

/* pariser-panel CSS is at the bottom of this file — see OC/Pariser redesign block */

header.site-header {
  position: relative;
  color: #f2ede2;
  padding: 0;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Video background */
header.site-header .header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
/* Fallback image if video unavailable */
header.site-header .header-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}
/* Dark overlay gradient */
header.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, var(--navy-deep) 0%, rgba(20,29,32,0.82) 60%, rgba(20,29,32,0.95) 100%);
  z-index: 1;
}
header.site-header .header-content {
  position: relative;
  z-index: 2;
  padding: 2.4rem 1.5rem 1.8rem;
}
header.site-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold-light);
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
header.site-header h1 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  font-family: var(--sans);
}
header.site-header .case-no {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(205,214,228,0.85);
  letter-spacing: 0.02em;
}
header.site-header .case-no span {
  display: inline-block;
  margin: 0 0.6rem;
}

/* ---------- Nav ---------- */
nav.toc {
  background: var(--navy-light);
  padding: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.82rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow);
  overflow-x: auto;
  white-space: nowrap;
}
nav.toc .toc-inner {
  display: inline-flex;
  padding: 0 0.5rem;
}
nav.toc a {
  color: #eef1f6;
  text-decoration: none;
  padding: 0.85rem 0.9rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, background 0.15s;
  display: inline-block;
}
nav.toc a:hover, nav.toc a.active {
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,0.04);
}

/* ---------- Layout ---------- */
main {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
main.wide { max-width: 1080px; }

section {
  margin-top: 2.8rem;
  padding-top: 0.4rem;
  scroll-margin-top: 60px;
}
section h2 {
  font-size: 1.55rem;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.45rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
}
section h3 {
  font-size: 1.18rem;
  color: var(--navy-light);
  margin-top: 1.9rem;
  font-weight: 700;
}
p { margin: 0.9rem 0; }
.lede { font-size: 1.08rem; color: var(--muted); }

/* ---------- Page title block (sub-pages) ---------- */
.page-title-block {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem 0.5rem;
}
.breadcrumb {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.breadcrumb a { color: var(--navy-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-title-block h1 {
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  color: var(--navy);
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.page-subtitle { color: var(--muted); font-size: 1rem; margin-bottom: 1rem; }

/* ---------- Notice / disclaimer banner ---------- */
.notice-banner {
  max-width: 920px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.3rem;
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.86rem;
  color: #5c4514;
}
.notice-banner strong { color: #3d2e0d; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 680px) {
  .card-grid, .card-grid.cols-3 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.card h4 { margin: 0 0 0.4rem; color: var(--navy); font-size: 1rem; }
.card .role, .card .kicker {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: bold;
}
.card a.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ---------- Nav tile grid (index page directory) ---------- */
.nav-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 1.5rem 0;
}
@media (max-width: 780px) { .nav-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .nav-tiles { grid-template-columns: 1fr; } }
.nav-tile {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.15s, transform 0.15s;
  color: inherit;
}
.nav-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.nav-tile .tile-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: bold;
}
.nav-tile h3 {
  margin: 0.3rem 0 0.4rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}
.nav-tile p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Timeline table ---------- */
table.timeline {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.9rem;
  margin: 1rem 0;
}
table.timeline th {
  text-align: left;
  background: var(--navy);
  color: #f2ede2;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
}
table.timeline td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.timeline tr:nth-child(even) td { background: var(--paper-alt); }
.date-cell { white-space: nowrap; font-weight: bold; color: var(--navy); }

/* ---------- Generic data table ---------- */
table.data {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.88rem;
  margin: 1rem 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
table.data th {
  background: var(--navy);
  color: #f2ede2;
  text-align: left;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
}
table.data td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--line);
}
table.data tr:last-child td { border-bottom: none; }
table.data tr:nth-child(even) td { background: var(--paper-alt); }

/* ---------- Claim / cause-of-action list ---------- */
.claim-list { list-style: none; padding: 0; margin: 0; }
.claim-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow);
}
.claim-list .claim-num {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: bold;
}
.claim-list .claim-title { font-weight: bold; color: var(--navy); margin: 0.25rem 0 0.35rem; font-size: 1.05rem; }
.claim-list .claim-against { font-size: 0.85rem; color: var(--muted); font-style: italic; font-family: var(--sans); }

/* ---------- Allegation / quote styling ---------- */
.allegation { font-style: italic; }
.allegation::before { content: "Alleged: "; font-style: normal; font-weight: bold; color: var(--navy-light); }
.allegation.defense::before { content: "Defense position: "; color: #7a5b00; }

blockquote {
  border-left: 3px solid var(--gold);
  margin: 1rem 0;
  padding: 0.5rem 1.1rem;
  background: var(--white);
  font-size: 0.95rem;
  color: #333;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-family: var(--sans);
  color: var(--muted);
  font-style: normal;
}

/* ---------- Document list ---------- */
.doc-list { list-style: none; padding: 0; }
.doc-list li {
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 0.7rem 0.2rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.doc-list .doc-name { color: var(--ink); }
.doc-list .doc-date { color: var(--muted); white-space: nowrap; font-size: 0.85rem; }

/* ---------- Status pills ---------- */
.status-pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-weight: bold;
}
.status-pending { background: #fff3cd; color: #7a5b00; }
.status-filed { background: #e2f0ff; color: #14508a; }
.status-decided { background: #e4f4e1; color: #1e6b2e; }
.status-denied { background: #fbe1e1; color: #8a1414; }
.status-partial { background: #eee2fb; color: #55148a; }

/* ---------- Two-column "vs" comparison ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.2rem 0;
}
@media (max-width: 680px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.compare-col .compare-head {
  font-family: var(--sans);
  font-weight: bold;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 1rem;
  color: #fff;
}
.compare-col.plaintiff .compare-head { background: var(--navy); }
.compare-col.defense .compare-head { background: #6b4a12; }
.compare-col .compare-body { padding: 1rem 1.1rem; font-size: 0.92rem; }

/* ---------- Pull quote / stat callout ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 680px) { .stat-row { grid-template-columns: 1fr; } }
.stat-box {
  background: var(--navy);
  color: #f2ede2;
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.stat-box .stat-num { font-size: 1.7rem; font-weight: bold; color: var(--gold-light); font-family: var(--sans); }
.stat-box .stat-label { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.3rem; color: #cdd6e4; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: #cdd6e4;
  font-family: var(--sans);
  font-size: 0.82rem;
  text-align: center;
  padding: 2.2rem 1.5rem;
  margin-top: 3rem;
}
footer a { color: var(--gold-light); }
footer .disclaimer {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
}
footer .footer-nav {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1rem;
}
footer .footer-nav a { text-decoration: none; }
footer .footer-nav a:hover { text-decoration: underline; }

/* ───── PARISER PANEL — image-as-background redesign ───── */
.pariser-panel {
  position: relative;
  width: 100%;
  background-color: #04060a;
  background-image: url('pariser-money.jpg');
  background-size: cover;
  background-position: center 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 560px;
}
.pariser-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,6,10,0.35) 0%, rgba(4,6,10,0.20) 35%, rgba(4,6,10,0.90) 80%, rgba(4,6,10,0.97) 100%);
  pointer-events: none;
  z-index: 0;
}
.pariser-panel img.pariser-photo { display: none; }
.pariser-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
  border-top: 2px solid #7d1a12;
  padding: 2.2rem 2rem 3rem;
  text-align: center;
  max-width: 100%;
}
.pariser-caption .p-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8a2218;
  margin-bottom: 0.9rem;
  display: block;
}
.pariser-caption blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-style: italic;
  line-height: 1.6;
  color: #ddd6cc;
  margin: 0 auto 1rem;
  max-width: 680px;
}
.pariser-caption .p-cite {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #3a4050;
  text-transform: uppercase;
  display: block;
}

/* ───── OC FLASH PANEL ───── */
.oc-flash {
  background: #04060a;
  border-top: 4px solid #9c1f14;
  padding: 5rem 1.5rem 5.5rem;
  margin: 0;
  text-align: center;
}
.oc-flash-inner {
  max-width: 920px;
  margin: 0 auto;
}
.oc-flash-badge {
  font-family: var(--sans);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9c1f14;
  display: inline-block;
  border: 1px solid rgba(156,31,20,0.4);
  padding: 0.3rem 1rem;
  margin-bottom: 2rem;
}
.oc-flash-hed {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: normal;
  font-style: italic;
  color: #e0d8cf;
  line-height: 1.08;
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
}
.oc-flash-docket {
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2c3340;
  margin-bottom: 3rem;
}
.oc-flash-quote-block {
  position: relative;
  background: rgba(156,31,20,0.055);
  border: 1px solid rgba(156,31,20,0.22);
  padding: 2.8rem 3rem 2.2rem 4rem;
  margin: 0 0 3.5rem;
  text-align: left;
}
.oc-flash-openquote {
  font-family: var(--serif);
  font-size: 8rem;
  color: rgba(156,31,20,0.45);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  pointer-events: none;
}
.oc-flash-bq {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  font-style: italic;
  line-height: 1.65;
  color: #c8bfb2;
  margin: 0 0 1.2rem;
}
.oc-flash-bq-cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2e3845;
  line-height: 1.8;
}
/* 4-box event chain */
.oc-flash-chain {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
  text-align: left;
}
.oc-fc {
  flex: 1;
  min-width: 170px;
  max-width: 230px;
  background: rgba(255,255,255,0.018);
  border: 1px solid #121820;
  border-right: none;
  padding: 1.3rem 1.1rem;
}
.oc-fc:last-child { border-right: 1px solid #121820; }
.oc-fc-hot {
  border-color: rgba(156,31,20,0.45) !important;
  border-right: 1px solid rgba(156,31,20,0.45) !important;
  background: rgba(156,31,20,0.07);
}
.oc-fc-hot + .oc-fc { border-left: none; }
.oc-fc-date {
  font-family: var(--sans);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a3028;
  margin-bottom: 0.55rem;
}
.oc-fc-hot .oc-fc-date { color: #c0392b; }
.oc-fc-body {
  font-family: var(--serif);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5a6270;
}
.oc-fc-hot .oc-fc-body { color: #7a8490; }
.oc-fc-dkt {
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #242e3a;
  display: block;
  margin-top: 0.6rem;
}

/* ───── OC PARALLEL-CASE CONTEXT PANEL ───── */
.oc-context-panel {
  background: #07090d;
  border-top: 3px solid #7d1a12;
  border-bottom: 2px solid #111418;
  padding: 3.5rem 1.5rem 4rem;
  margin: 0;
}
.oc-context-panel .oc-header {
  max-width: 860px;
  margin: 0 auto 3rem;
  text-align: center;
}
.oc-tag {
  font-family: var(--sans);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7d1a12;
  display: block;
  margin-bottom: 0.9rem;
}
.oc-context-panel h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: normal;
  font-style: italic;
  color: #c9c1b4;
  margin: 0 0 0.6rem;
  line-height: 1.3;
}
.oc-sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: #3a4050;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.oc-timeline {
  max-width: 800px;
  margin: 0 auto;
  border-left: 2px solid #1c2130;
  padding-left: 2.2rem;
}
.oc-event {
  padding: 0.4rem 0 2rem;
  position: relative;
}
.oc-event::before {
  content: '';
  position: absolute;
  left: -2.58rem;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  background: #1c2130;
  border: 2px solid #384050;
  border-radius: 50%;
}
.oc-event-key::before {
  background: #7d1a12;
  border-color: #a02218;
  width: 12px;
  height: 12px;
  left: -2.68rem;
  top: 0.45rem;
}
.oc-date {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #4a5260;
  margin-bottom: 0.45rem;
}
.oc-event-key .oc-date {
  color: #9c2b1f;
}
.oc-desc {
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.72;
  color: #7a8290;
}
.oc-quote {
  font-family: var(--serif);
  font-size: clamp(1.0rem, 2.2vw, 1.22rem);
  font-style: italic;
  line-height: 1.65;
  color: #c9c1b4;
  margin: 1.2rem 0 0.9rem;
  padding-left: 1.3rem;
  border-left: 3px solid #7d1a12;
}
.oc-cite {
  font-family: var(--sans);
  font-size: 0.60rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #2e3540;
  display: block;
  margin-top: 0.6rem;
}

/* ---------- Prev/Next page nav ---------- */
.page-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.88rem;
}
.page-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}
.page-nav a:hover { color: var(--gold); }
.page-nav .dir { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: normal; }
