/* ============================================================
   AURELANE — content pages (Privacy, Terms, FAQ)
   Clean, editorial, no globe. Matches main site type system.
   ============================================================ */

/* Static cream backdrop — no globe canvas on these pages */
body.content-page {
  background-color: #f5f7fa;
  color: #1a2531;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body.content-page #world { display: none; }

/* Reuse nav from style.css but ensure visible against cream */
body.content-page .nav {
  mix-blend-mode: normal;
  background: rgba(245, 247, 250, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 37, 49, 0.06);
}
body.content-page .nav .brand,
body.content-page .nav .nav-links a {
  color: #1a2531;
}
body.content-page .nav .nav-links a:hover { color: var(--navy); }
body.content-page .nav .nav-links a[aria-current="page"] { color: var(--navy); }

/* ============================================================
   CONTENT HEADER
   ============================================================ */
.content-header {
  padding: clamp(9rem, 16vh, 13rem) 0 clamp(2.5rem, 5vh, 4rem);
  border-bottom: 1px solid rgba(26, 37, 49, 0.08);
}
.content-header .wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.content-eyebrow {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.content-title {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: #0e1822;
  margin-bottom: 1.25rem;
}
.content-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
  color: #4a5b6f;
  max-width: 640px;
}
.content-meta {
  margin-top: 2rem;
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b7d92;
}

/* ============================================================
   CONTENT BODY (Privacy / Terms long-form)
   ============================================================ */
.content-body {
  padding: clamp(3rem, 6vh, 5rem) 0 clamp(5rem, 10vh, 8rem);
}
.content-body .wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 820px) {
  .content-body .wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* Sticky table of contents */
.content-toc {
  position: sticky;
  top: 6rem;
  align-self: start;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.content-toc-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: #6b7d92;
  margin-bottom: 1rem;
  display: block;
}
.content-toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  counter-reset: toc;
}
.content-toc li {
  counter-increment: toc;
  display: flex;
  gap: 0.6rem;
}
.content-toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: #a4b3c4;
  font-size: 0.68rem;
}
.content-toc a {
  color: #4a5b6f;
  text-decoration: none;
  transition: color 200ms ease;
  font-weight: 300;
}
.content-toc a:hover { color: var(--navy); }
@media (max-width: 820px) {
  .content-toc { position: static; padding-bottom: 1rem; border-bottom: 1px solid rgba(26,37,49,0.08); }
}

.content-prose {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.78;
  color: #2a3a4d;
}
.content-prose section { margin-bottom: 3.5rem; scroll-margin-top: 5rem; }
.content-prose section:last-child { margin-bottom: 0; }
.content-prose h2 {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.002em;
  color: #0e1822;
  margin-bottom: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(26, 37, 49, 0.08);
}
.content-prose h3 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #1a2531;
  margin: 1.8rem 0 0.6rem;
}
.content-prose p { margin-bottom: 1.15rem; }
.content-prose p:last-child { margin-bottom: 0; }
.content-prose ul {
  margin: 0.8rem 0 1.4rem;
  padding-left: 1.25rem;
}
.content-prose li {
  margin-bottom: 0.55rem;
  list-style: none;
  position: relative;
  padding-left: 1.1rem;
}
.content-prose li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--navy);
  opacity: 0.6;
}
.content-prose a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 98, 140, 0.3);
  transition: border-color 200ms ease, color 200ms ease;
}
.content-prose a:hover { color: var(--navy-light); border-bottom-color: var(--navy-light); }
.content-prose strong { font-weight: 500; color: #0e1822; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-intro {
  padding: clamp(3rem, 6vh, 4.5rem) 0 clamp(1rem, 2vh, 1.5rem);
}
.faq-intro .wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.faq-intro p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5b6f;
  max-width: 720px;
}

.faq-section {
  padding: clamp(2rem, 4vh, 3rem) 0 clamp(5rem, 10vh, 8rem);
}
.faq-section .wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.faq-group {
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(26, 37, 49, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(26, 37, 49, 0.08);
}
.faq-item details { padding: 1.5rem 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.4;
  color: #0e1822;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--navy); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  margin-top: 0.4rem;
  transition: transform 300ms var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  left: 50%;
  top: 50%;
}
.faq-icon::before {
  width: 14px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1px; height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 300ms var(--ease);
}
.faq-item details[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-answer {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.78;
  color: #2a3a4d;
  max-width: 760px;
  animation: faq-fade 400ms var(--ease);
}
.faq-answer p { margin-bottom: 0.9rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 0.6rem 0 1rem; padding-left: 1.1rem; }
.faq-answer li {
  list-style: none;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
}
.faq-answer li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--navy);
  opacity: 0.6;
}
.faq-answer a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 98, 140, 0.3);
}
.faq-answer a:hover { color: var(--navy-light); }

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA block at bottom of content pages */
.content-cta {
  border-top: 1px solid rgba(26, 37, 49, 0.08);
  padding: clamp(3rem, 6vh, 5rem) 0;
  text-align: center;
}
.content-cta .wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.content-cta h3 {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  color: #0e1822;
  margin-bottom: 1rem;
}
.content-cta p {
  font-family: var(--font-body);
  color: #4a5b6f;
  margin-bottom: 1.75rem;
}
.content-cta-link {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--navy);
  transition: color 200ms ease, border-color 200ms ease;
}
.content-cta-link:hover { color: var(--navy-light); border-bottom-color: var(--navy-light); }

/* ============================================================
   AUDIENCE PAGES (Expand / Source) — service grid + sections
   ============================================================ */
/* ----- AUDIENCE PAGE INTRO (uniform sans, lead in navy) ----- */
.audience-intro {
  padding: clamp(2.5rem, 5vh, 4rem) 0 clamp(1rem, 2vh, 2rem);
  border-top: 1px solid rgba(26, 37, 49, 0.08);
}
.audience-intro .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.audience-intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 820px) {
  .audience-intro-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.audience-intro-lead {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 1.15vw, 1.075rem);
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--navy);
  margin: 0;
  max-width: 22em;
}
.audience-intro-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.05vw, 1rem);
  line-height: 1.75;
  color: #3a4a5e;
  margin: 0;
  max-width: 36em;
}

/* ----- SERVICES SECTION HEAD ----- */
.services-section {
  padding: clamp(2.5rem, 4.5vh, 4rem) 0 clamp(4rem, 8vh, 6rem);
}
.services-section .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.services-section-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  border-top: 1px solid rgba(26, 37, 49, 0.12);
  padding-top: clamp(2rem, 4vh, 3rem);
  padding-bottom: clamp(1.5rem, 3vh, 2.25rem);
}
.services-section-rule {
  width: 100%;
  height: 1px;
  background: rgba(26, 37, 49, 0.12);
}
@media (max-width: 820px) {
  .services-section-rule { display: none; }
}
@media (max-width: 820px) {
  .services-section-head { grid-template-columns: 1fr; gap: 0.75rem; padding-top: 1.5rem; padding-bottom: 1.25rem; }
}
.services-eyebrow {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.services-section-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.002em;
  color: var(--navy);
  margin: 0;
  max-width: 36em;
}

/* ----- SERVICES DIRECTORY (corporate spec-sheet rows) ----- */
.services-directory {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(26, 37, 49, 0.18);
}
.service-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(1.75rem, 3.5vh, 2.5rem) 0;
  border-bottom: 1px solid rgba(26, 37, 49, 0.08);
  transition: background 240ms var(--ease);
}
.service-row:hover { background: rgba(12, 40, 69, 0.015); }
@media (max-width: 820px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
}
.service-row-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: clamp(0.9rem, 1.5vw, 1.5rem);
}
.service-num {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--navy);
  opacity: 0.55;
  font-feature-settings: "tnum" 1;
  padding-top: 0.25rem;
}
.service-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.service-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.93rem, 1vw, 0.98rem);
  line-height: 1.72;
  color: #3a4a5e;
  margin: 0;
  max-width: 38em;
}
.service-body strong { color: var(--navy); font-weight: 500; }


/* Banner CTA between sections on audience pages */
.audience-banner {
  border-top: 1px solid rgba(26, 37, 49, 0.08);
  border-bottom: 1px solid rgba(26, 37, 49, 0.08);
  padding: clamp(3rem, 6vh, 5rem) 0;
  background: linear-gradient(180deg, rgba(45, 98, 140, 0.04), rgba(45, 98, 140, 0));
}
.audience-banner .wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 820px) {
  .audience-banner .wrap { grid-template-columns: 1fr; gap: 1.25rem; }
}
.audience-banner h3 {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: #0e1822;
}
.audience-banner-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  .audience-banner-actions { justify-content: flex-start; }
}
.audience-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--navy);
  transition: color 200ms ease, border-color 200ms ease;
}
.audience-link:hover { color: var(--navy-light); border-bottom-color: var(--navy-light); }

/* Force footer to look clean on cream pages */
body.content-page .footer { background: transparent; border-top: 1px solid rgba(26,37,49,0.08); }
body.content-page .footer .footer-col a,
body.content-page .footer .footer-col p,
body.content-page .footer .footer-head { color: #1a2531; }
body.content-page .footer .footer-line { color: #6b7d92; }
body.content-page .footer .footer-line a { color: var(--navy); }
body.content-page .footer .footer-copy { color: #6b7d92; }
body.content-page .footer-rule { border-top: 1px solid rgba(26,37,49,0.08); }
body.content-page .footer .brand,
body.content-page .footer .brand-mark { color: #1a2531; }

/* ====== AUDIENCE PAGE HERO (Expand · Source) — 50/50 split with image ====== */
body.content-page .audience-hero { padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(40px, 6vw, 72px); }
.audience-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.audience-hero-copy { min-width: 0; }
.audience-hero-copy .content-title { margin-top: 0.5rem; }
.audience-hero-copy .content-sub { max-width: 32em; }
.audience-hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: #e6eef5;
  box-shadow: 0 30px 60px -30px rgba(12, 40, 69, 0.18);
}
.audience-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
@media (max-width: 900px) {
  .audience-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .audience-hero-media { order: -1; aspect-ratio: 4 / 3; }
}

/* ====== RESTORE SYSTEM CURSOR ON CONTENT PAGES ======
   style.css sets cursor:none for the homepage custom-cursor effect.
   Content pages (Expand, Source, FAQ, Privacy, Terms) don't render
   the custom cursor JS, so the system cursor must be restored. */
body.content-page,
body.content-page * { cursor: auto !important; }
body.content-page a,
body.content-page button,
body.content-page .audience-link,
body.content-page summary,
body.content-page [role="button"] { cursor: pointer !important; }
body.content-page input,
body.content-page textarea { cursor: text !important; }

/* ============================================================
   NEWS INDEX  (news.html)
   ============================================================ */
.news-header {
  /* Inherits .content-header but with wider wrap to match list */
}
.news-header .wrap { max-width: 1180px; }

.news-index { padding: clamp(2.5rem, 5vh, 4.5rem) 0 clamp(4rem, 8vh, 6rem); }
.news-index .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.news-list {
  border-top: 1px solid rgba(26, 37, 49, 0.14);
  display: flex;
  flex-direction: column;
}

.news-row {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr 1.5rem;
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid rgba(26, 37, 49, 0.12);
  text-decoration: none;
  color: inherit;
  transition: background-color 200ms var(--ease), padding-left 220ms var(--ease);
}
.news-row:hover {
  background-color: rgba(12, 40, 69, 0.025);
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.news-row-head {
  display: flex;
  align-items: baseline;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  min-width: 0;
}
.news-num {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: #6b7d92;
  flex: 0 0 auto;
  line-height: 1.4;
}
.news-row-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.news-cat {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
}
.news-date {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7d92;
}
.news-row-title {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.3;
  color: #0e1822;
  margin: 0;
  letter-spacing: -0.003em;
}
.news-row-arrow {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: 1.2rem;
  color: var(--navy);
  align-self: center;
  justify-self: end;
  transform: translateX(0);
  transition: transform 220ms var(--ease);
}
.news-row:hover .news-row-arrow { transform: translateX(0.4rem); }

@media (max-width: 820px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.6rem 0;
  }
  .news-row-arrow { display: none; }
  .news-row:hover { padding-left: 0; padding-right: 0; }
}

/* ============================================================
   NEWS POST PAGE (news/<slug>.html)
   ============================================================ */
.news-post-page main { background: transparent; }

.news-post-header {
  padding: clamp(8.5rem, 15vh, 12rem) 0 clamp(2.5rem, 5vh, 4rem);
  border-bottom: 1px solid rgba(26, 37, 49, 0.08);
}
.news-post-header .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.news-post-back {
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b7d92;
  margin-bottom: 2rem;
}
.news-post-back a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 125, 146, 0.4);
  padding-bottom: 0.2rem;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.news-post-back a:hover { color: var(--navy); border-bottom-color: var(--navy); }

.news-post-meta {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.news-post-title {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: #0e1822;
  margin: 0;
  max-width: 22ch;
}
@media (max-width: 820px) {
  .news-post-title { max-width: none; }
}

.news-post-body {
  padding: clamp(3rem, 6vh, 5rem) 0 clamp(3rem, 6vh, 5rem);
}
.news-post-body .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.news-post-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .news-post-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.news-post-aside {
  position: sticky;
  top: 6.5rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(26, 37, 49, 0.18);
}
@media (max-width: 900px) {
  .news-post-aside { position: static; }
}
.aside-label {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 1.4rem 0 1rem;
}
.aside-body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a5b6f;
  margin: 0;
}

.news-post-prose {
  font-family: var(--font-body);
  min-width: 0;
}
.news-post-prose p {
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.78;
  color: #2a3a4d;
  margin: 0 0 1.4rem;
}
.news-post-prose p:first-of-type {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  color: #1f2c3d;
}
.prose-h2 {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 2.6rem 0 1.1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(26, 37, 49, 0.12);
}

.inline-cite {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 40, 69, 0.35);
  padding-bottom: 0.05rem;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.inline-cite:hover {
  color: var(--navy-light, #4f7396);
  border-bottom-color: var(--navy-light, #4f7396);
}

.source-list {
  list-style: decimal;
  padding-left: 1.3rem;
  margin: 0;
}
.source-list li {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #4a5b6f;
  margin: 0 0 0.7rem;
}
.source-link {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 40, 69, 0.25);
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.source-link:hover {
  color: var(--navy-light, #4f7396);
  border-bottom-color: var(--navy-light, #4f7396);
}

/* Prev / Next post nav */
.post-nav {
  border-top: 1px solid rgba(26, 37, 49, 0.12);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.post-nav .wrap.post-nav-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 720px) {
  .post-nav .wrap.post-nav-grid { grid-template-columns: 1fr; }
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(26, 37, 49, 0.14);
  transition: color 180ms var(--ease);
}
.post-nav-link.next { text-align: right; align-items: flex-end; }
.post-nav-link:hover { color: var(--navy); }
.post-nav-link:hover .post-nav-title { color: var(--navy); }
.post-nav-label {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b7d92;
}
.post-nav-title {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.4;
  color: #0e1822;
  transition: color 180ms var(--ease);
}
