/* ============================================================
   FedPrise — styles.css
   Minimalist, typography-first, institutional.
   No frameworks. No animations. No gradients.
   ============================================================ */


/* ============================================================
   1. TOKENS / CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Legacy colors (still used by components) */
  --color-bg:          #F3F1EC;
  --color-text:        #4A433D;
  --color-text-soft:   #44403A;
  --color-divider:     #E6E3DD;
  --color-dot:         #4A4A4A;   /* logo dot mark — slightly lighter than wordmark */
  --color-focus:       #1E1E1E;

  /* Accent */
  --color-accent:  #C4A45A;   /* muted antique gold — editorial rule */

  /* Three-layer layout palette */
  --bg-site:       #f7f7f5;   /* off-white site canvas */
  --bg-nav:        #efede7;   /* chrome nav band */
  --bg-paper:      #fbfbfa;   /* paper content surface */
  --border-subtle: #e5e2da;   /* dividers and paper border */
  --text-primary:  #363636;   /* primary text */
  --text-muted:    #6a6a6a;   /* muted metadata */

  /* Typography */
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Layout */
  --max-width:     1140px;
  --gutter:        20px;
  --radius:        6px;

  /* Legacy sizing */
  --container-max:     1040px;
  --text-measure:      66ch;
  --header-height:     72px;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
}


/* ============================================================
   2. RESET / BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;               /* base; rem units scale from this */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  background-color: var(--bg-site);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}

/* Offset anchor targets so sticky header doesn't cover headings */
:target {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

/* Focus ring — visible on keyboard navigation only */
:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove default list styles where nav uses <ul> */
ul[role="list"] {
  list-style: none;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}


/* ============================================================
   4. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-paper);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Logo lockup */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--color-text);
  line-height: 1;
}

.logo-link:hover {
  opacity: 0.75;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-nav a {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.015em;
  padding-block: 0.25rem;
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-text);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hamburger → X when open */
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ============================================================
   5. SECTION DIVIDERS
   ============================================================ */
.section-divider {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  margin: 0;
  width: 100%;
}


/* ============================================================
   6. SECTIONS — SHARED
   ============================================================ */
.section {
  padding-block: var(--space-sm);
}

/* Headings */
h1 {
  font-family: var(--font);
  font-size: clamp(2.1rem, 5vw, 3rem); /* ~34px → ~48px */
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

h2 {
  font-family: var(--font);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem); /* matches hero heading */
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

p {
  font-size: 1rem;       /* 17px */
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 100%;
  margin-bottom: 1.2em;
}

p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */
.section--hero {
  padding-block: var(--space-xl) var(--space-xl);
}

/* Primary hero headline */
.hero-heading {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #1E1E1E;
  margin-bottom: var(--space-md);
  max-width: 100%;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
}

.hero-heading em {
  font-style: italic;
  font-weight: inherit;
}

.hero-heading-sub {
  display: block;
  margin-top: 5px;
  opacity: 0.72;
  font-size: 0.88em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Secondary descriptor line beneath the headline */
.hero-secondary {
  font-size: 1rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 1.2em;
}

.hero-body {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 100%;
}


/* Inline emphasis — warm gray highlight */
.text-emphasis {
  background-color: #EAE6DF;
  padding: 0.1em 0.35em;
  border-radius: 2px;
}


/* ============================================================
   8. CONTACT SECTION
   ============================================================ */
.confidential-note {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  max-width: 100%;
}

.contact-intro {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 100%;
  margin-bottom: var(--space-md);
}

/* Form layout */
.contact-form {
  max-width: 500px;
  margin-top: var(--space-sm);
}

.form-field {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--bg-site);
  border: 1px solid var(--border-subtle);
  border-radius: 0;              /* no pill rounding — keeps it austere */
  padding: 0.6rem 0.75rem;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9A9893;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-text);
}

/* Custom select arrow */
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233A3A3A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Submit button */
.form-actions {
  margin-top: var(--space-sm);
}

.btn-submit {
  font-family: var(--font);
  font-size: 0.94rem;
  letter-spacing: 0.025em;
  color: var(--color-bg);
  background-color: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 0.7rem 1.75rem;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-submit:hover {
  background-color: var(--color-text-soft);
  border-color: var(--color-text-soft);
}

.btn-submit:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

/* Success message */
.form-success {
  margin-top: var(--space-lg);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.form-success p {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 50ch;
  margin-inline: auto;
}

/* Hidden state (native HTML attribute + CSS backup) */
[hidden] {
  display: none !important;
}


/* ============================================================
   9. FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--space-md);
}

.site-footer p {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  text-align: center;
  max-width: none;
  margin-bottom: 0.4rem;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.footer-email {
  color: var(--color-text-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
}

.footer-email:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}


/* ============================================================
   10. PAPER SURFACE — Three-layer layout
   ============================================================ */

/* Content card — sits on top of the site canvas */
.paper {
  max-width: var(--max-width);
  margin: 32px auto 60px;
  padding: 40px var(--gutter);
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

/* Let paper control the outer constraint; inner containers add no extra padding */
.paper .container {
  max-width: 100%;
  padding-inline: 0;
}

/* Muted metadata utility */
.meta {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Firm (homepage) — spacious, declarative */
.paper.firm section {
  margin-bottom: 0;
}

.paper.firm p {
  max-width: 720px;
}

/* Publication (Signals) — denser, scannable */
.paper.publication section {
  margin-bottom: 0;
}

.paper.publication p {
  max-width: 820px;
}


/* ============================================================
   11. CAPITAL SIGNALS SECTION
   ============================================================ */

/* Nav — two-line Capital Signals item */
.nav-link-signals {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  gap: 0.2rem;
  padding-top: 0.6rem;   /* keep the two-line lockup */
  font-weight: 400;      /* match the rest of the nav */
}

.nav-sub {
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  opacity: 0.65;
  font-weight: 400;
}

/* Signals page — reduce top padding, narrow text measure, tighten tagline */
#signals.section {
  padding-top: var(--space-md); /* slightly tighter so it reads as a different page */
}

#signals .container {
  max-width: 880px;
}

#signals h2 {
  margin-bottom: var(--space-xs);
}

/* Publisher attribution — appears above the Capital Signals h2 */
.signals-publisher {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  opacity: 0.75;
  margin-bottom: var(--space-xs);
}

/* Section sub-heading (below Capital Signals h2) */
.section-subhead {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  opacity: 0.85;
  margin-bottom: var(--space-md);
  margin-top: calc(-1 * var(--space-sm));
}

/* Tertiary headings within the section */
.signals-h3 {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

/* Bullet lists */
.signals-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: var(--space-md);
}

.signals-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 0.25em;
}

/* Pricing line */
.signals-price {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.signals-price__value {
  color: var(--color-text);
  font-weight: 700;
}

.signals-price__note {
  font-size: 1rem; /* same size as surrounding copy */
  color: var(--color-text-soft);
}

/* Excerpt block */
.signals-excerpt {
  margin-block: var(--space-md);
  padding: var(--space-md);
  border-left: 2px solid var(--color-accent);
  background-color: var(--bg-site);
}

.signals-excerpt__placeholder {
  font-style: italic;
  color: var(--color-text-soft);
  margin-bottom: 0;
}

/* Request Access text link */
.signals-cta {
  margin-top: var(--space-md);
}

.signals-link {
  font-size: 1rem;
  color: var(--color-text-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
}

.signals-link:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

/* Request Access form block */
.signals-access {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.signals-access .signals-h3 {
  margin-top: 0;
}


/* ============================================================
   11. RESPONSIVE — MOBILE NAV (< 768px)
   ============================================================ */
@media (max-width: 767px) {

  /* Show hamburger, hide inline nav */
  .nav-toggle {
    display: flex;
  }

  /* Nav is absolutely positioned below header */
  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--bg-paper);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-sm) var(--space-md) var(--space-md);
    /* Hidden by default */
    display: none;
  }

  /* JS adds .is-open to toggle visibility */
  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-nav li {
    width: 100%;
  }

  /* Ensure tap targets are at least 44px tall */
  .site-nav a {
    display: block;
    padding-block: 0.75rem;
    font-size: 1.05rem;
    border-bottom: none;
    min-height: 44px;
    line-height: 44px;
    padding-block: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
  }

  /* Paper panel on tablet/mobile */
  .paper {
    margin: 16px var(--gutter) 40px;
    padding: 24px 16px;
    border-radius: var(--radius);
  }

}


/* ============================================================
   11. RESPONSIVE — GENERAL SMALL SCREEN (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  :root {
    --space-xl: 3.5rem;
    --space-lg: 2.5rem;
    --space-md: 1.5rem;
  }

  .container {
    padding-inline: 1.25rem;
  }

  h1 {
    font-size: 2.1rem;           /* ~34px on narrow screens */
  }

  .subhead {
    font-size: 1.05rem;
  }

  /* Full-width button on mobile */
  .btn-submit {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
  }

  .contact-form {
    max-width: 100%;
  }

  /* Section divider edge-to-edge on narrow */
  .section-divider {
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

}


/* ============================================================
   Fedprise Refinement Patch
   Purpose: Fix proportion, hierarchy, and firm vs publication distinction
   ============================================================ */


/* ------------------------------------------------------------
   1. Restore three-layer layout (nav must not match paper)
   ------------------------------------------------------------ */
.site-header {
  background-color: var(--bg-nav);
}


/* ------------------------------------------------------------
   2. Differentiate Homepage (firm) vs Signals (publication)
   ------------------------------------------------------------ */
.paper.firm section {
  margin-bottom: 40px;
}

.paper.publication section {
  margin-bottom: 40px;   /* tighter, memo-like */
}


/* ------------------------------------------------------------
   3. Fix hero headline proportion and alignment
   ------------------------------------------------------------ */
.hero-heading {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.1;
  font-weight: 700;
  max-width: 720px;
}

.section--hero {
  padding-top: 40px;
  padding-bottom: 48px;
}


/* ------------------------------------------------------------
   4. Enforce disciplined text measure inside paper
   ------------------------------------------------------------ */
.section .container {
  max-width: 720px;
}

.paper.publication .section .container,
.paper.publication #signals .container {
  max-width: 880px;
}


/* ------------------------------------------------------------
   5. Tighten Signals top spacing so it reads like a memo
   ------------------------------------------------------------ */
#signals.section {
  padding-top: 32px;
}


/* ------------------------------------------------------------
   6. Ensure nav items are restrained (not bold by default)
   ------------------------------------------------------------ */
.site-nav a {
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  font-weight: 600;
  text-decoration: underline;
}


/* ------------------------------------------------------------
   7. Lighten inline emphasis highlight
   ------------------------------------------------------------ */
.text-emphasis {
  background-color: #D4D4D4;
}


/* ------------------------------------------------------------
   8. Subtle refinement for visual balance
   ------------------------------------------------------------ */
.section-divider {
  border-top: 1px solid var(--border-subtle);
}

.paper {
  margin: 32px auto 60px;
}


/* ------------------------------------------------------------
   9. Capital Signals nav item — rightmost with divider
   ------------------------------------------------------------ */
.nav-signals-item {
  border-left: 1px solid var(--color-accent);
  padding-left: var(--space-md);
  margin-left: var(--space-sm);
}

.nav-signals-item a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .nav-signals-item {
    border-left: none;
    border-top: 1px solid var(--text-muted);
    padding-left: 0;
    margin-left: 0;
    padding-top: var(--space-sm);
    margin-top: var(--space-xs);
    width: 100%;
  }
}


/* ------------------------------------------------------------
   10. Capital Signals masthead hierarchy
   ------------------------------------------------------------ */

/* Publisher imprint — quiet, lowercase, barely-there */
.signals-publisher {
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.5;
  margin-bottom: var(--space-xs);
}

/* Publication title — uppercase to match nav item */
#signals-heading {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

/* Subtitle — tight to title, generous air below before body */
.section-subhead {
  margin-top: 0;
  margin-bottom: 2.5rem;
  opacity: 0.7;
}


/* ------------------------------------------------------------
   11. Narrative section hierarchy
   ------------------------------------------------------------ */

.section-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  font-weight: 500;
  max-width: 680px;
  margin-bottom: 1.4em;
}

.section-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 0.45rem;
}

.research-agenda,
.advisory-exclusions {
  margin-top: var(--space-lg);
  margin-bottom: 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.research-areas {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 680px;
}

/* Principles beliefs block — extra breathing room above the "We believe" statements */
.principles-beliefs {
  margin-top: var(--space-md);
}

.principles-beliefs p + p {
  margin-top: 0.75rem;
}

/* Membership sub-label above price */
.signals-membership-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-top: var(--space-md);
  margin-bottom: 0.25rem;
}


/* ------------------------------------------------------------
   11b. Section-specific heading rhythm
   ------------------------------------------------------------ */
#founder-heading {
  margin-bottom: 3rem;
}


/* ------------------------------------------------------------
   11c. Advisory section subsections
   ------------------------------------------------------------ */
.advisory-h3 {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.advisory-statement {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}



/* ------------------------------------------------------------
   12. Publication titles (cite) and advisory postscript
   ------------------------------------------------------------ */
cite {
  font-style: italic;
  font-weight: inherit;
}

.advisory-note {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  opacity: 0.7;
  margin-top: var(--space-md);
}


/* ------------------------------------------------------------
   13. Capital Gains book layout
   ------------------------------------------------------------ */
.book-layout {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.book-cover {
  width: 190px;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
  display: block;
}

.book-text {
  flex: 1;
}

.book-link {
  font-size: 0.88rem;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 560px) {
  .book-layout {
    flex-direction: column;
  }
  .book-cover {
    width: 120px;
  }
}

/* ------------------------------------------------------------
   13. Excerpt typography within Capital Signals
   ------------------------------------------------------------ */
.excerpt-publication {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  opacity: 0.5;
  margin-bottom: 0.15rem;
}

.excerpt-issue {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  opacity: 0.65;
  margin-bottom: 0.35rem;
}

.excerpt-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-style: normal;
}

.excerpt-citation {
  font-size: 0.72rem;
  color: var(--color-text-soft);
  opacity: 0.6;
  margin-top: var(--space-sm);
  font-style: normal;
}


/* ------------------------------------------------------------
   14. Controlled line breaks (CSS-safe, degrades on mobile)
   ------------------------------------------------------------ */
.line-next {
  display: inline-block;
}
