/* ============================================================
   THE CENTERED EDGE — Main Stylesheet
   Design System: Dark editorial luxury, copper accents
   Fonts: Cormorant Garamond (serif) + DM Sans (sans)
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  --void:        #040720;
  --void-soft:   #080d28;
  --void-mid:    #0d1336;
  --copper:      #c4892a;
  --copper-light:#e8c87a;
  --copper-dim:  rgba(196,137,42,0.10);
  --copper-rule: rgba(196,137,42,0.15);
  --white:       #ffffff;
  --cream:       #F5F0E8;
  --mist:        rgba(245,240,232,0.55);
  --rule-dark:   rgba(255,255,255,0.07);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --navy:        #070048;
  --gold:        #C89A28;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  72px;
  --space-2xl: 96px;

  /* Sidebar / content */
  --content-max: 1200px;
  --pad-x: 56px;
  --pad-x-mobile: 22px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--void);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* --- Justified text for all content paragraphs --- */
[class*="-body"],
[class*="-desc"],
[class*="-intro"],
[class*="-text"]:not([class*="spq-text"]),
.spq-text,
.transcript-body p,
.faq-a,
.bsw-item,
.ni-to,
.footer-tagline,
.ss-body {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.ce-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4,7,32,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-dark);
  padding: 0 var(--pad-x);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--white);
  margin-right: auto;
  text-decoration: none;
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: rgba(255,255,255,.25);
  font-weight: 300;
  letter-spacing: .04em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .2s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-listen {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--copper);
  padding: 8px 18px;
  border-radius: 1px;
  text-decoration: none;
  transition: opacity .2s;
  white-space: nowrap;
}
.nav-listen:hover { opacity: .85; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 13px var(--pad-x);
  border-bottom: 1px solid var(--rule-dark);
  display: flex;
  gap: 8px;
  align-items: center;
}
.bc-item {
  font-size: 11px;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  letter-spacing: .04em;
}
.bc-item:hover { color: var(--copper); }
.bc-sep { font-size: 11px; color: rgba(255,255,255,.15); }
.bc-current { font-size: 11px; color: rgba(255,255,255,.45); }

/* ============================================================
   GOLD RULE / COPPER RULE
   ============================================================ */
.rule-copper {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.rule-dark-line {
  height: 1px;
  background: var(--rule-dark);
}

/* ============================================================
   PAGE HERO — Generic
   ============================================================ */
.page-hero {
  padding: 80px var(--pad-x) 64px;
  border-bottom: 1px solid var(--rule-dark);
}
.ph-kicker {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 20px;
}
.ph-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.ph-h1 em { font-style: italic; color: rgba(255,255,255,.38); }
.ph-intro {
  font-size: 15px;
  color: rgba(255,255,255,.4);
  font-weight: 300;
  line-height: 1.85;
  max-width: 680px;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--copper-rule);
}

/* ============================================================
   EPISODE CARDS
   ============================================================ */
.ep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ep-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--copper-rule);
  border-radius: 3px;
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: border-color .2s, background .2s;
}
.ep-card:hover {
  border-color: rgba(196,137,42,.4);
  background: rgba(255,255,255,.04);
}
.ec-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(196,137,42,.4);
  margin-bottom: 6px;
}
.ec-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: var(--copper-dim);
  border: 1px solid rgba(196,137,42,.18);
  color: rgba(196,137,42,.7);
  border-radius: 2px;
  margin-bottom: 10px;
}
.ec-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}
.ec-guest {
  font-size: .72rem;
  color: rgba(255,255,255,.32);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ec-guest::before {
  content: '◈';
  color: rgba(196,137,42,.3);
  font-size: .58rem;
}
.ec-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
  font-style: italic;
  border-top: 1px solid rgba(196,137,42,.07);
  padding-top: 10px;
  margin-top: 10px;
}
.ec-link {
  display: inline-block;
  margin-top: 12px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(196,137,42,.65);
  text-decoration: none;
}
.ec-link:hover { color: var(--copper); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.fb-pill {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 12px;
  border: 1px solid var(--copper-rule);
  color: rgba(255,255,255,.32);
  cursor: pointer;
  transition: all .2s;
  background: transparent;
}
.fb-pill:hover,
.fb-pill.active {
  background: var(--copper);
  color: var(--void);
  border-color: var(--copper);
}

/* ============================================================
   FIREWALL BADGES
   ============================================================ */
.fw-badge {
  padding: 7px 14px;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
.fw-exec   { background: rgba(196,137,42,.12); color: var(--copper);  border: 1px solid rgba(196,137,42,.28); }
.fw-stag   { background: rgba(156,119,43,.14); color: #c89a28;        border: 1px solid rgba(156,119,43,.3);  }
.fw-ai     { background: rgba(100,150,255,.08); color: #8aa8ef;       border: 1px solid rgba(100,150,255,.2); }
.fw-succ   { background: rgba(100,200,150,.07); color: #7fd4a8;       border: 1px solid rgba(100,200,150,.18);}

/* ============================================================
   PULL QUOTES
   ============================================================ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.pull-quote {
  padding: 22px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--copper-rule);
  border-radius: 6px;
  position: relative;
}
.pq-mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: rgba(196,137,42,.12);
  line-height: .6;
  position: absolute;
  top: 12px;
  left: 14px;
}
.pq-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.55;
  padding-left: 14px;
}
.pq-attr {
  font-size: .65rem;
  color: rgba(196,137,42,.55);
  margin-top: 12px;
  padding-left: 14px;
}

/* ============================================================
   AEO BLOCK
   ============================================================ */
.aeo-block {
  padding: 24px 28px;
  background: rgba(196,137,42,.05);
  border: 1px solid rgba(196,137,42,.18);
  border-radius: 6px;
}
.aeo-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aeo-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196,137,42,.18);
}
.aeo-text {
  font-size: .9rem;
  color: var(--cream);
  line-height: 1.78;
}
.aeo-text strong { color: var(--white); }

/* ============================================================
   STAT ITEMS
   ============================================================ */
.stat-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.stat-item {
  background: var(--void-mid);
  border: 1px solid var(--rule-dark);
  padding: 16px 18px;
  border-radius: 2px;
  min-width: 110px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--copper-light);
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  color: rgba(255,255,255,.28);
  font-weight: 300;
  line-height: 1.4;
}

/* ============================================================
   KEYWORD PILLS
   ============================================================ */
.kw-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.kw-pill {
  background: var(--copper-dim);
  border: 1px solid rgba(196,137,42,.18);
  color: rgba(245,240,232,.65);
  font-size: .7rem;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--void);
  padding: 48px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.cta-block h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-block p {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  max-width: 460px;
}
.cta-btn {
  background: var(--gold);
  color: var(--void);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.cta-btn:hover { opacity: .85; }

/* ============================================================
   LISTEN PLATFORMS BAR
   ============================================================ */
.listen-bar {
  background: var(--void-soft);
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule-dark);
}
.listen-bar-label {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.listen-links { display: flex; gap: 12px; flex-wrap: wrap; }
.listen-link {
  font-size: .65rem;
  font-weight: 500;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  transition: all .2s;
}
.listen-link:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ce-footer {
  background: var(--void-soft);
  padding: 32px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--rule-dark);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,.45);
}
.footer-brand span {
  font-style: normal;
  font-size: 10px;
  color: rgba(255,255,255,.2);
  display: block;
  margin-top: 2px;
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,.18); }
.footer-links { display: flex; gap: 18px; }
.footer-links a {
  font-size: .65rem;
  color: rgba(255,255,255,.22);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--copper); }
.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-social a {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color .2s;
}
.footer-social a:hover { color: var(--copper); }

/* ============================================================
   SCHEMA CARDS GRID
   ============================================================ */
.schema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.schema-card {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--copper-rule);
  border-radius: 6px;
  padding: 14px 16px;
}
.sc-type {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
  display: block;
}
.sc-value {
  font-size: .78rem;
  color: var(--cream);
  line-height: 1.55;
}

/* ============================================================
   CREDENTIAL LIST
   ============================================================ */
.cred-list { display: flex; flex-direction: column; gap: 10px; }
.cred-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.02);
  border-radius: 5px;
  border-left: 2px solid var(--copper);
  align-items: flex-start;
}
.cred-icon { flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.ct-title {
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.ct-desc {
  font-size: .75rem;
  color: rgba(245,240,232,.5);
  line-height: 1.55;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}
.faq-item {
  border: 1px solid var(--copper-rule);
  border-radius: 3px;
  background: rgba(255,255,255,.02);
}
.faq-q {
  font-family: var(--serif);
  font-size: .92rem;
  color: var(--white);
  font-weight: 600;
  padding: 14px 18px;
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.1rem;
  color: rgba(196,137,42,.5);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-q { color: var(--copper); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: .84rem;
  color: rgba(255,255,255,.38);
  line-height: 1.76;
  padding: 0 18px 14px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   SUBSCRIBE FORM
   ============================================================ */
.subscribe-section {
  background: var(--void);
  padding: 56px var(--pad-x);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.sub-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin-top: 22px;
}
.sub-input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(196,137,42,.2);
  border-radius: 3px;
  padding: 11px 16px;
  color: var(--white);
  font-size: .86rem;
  font-family: var(--sans);
  outline: none;
}
.sub-input::placeholder { color: rgba(255,255,255,.22); }
.sub-input:focus { border-color: var(--copper); }
.sub-btn {
  background: var(--copper);
  color: var(--void);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

/* ============================================================
   PLAYBOOK GUIDE — STEP LIST
   ============================================================ */
.guide-steps { display: flex; flex-direction: column; gap: 0; }
.guide-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-dark);
  align-items: start;
}
.guide-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: rgba(196,137,42,.15);
  font-weight: 300;
  line-height: 1;
  padding-top: 2px;
}
.step-body {}
.step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-text {
  font-size: .86rem;
  color: rgba(255,255,255,.42);
  line-height: 1.8;
}

/* ============================================================
   TRANSCRIPT BODY
   ============================================================ */
.transcript-body {
  max-width: 760px;
}
.transcript-body h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--copper);
  margin: 28px 0 10px;
}
.transcript-body p {
  font-size: .88rem;
  color: rgba(245,240,232,.72);
  line-height: 1.88;
  margin-bottom: 15px;
}
.transcript-body .speaker {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 5px;
  display: block;
}
.ts-disclaimer {
  font-size: .75rem;
  color: rgba(245,240,232,.28);
  font-style: italic;
  padding: 12px 16px;
  border-left: 2px solid rgba(196,137,42,.18);
  margin-bottom: 24px;
}

/* ============================================================
   CONTENT SECTIONS — padding utility
   ============================================================ */
.section { padding: 48px var(--pad-x); }
.section + .section { border-top: 1px solid var(--rule-dark); }
.section--dark { background: var(--void-soft); }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--3-5 {
  grid-template-columns: 3fr 5fr;
}

/* ============================================================
   GUEST CARD (directory)
   ============================================================ */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.guest-card {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--copper-rule);
  border-radius: 3px;
  padding: 20px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  display: block;
}
.guest-card:hover {
  border-color: rgba(196,137,42,.38);
  background: rgba(255,255,255,.04);
}
.gc-ep {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(196,137,42,.45);
  margin-bottom: 8px;
}
.gc-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.2;
}
.gc-role {
  font-size: .75rem;
  color: rgba(255,255,255,.32);
  line-height: 1.4;
  margin-bottom: 10px;
}
.gc-theme {
  font-family: var(--serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--copper);
  line-height: 1.4;
}

/* ============================================================
   FIREWALL CARD (hub page)
   ============================================================ */
.fw-card {
  padding: 28px;
  border: 1px solid var(--copper-rule);
  border-radius: 4px;
  text-decoration: none;
  display: block;
  transition: border-color .2s, background .2s;
}
.fw-card:hover {
  border-color: rgba(196,137,42,.4);
  background: rgba(255,255,255,.025);
}
.fw-card-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(196,137,42,.1);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.fw-card-kicker {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 12px;
}
.fw-card-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}
.fw-card-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  line-height: 1.72;
  margin-bottom: 16px;
}
.fw-card-link {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(196,137,42,.7);
}

/* ============================================================
   PLAYBOOK CARD (hub page)
   ============================================================ */
.pb-card {
  padding: 26px;
  border: 1px solid var(--copper-rule);
  border-radius: 3px;
  text-decoration: none;
  display: block;
  transition: border-color .2s, background .2s;
}
.pb-card:hover {
  border-color: rgba(196,137,42,.42);
  background: rgba(255,255,255,.03);
}
.pb-card-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(196,137,42,.22);
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.pb-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
}
.pb-card-q {
  font-size: .8rem;
  color: rgba(255,255,255,.32);
  line-height: 1.65;
  margin-bottom: 14px;
}
.pb-card-link {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(196,137,42,.6);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root { --pad-x: 32px; }
  .two-col, .two-col--3-5 { grid-template-columns: 1fr; gap: 40px; }
  .guest-grid { grid-template-columns: 1fr 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --pad-x: var(--pad-x-mobile); }
  .ce-nav { padding: 0 18px; gap: 16px; }
  .nav-links { display: none; }
  .guest-grid { grid-template-columns: 1fr; }
  .cta-block { flex-direction: column; align-items: flex-start; }
  .sub-form { flex-direction: column; }
  .stat-row { gap: 10px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
}
