/**
 * DLP Core Styles v3.0
 * High-contrast, learning-focused design system
 * Copyright © 2025-2026 Holistic Quality LLC
 */

/* =============================================
   CSS CUSTOM PROPERTIES - DESIGN TOKENS
   ============================================= */
:root {
  /* Background hierarchy - darker = more important container */
  --bg-deepest: #050505;
  --bg-deep: #09090b;
  --bg-base: #0f0f11;
  --bg-elevated: #151517;
  --bg-surface: #1a1a1d;
  --bg-overlay: rgba(5, 5, 5, 0.95);

  /* Text hierarchy - brighter = more important */
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-tertiary: #94a3b8;
  --text-muted: #7d8ba2; /* AA: ≥5.0:1 across the --bg-* ramp (was #64748b, 3.65:1 on --bg-surface — D-163) */
  --text-dim: #74839b;   /* AA: ≥4.5:1 across the --bg-* ramp (was #475569, 2.29:1 on --bg-surface — D-163) */

  /* Accent colors - pillar palette (vibrant for dark bg) */
  --p1-scale: #60a5fa;       /* Blue - brighter */
  --p2-emergence: #4ade80;   /* Green - brighter */
  --p3-systems: #f87171;     /* Red - brighter */
  --p4-energy: #fbbf24;      /* Yellow/Orange */
  --p5-uncertainty: #c084fc; /* Purple - brighter */
  --p6-information: #2dd4bf; /* Teal - brighter */
  --p7-time: #fb923c;        /* Orange */
  --p8-consciousness: #a78bfa; /* Violet */

  /* Semantic colors */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Interactive states */
  --focus-ring: rgba(96, 165, 250, 0.5);
  --hover-overlay: rgba(255, 255, 255, 0.05);
  --active-overlay: rgba(255, 255, 255, 0.1);

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows - subtle glows for dark theme */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(232, 200, 74, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-secondary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle background texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(232, 200, 74, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 200, 74, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-4xl); margin-bottom: var(--space-lg); }
h2 { font-size: var(--text-3xl); margin-bottom: var(--space-md); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
h4 { font-size: var(--text-xl); margin-bottom: var(--space-sm); }

p {
  margin-bottom: var(--space-md);
  max-width: 65ch; /* Optimal reading width */
}

a {
  color: var(--p1-scale);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
    background: #0d0a04;
    border-bottom: 1px solid rgba(201, 136, 42, 0.3);
    padding: 0.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    color: #9a9080;
    position: relative;
    z-index: 1010;
    flex-wrap: wrap;
}
.announcement-text { color: #9a9080; }
.announcement-link {
    color: #c9882a;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}
.announcement-link:hover { color: #e8c84a; }
.announcement-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
}
.announcement-close:hover { color: #9a9080; }
@media (max-width: 768px) {
    .announcement-bar { padding: 0.6rem 2.5rem 0.6rem 1rem; font-size: 0.75rem; }
}

/* =============================================
   UNIFIED NAVIGATION (used across all pages)
   ============================================= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}
.nav .logo {
    font-weight: 700;
    font-size: 0.95rem;
    color: #e8c84a;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.nav-ecosystem-tag {
    font-size: 0.62rem;
    font-family: 'JetBrains Mono', monospace;
    color: #475569;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-ecosystem-tag::before {
    content: '·';
    margin-right: 0.4rem;
    color: #333;
}
.nav-ecosystem-tag a {
    color: #64748b;
    text-decoration: none;
}
.nav-ecosystem-tag a:hover { color: #c9882a; }

.nav .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav .nav-links > a, .nav-dropdown > a {
    color: #94a3b8;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav .nav-links > a:hover, .nav-dropdown > a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.nav-dropdown { position: relative; }

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #111113;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-content a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
}

.nav-dropdown-content a:hover {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
}

.nav-cta {
    background: #e8c84a !important;
    color: #080604 !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    padding: 0.45rem 1rem !important;
    border-radius: 2px !important;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #f5d060 !important;
    transform: none;
    box-shadow: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .nav-ecosystem-tag { display: none; }

    /* Tablet typography — scale headings down slightly */
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }

    /* Tablet footer — tighter padding, smaller column floor */
    .unified-footer { padding: 3rem 1.5rem 1.5rem; }
    .unified-footer .footer-grid { gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .unified-footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

    /* Tablet nav — reduce inner padding */
    .nav-inner { padding: 0.75rem 1.25rem; }
}

@media (max-width: 768px) {
    .nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        padding: 0.5rem 1rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        gap: 0;
    }
    .nav .nav-links.open { display: flex; }
    .nav .nav-links > a, .nav-dropdown > a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    .nav-dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        background: rgba(255,255,255,0.03);
        border: none;
        padding: 0 0 0 1rem;
        min-width: 0;
    }
    .nav-dropdown.open > .nav-dropdown-content { display: block; }
    .nav-dropdown:hover .nav-dropdown-content { display: none; }
    .nav-dropdown.open:hover .nav-dropdown-content { display: block; }
    .mobile-menu-btn { display: block; }
    .nav-inner { padding: 0.75rem 1rem; }
}

/* =============================================
   UNIFIED FOOTER (used across all pages)
   ============================================= */

/* Ecosystem panel in footer */
.footer-ecosystem {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 2rem 0 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-eco-site {
    flex: 1;
    padding: 1.25rem 2rem;
    background: rgba(255,255,255,0.015);
    border-radius: 2px;
}
.footer-eco-site:first-child { padding-left: 1.25rem; }
.footer-eco-site:last-child { padding-right: 1.25rem; }
.footer-eco-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.1) 70%, transparent);
    flex-shrink: 0;
    margin: 0 2px;
}
.footer-eco-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: #4a4030;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.footer-eco-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8a7e6e;
    margin-bottom: 0.35rem;
}
.footer-eco-role--gold { color: #e8c84a; }
.footer-eco-domain,
a.footer-eco-domain {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #5a6070 !important;
    text-decoration: none !important;
    display: inline-block;
    transition: color 0.15s;
}
.footer-eco-domain:hover,
a.footer-eco-domain:hover { color: #c9882a !important; }
.footer-eco-domain--current,
span.footer-eco-domain--current { color: #4a4030 !important; }
.footer-eco-site--current { background: rgba(232,200,74,0.025); }
.footer-eco-site--current .footer-eco-label { color: #6b5030; }

/* Footer bottom FTP */
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-ftp {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #e8c84a;
    font-weight: 500;
}
.footer-credit { font-size: 0.75rem; color: #475569; }
.footer-credit a { color: #64748b !important; text-decoration: none !important; }
.footer-credit a:hover { color: #c9882a !important; }

@media (max-width: 768px) {
    .footer-ecosystem { flex-direction: column; gap: 0.75rem; align-items: stretch; }
    .footer-eco-site { padding: 1rem 1.25rem; }
    .footer-eco-divider { width: 100%; height: 1px; margin: 0; background: rgba(255,255,255,0.06); }
}

.unified-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}
.unified-footer .footer-inner { max-width: 1200px; margin: 0 auto; }
.unified-footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.unified-footer .footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 1rem; }
.unified-footer .footer-col a { display: block; color: #94a3b8; text-decoration: none; font-size: 0.85rem; padding: 0.3rem 0; }
.unified-footer .footer-col a:hover { color: #e8c84a; }
.unified-footer .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: #64748b; flex-wrap: wrap; gap: 1rem; }
.unified-footer .footer-bottom a { color: #94a3b8; text-decoration: none; }
.unified-footer .footer-bottom a:hover { color: #e8c84a; }

/* =============================================
   HQ ECOSYSTEM WIDGET
   ============================================= */
.hq-widget{position:fixed;bottom:20px;right:20px;z-index:9999;font-family:'Inter','Segoe UI',system-ui,-apple-system,sans-serif}
.hq-widget-btn{width:50px;height:50px;border-radius:50%;background:#12121a;border:1px solid rgba(255,255,255,0.1);cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(0,0,0,0.4);transition:all 0.3s}
.hq-widget-btn:hover{transform:scale(1.05);border-color:rgba(232,200,74,0.5)}
.hq-widget-btn svg{width:28px;height:28px}
.hq-dropdown{position:absolute;bottom:60px;right:0;width:280px;background:#12121a;border:1px solid rgba(255,255,255,0.1);border-radius:12px;opacity:0;visibility:hidden;transform:translateY(10px);transition:all 0.2s;box-shadow:0 8px 30px rgba(0,0,0,0.5)}
.hq-widget.active .hq-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.hq-dropdown-header{padding:1rem;border-bottom:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;gap:0.5rem}
.hq-dropdown-header svg{width:20px;height:20px}
.hq-dropdown-header span{font-weight:600;font-size:0.9rem;color:#e8e8f0}
.hq-dropdown-links{padding:0.5rem}
.hq-dropdown a{display:flex;align-items:center;gap:0.75rem;padding:0.65rem 0.75rem;border-radius:8px;color:#9ca3b8;text-decoration:none;font-size:0.85rem;transition:all 0.15s}
.hq-dropdown a:hover{background:rgba(255,255,255,0.05);color:#e8e8f0}
.hq-dropdown a.current{background:rgba(232,200,74,0.1);color:#e8c84a}
.hq-dropdown .icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:1rem}
.hq-dropdown .icon.cgs{background:rgba(59,130,246,0.15)}
.hq-dropdown .icon.dlp{background:rgba(139,92,246,0.15)}
.hq-dropdown .icon.gdn{background:rgba(232,200,74,0.12)}
.hq-dropdown .icon.research{background:rgba(239,68,68,0.15)}
.hq-dropdown .icon.hq{background:rgba(251,191,36,0.15)}
.hq-dropdown .info{display:flex;flex-direction:column}
.hq-dropdown .name{color:#e8e8f0;font-weight:500}
.hq-dropdown .desc{font-size:0.75rem;color:#6b7280}
.hq-dropdown-footer{padding:0.75rem 1rem;border-top:1px solid rgba(255,255,255,0.1);text-align:center;font-size:0.75rem;color:#fbbf24}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  body {
    background: white;
    color: black;
  }

  .nav,
  .hq-widget,
  .unified-footer {
    display: none;
  }
}

/* ===================================================================
   EDITORIAL DESIGN SYSTEM (D-351)
   Extracted from pages/index.html's inline editorial theme so the
   learning core shares one design language instead of the legacy blue
   "app" theme. Reusable primitives (.section-*) + a body.pillar-editorial
   retheme scope whose body.<class> prefix out-specifies each pillar
   page's inline app-theme rules (so no per-page inline CSS must be
   deleted). Per-pillar --pillar-color is preserved as the accent.
   Fraunces + JetBrains Mono are already served globally by fonts.css.
   =================================================================== */
:root {
  --edi-accent: #e8c84a;         /* gold */
  --edi-accent-amber: #c9882a;
  --edi-accent-cta: #f5d060;
  --edi-bg: #060606;             /* near-black canvas */
  --edi-bg-warm: #0d0a04;
  --edi-bg-card: #12100a;
  --edi-text-primary: #f5f0e8;   /* cream */
  --edi-text-secondary: #c8b89a;
  --edi-text-muted: #7a6e60;
}

/* Reusable editorial primitives (shared with the homepage language). */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--edi-text-muted);
  text-transform: uppercase;
}
.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--edi-text-primary);
  background: none;                       /* reset any gradient-text app theme */
  -webkit-text-fill-color: var(--edi-text-primary);
}
.section-subhead { color: var(--edi-text-secondary); line-height: 1.65; }
.section-closer {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  color: var(--edi-accent);
}

/* ---- Pillar-page retheme scope ---- */
body.pillar-editorial {
  --bg-primary: var(--edi-bg);
  --bg-secondary: var(--edi-bg-warm);
  --text-primary: var(--edi-text-primary);
  --text-secondary: var(--edi-text-secondary);
}
body.pillar-editorial main { background: var(--edi-bg); }
/* h1.section-headline (0,2,1) out-specifies pillar-page inline heros: bare `h1`,
   `header h1`, and the `.pillar-hero h1` gradient variant (pillars 5/6) — so every
   pillar headline renders cream Fraunces, with the per-pillar accent reserved for chrome. */
body.pillar-editorial h1.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  background: none;
  -webkit-text-fill-color: var(--edi-text-primary);
  color: var(--edi-text-primary);
}
body.pillar-editorial .pillar-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  background: transparent;
  border: 1px solid var(--pillar-color);
  border-radius: 2px;
  color: var(--edi-text-secondary);
}
body.pillar-editorial .subtitle { color: var(--edi-text-secondary); }
body.pillar-editorial .distinction-box {
  background: var(--edi-bg-card);
  border: 1px solid rgba(232, 200, 74, 0.18);
  border-radius: 2px;
}
body.pillar-editorial .distinction-box h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--edi-accent);
}
body.pillar-editorial .progress-section,
body.pillar-editorial .concept-card,
body.pillar-editorial .level-button {
  background: var(--edi-bg-card);
  border-color: rgba(232, 200, 74, 0.14);
  border-radius: 2px;
}
body.pillar-editorial .progress-header h2,
body.pillar-editorial .concept-title {
  font-family: 'Fraunces', Georgia, serif;
}
body.pillar-editorial .level-button.active {
  background: rgba(232, 200, 74, 0.10);
  border-color: var(--pillar-color);
}
body.pillar-editorial .concept-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
/* pillar-5/6 render a decorative ::before emoji on their "Core Insight" box — drop it in editorial. */
body.pillar-editorial .distinction-box::before { content: none; }

/* ---- Secondary-surface editorial scope (D-352: explore/docs/framework/tools) ----
   These pages use their own inline :root aliases (retargeted per page to --edi-*),
   so this scope only needs the canvas + a headline safety override that
   out-specifies inline `.hero h1` / `.header h2` (0,1,1) variants. */
body.editorial { background: var(--edi-bg); }
/* For pages that use the global tokens directly inside <main> (e.g. docs.html has no
   page-local :root aliases), retarget the neutral ramp to editorial warm within main —
   nav/footer sit outside <main> and keep their own (already-editorial) styling. */
body.editorial main {
  --bg-deep: var(--edi-bg);
  --bg-base: var(--edi-bg);
  --bg-surface: var(--edi-bg-card);
  --bg-elevated: var(--edi-bg-card);
  --text-secondary: var(--edi-text-primary);
  --text-tertiary: var(--edi-text-secondary);
  --text-dim: var(--edi-text-muted);
  --text-muted: var(--edi-text-muted);
  background: var(--edi-bg);
}
body.editorial h1.section-headline,
body.editorial h2.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  background: none;
  -webkit-text-fill-color: var(--edi-text-primary);
  color: var(--edi-text-primary);
}
/* Section headings inside editorial pages read cream Fraunces (kills residual app-theme
   blue on e.g. docs "Quick Access"). Explicit .section-headline (0,2,1) still wins. */
body.editorial main h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--edi-text-primary);
  -webkit-text-fill-color: var(--edi-text-primary);
}
