/* =============================================================
   Bliss Distribution — Content / pillar / spoke pages (content.css)
   Layered on top of styles.css. Black & white editorial article layout.
   Reuses nav, footer, buttons, container, section-title from styles.css.
   ============================================================= */

.content-page { background: #fff; color: var(--ink); }
.content-page .funnel-nav,
.content-page #navbar { } /* nav comes from styles.css / funnel-nav */

/* ----- Article hero ----- */
.content-hero {
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 60% 70% at 80% 0%, rgba(0,0,0,0.04), transparent 60%);
}
.content-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-size: 11px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase; color: var(--ink);
  padding: 7px 14px; border-radius: 100px;
  background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.16);
  margin-bottom: 22px;
}
.content-hero .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.content-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5vw, 60px); font-weight: 800; line-height: 1.04;
  letter-spacing: -1.6px; color: var(--ink); margin-bottom: 22px; max-width: 18ch;
}
.content-hero h1 .em {
  font-family: var(--ff-accent); font-style: italic; font-weight: 500; letter-spacing: -0.02em;
}
.content-hero .lede {
  font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 60ch;
}
.content-hero .hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ----- Breadcrumb ----- */
.crumbs { font-size: 12px; color: var(--ink-muted); margin-bottom: 26px; letter-spacing: 0.2px; }
.crumbs a { color: var(--ink-muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin: 0 7px; opacity: 0.5; }

/* ----- Article body ----- */
.content-body { padding: 64px 0 40px; }
.content-wrap { max-width: 760px; margin: 0 auto; }
.content-body h2 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.6px;
  color: var(--ink); margin: 48px 0 16px; line-height: 1.15; position: relative;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-family: var(--ff-display);
  font-size: 19px; font-weight: 700; color: var(--ink); margin: 30px 0 10px; letter-spacing: -0.2px;
}
.content-body p {
  font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px;
}
.content-body p strong, .content-body li strong { color: var(--ink); font-weight: 700; }
.content-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.content-body a:hover { text-decoration-thickness: 2px; }
.content-body ul, .content-body ol { margin: 0 0 22px 0; padding-left: 0; list-style: none; }
.content-body ul li {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
  padding-left: 30px; margin-bottom: 12px; position: relative;
}
.content-body ul li::before {
  content: ''; position: absolute; left: 4px; top: 11px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--ink); transform: rotate(45deg);
}
.content-body ol { counter-reset: cstep; }
.content-body ol li {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
  padding-left: 42px; margin-bottom: 16px; position: relative; counter-increment: cstep;
}
.content-body ol li::before {
  content: counter(cstep); position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 13px; font-weight: 700;
}

/* ----- Callout / key-facts box (citable) ----- */
.content-callout {
  background: var(--bg-soft); border: 1px solid var(--line-strong);
  border-left: 3px solid var(--ink);
  border-radius: 12px; padding: 24px 26px; margin: 28px 0;
}
.content-callout h4 {
  font-family: var(--ff-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink); margin-bottom: 12px;
}
.content-callout p:last-child { margin-bottom: 0; }

/* ----- Stat strip ----- */
.content-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line-strong); border-radius: 16px; overflow: hidden;
  margin: 32px 0;
}
.content-stats .stat { padding: 28px 24px; border-right: 1px solid var(--line); }
.content-stats .stat:last-child { border-right: none; }
.content-stats .stat strong {
  display: block; font-family: var(--ff-display); font-size: clamp(26px, 3vw, 34px);
  font-weight: 800; letter-spacing: -1px; color: var(--ink); margin-bottom: 5px;
}
.content-stats .stat span { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.4px; }

/* ----- Inline CTA band ----- */
.content-cta-band {
  margin: 48px 0; padding: 40px 36px; border-radius: 18px;
  background: #0a0a0a; color: #fff; text-align: center;
}
.content-cta-band h2 { color: #fff; margin: 0 0 8px; }
.content-cta-band p { color: rgba(255,255,255,0.7); margin: 0 0 24px; font-size: 16px; }
.content-cta-band .btn-primary { background: #fff; color: #0a0a0a; }
.content-cta-band .btn-primary svg { stroke: #0a0a0a; }
.content-cta-band .btn-primary:hover { background: #e4e4e7; }

/* ----- Related links grid ----- */
.content-related { padding: 40px 0 80px; border-top: 1px solid var(--line); }
.content-related h2 { text-align: center; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 980px; margin: 0 auto; }
.related-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 22px 22px;
  text-decoration: none; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: block;
}
.related-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.related-card .rc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-muted); font-weight: 700; }
.related-card h3 { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: var(--ink); margin: 8px 0 6px; }
.related-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 860px) {
  .content-stats { grid-template-columns: 1fr; }
  .content-stats .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .content-stats .stat:last-child { border-bottom: none; }
  .related-grid { grid-template-columns: 1fr; }
  .content-hero { padding: 100px 0 44px; }
}

/* ===== Comparison / data table ===== */
.content-table {
  width: 100%; border-collapse: collapse; margin: 28px 0;
  font-size: 15px; border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden;
}
.content-table thead th {
  background: #0a0a0a; color: #fff;
  font-family: var(--ff-display); font-size: 13px; font-weight: 700;
  text-align: left; padding: 14px 16px; letter-spacing: 0.2px;
}
.content-table th[scope="col"]:first-child { border-top-left-radius: 0; }
.content-table tbody th[scope="row"] { text-align: left; font-weight: 700; color: var(--ink); }
.content-table td, .content-table tbody th {
  padding: 13px 16px; border-top: 1px solid var(--line);
  color: var(--ink-soft); line-height: 1.55; vertical-align: top;
}
.content-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.content-table tbody tr:hover { background: rgba(0,0,0,0.03); }
@media (max-width: 640px) { .content-table { font-size: 13.5px; } .content-table td, .content-table th { padding: 10px 11px; } }
