/* article-styles.css — Shared styles for all Therapy11 articles */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #B7522A;
  --primary-dark: #9A4422;
  --gold: #A68B5B;
  --text: #2D2926;
  --text-light: #7A6F63;
  --bg: #FAF6F1;
  --bg-alt: #F5F0EB;
  --white: #FFFFFF;
  --border: #E0D8CF;
  --max-w: 960px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav { padding: 24px 0; background: var(--bg); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--text);
  text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { font-variant: small-caps; font-size: 0.85em; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; color: var(--text-light); text-decoration: none; font-weight: 400; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta-link { font-size: 0.9rem; font-weight: 500; color: var(--primary); text-decoration: none; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger svg { width: 24px; height: 24px; stroke: var(--text); }

@media (max-width: 768px) {
  .nav-links, .nav-cta-link { display: none; }
  .hamburger { display: block; }
}

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--bg); z-index: 100;
  flex-direction: column; padding: 80px 32px 32px; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.2rem; color: var(--text); text-decoration: none; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; font-size: 2rem; color: var(--text); cursor: pointer;
}

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--primary); color: var(--white);
  font-size: 0.95rem; font-weight: 500; padding: 14px 32px;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-secondary {
  display: inline-block; color: var(--primary); font-size: 0.95rem; font-weight: 500;
  padding: 14px 32px; border: 1.5px solid var(--primary); border-radius: 6px;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--primary); color: var(--white); text-decoration: none; }
.btn-ghost { display: inline-block; color: var(--primary); font-size: 0.95rem; font-weight: 500; padding: 14px 8px; text-decoration: none; }
.btn-ghost:hover { text-decoration: underline; }

/* DIVIDER */
.divider { width: 48px; height: 1px; background: var(--border); margin: 0 auto; }

/* SECTIONS */
section { padding: 72px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-light); margin-bottom: 12px;
}
.section-center { text-align: center; }

/* FOOTER */
.footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 48px 0 32px; font-size: 0.88rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 32px; }
.footer-brand { max-width: 300px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--white); margin-bottom: 8px; }
.footer-logo span { color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 16px; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* UTILITY */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* Article Hero */
.article-hero { padding: 80px 0 48px; background: var(--bg); text-align: center; }
.article-hero .hero-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--text-light);
  margin-bottom: 24px;
}
.article-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem); color: var(--text);
  margin-bottom: 16px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.article-hero .subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 620px; margin: 0 auto 20px; line-height: 1.7; }
.article-hero .meta { font-size: 0.85rem; color: var(--text-light); }

/* Hero Stats */
.hero-stats { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-stat-pill {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 24px; min-width: 120px; text-align: center;
}
.hero-stat-pill .pill-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--primary); line-height: 1; }
.hero-stat-pill .pill-label { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

/* Article Layout */
.article-layout { max-width: 960px; margin: 0 auto; padding: 48px 24px 80px; display: grid; grid-template-columns: 180px 1fr; gap: 48px; }
.article-sidebar { position: sticky; top: 80px; align-self: start; }
.sidebar-toc { font-size: 13px; }
.sidebar-toc .toc-title { font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }
.sidebar-toc ol { list-style: none; padding: 0; margin: 0; }
.sidebar-toc li { margin-bottom: 2px; }
.sidebar-toc a { display: block; padding: 5px 0 5px 12px; color: var(--text-light); text-decoration: none; border-left: 2px solid transparent; transition: all 0.2s; line-height: 1.4; }
.sidebar-toc a:hover, .sidebar-toc a.active { color: var(--primary); border-left-color: var(--primary); text-decoration: none; }

.sidebar-share { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.sidebar-share .share-title { font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 10px; }
.sidebar-share-btns { display: flex; flex-direction: column; gap: 6px; }
.sidebar-share-btns a { display: block; padding: 7px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; color: var(--white); text-align: center; }
.sidebar-share-btns .tw { background: #1da1f2; }
.sidebar-share-btns .li { background: #0077b5; }
.sidebar-share-btns .em { background: #666; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 0; padding: 32px 16px 60px; }
  .article-sidebar { display: none; }
}

/* Article Content */
.article-content { max-width: 720px; }
.article-content h2 { font-size: 1.6rem; color: var(--text); margin: 56px 0 16px; line-height: 1.3; padding-top: 8px; }
.article-content h3 { font-size: 1.15rem; font-weight: 500; margin: 36px 0 12px; color: var(--text); font-family: 'Inter', sans-serif; }
.article-content p { margin-bottom: 18px; color: var(--text); }
.article-content ul, .article-content ol { margin: 0 0 18px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content .lede { font-size: 1.1rem; line-height: 1.8; color: var(--text); }
.article-content a { color: var(--primary); }
.article-content a.cta-btn,
.article-content a.share-btn,
.article-content .mid-cta a { color: var(--white); }

/* Section Divider */
.section-divider { height: 1px; background: var(--border); margin: 56px 0; border: none; }

/* Stat Callout */
.stat-callout {
  background: var(--white); border-radius: 8px; padding: 32px 36px; margin: 36px 0;
  border: 1px solid var(--border); border-left: 4px solid var(--primary);
}
.stat-callout .big-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 400; color: var(--primary); line-height: 1; }
.stat-callout .stat-label { font-size: 1rem; color: var(--text-light); margin-top: 6px; line-height: 1.5; }

/* Quotable */
.quotable {
  border-left: 3px solid var(--gold); padding: 24px 32px 24px 32px;
  margin: 40px 0; background: var(--bg-alt); border-radius: 0 8px 8px 0;
}
.quotable p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; line-height: 1.5; color: var(--text); font-weight: 400; margin: 0; }

/* Bar Chart */
.chart { margin: 32px 0; background: var(--white); border-radius: 8px; padding: 24px 28px; border: 1px solid var(--border); }
.chart-title { font-weight: 500; font-size: 0.9rem; margin-bottom: 16px; color: var(--text); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.bar-row { display: flex; align-items: center; margin-bottom: 10px; gap: 12px; }
.bar-label { width: 120px; font-size: 13px; font-weight: 600; text-align: right; flex-shrink: 0; color: var(--text); }
.bar-track { flex: 1; background: var(--bg-alt); border-radius: 6px; height: 28px; position: relative; }
.bar-fill {
  height: 100%; border-radius: 6px; background: var(--primary);
  display: flex; align-items: center; padding: 0 10px; font-size: 12px;
  font-weight: 500; color: var(--white); width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1); justify-content: flex-end;
  white-space: nowrap; min-width: max-content;
}
.bar-fill.accent { background: #5B9BD5; }
.bar-fill.red { background: #c0392b; }
.bar-fill.green { background: #27ae60; }
.bar-fill.orange { background: #e67e22; }
.bar-fill.gray { background: #999; }
@media (max-width: 480px) { .bar-label { width: 80px; font-size: 12px; } }

/* Data Table */
.data-table-wrap { margin: 28px 0; border-radius: 8px; overflow: hidden; background: var(--white); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--text); color: var(--white); text-align: left; padding: 14px 18px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.data-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--bg); }

/* Key Finding */
.key-finding { background: var(--white); border: 1.5px solid var(--primary); border-radius: 8px; padding: 28px; margin: 32px 0; }
.key-finding .kf-title { font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 10px; }

/* CTA Box */
.cta-box {
  background: var(--white); border: 2px solid var(--primary); border-radius: 8px;
  padding: 48px 36px; text-align: center; margin: 56px 0 0;
}
.cta-box h2 { font-size: 1.6rem; color: var(--text) !important; margin: 0 0 12px; }
.cta-box p { color: var(--text-light); margin-bottom: 28px; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btn {
  display: inline-block; background: var(--primary); color: var(--white);
  padding: 14px 32px; border-radius: 6px; font-weight: 500; font-size: 0.95rem;
  text-decoration: none; transition: background 0.2s;
}
.cta-btn:hover { background: var(--primary-dark); text-decoration: none; }

/* Mid CTA */
.mid-cta { background: var(--bg-alt); border-radius: 8px; padding: 28px 32px; margin: 40px 0; text-align: center; }
.mid-cta p { margin: 0 0 14px; font-size: 0.95rem; }
.mid-cta a { display: inline-block; background: var(--primary); color: var(--white); padding: 12px 28px; border-radius: 6px; font-weight: 500; font-size: 0.9rem; text-decoration: none; }
.mid-cta a:hover { background: var(--primary-dark); text-decoration: none; }

/* Methodology */
.methodology { background: var(--bg-alt); border-radius: 8px; padding: 32px; margin: 48px 0; font-size: 0.9rem; border: 1px solid var(--border); }
.methodology h3 { margin-top: 0; }

/* Share Row */
.share-row { display: flex; gap: 10px; align-items: center; margin: 32px 0; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.share-row span { font-weight: 600; font-size: 14px; }
.share-btn { display: inline-block; padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; color: var(--white); }
.share-btn.tw { background: #1da1f2; }
.share-btn.li { background: #0077b5; }
.share-btn.em { background: #555; }

/* Mobile TOC */
.mobile-toc { display: none; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; margin: 0 0 32px; }
.mobile-toc .toc-title { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 10px; }
.mobile-toc ol { margin: 0; padding-left: 20px; }
.mobile-toc li { margin-bottom: 4px; font-size: 0.9rem; }
.mobile-toc a { color: var(--primary); text-decoration: none; }
@media (max-width: 900px) { .mobile-toc { display: block; } }

/* Mistake Card (Article 02) */
.mistake-card { margin: 0; }
.mistake-number { color: var(--gold); font-family: 'Cormorant Garamond', serif; margin-right: 8px; }

/* Fix Box (Article 02) */
.fix-box {
  background: var(--bg-alt); border-radius: 8px; padding: 24px;
  margin: 24px 0; border-left: 3px solid var(--gold);
}

/* Before/After (Article 02) */
.before-after { display: grid; gap: 16px; margin: 24px 0; }
@media (min-width: 600px) { .before-after { grid-template-columns: 1fr 1fr; } }
.ba-side { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.ba-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.ba-before .ba-label { color: #c0392b; }
.ba-after .ba-label { color: #27ae60; }

/* Before/After Grid (Article 04) */
.ba-grid { display: grid; gap: 24px; margin: 32px 0; }
@media (min-width: 768px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
.ba-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.ba-card h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.ba-card.before h4 { color: #c0392b; }
.ba-card.after h4 { color: #27ae60; }

/* Checklist */
.checklist { list-style: none; margin: 24px 0; }
.checklist li { padding: 8px 0 8px 28px; position: relative; font-size: 0.95rem; }
.checklist li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* Tip boxes */
.tip-box, .warning-box {
  background: var(--bg-alt); border-radius: 8px; padding: 24px;
  margin: 24px 0; border-left: 3px solid var(--gold);
}
.warning-box { border-left-color: #c0392b; }
.tip-box h4, .warning-box h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }

/* Framework steps (Article 04 — About page) */
.framework-step {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 24px; margin: 16px 0;
}
.framework-step h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; margin-bottom: 8px; }
.framework-step h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; margin-bottom: 8px; }
.step-letter { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-right: 8px; }

/* Example Box (Article 04) */
.example-box {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 24px; margin: 24px 0;
}
.example-box .label { display: inline-block; font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.example-box .label-before, .label.label-before { color: #c0392b; }
.example-box .label-after, .label.label-after { color: #27ae60; }
.example-box.is-before { border-left: 3px solid #c0392b; }
.example-box.is-after { border-left: 3px solid #27ae60; }

/* Template Box (Article 04) */
.template-box {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 28px; margin: 32px 0;
}
.template-box h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin: 24px 0 12px; }
.template-box h3:first-child { margin-top: 0; }
.blank { background: var(--bg-alt); padding: 2px 8px; border-radius: 4px; font-style: italic; color: var(--text-light); }

/* SEO Type Cards (Article 05) */
.seo-types { display: grid; gap: 16px; margin: 24px 0; }
@media (min-width: 600px) { .seo-types { grid-template-columns: 1fr 1fr 1fr; } }
.seo-type-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 24px; text-align: center;
}
.type-icon { font-size: 2rem; margin-bottom: 8px; }
.type-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.type-desc { font-size: 0.85rem; color: var(--text-light); }

/* Tech Callout (Article 05) */
.tech-callout {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 20px 24px; margin: 24px 0;
}
.tech-callout .tc-title { font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; }
.tech-callout code { background: var(--bg-alt); padding: 2px 6px; border-radius: 3px; font-size: 0.88rem; }

/* Plan Box (Article 05) */
.plan-box {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 28px; margin: 32px 0;
}
.plan-box h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.plan-box ul { list-style: none; margin: 0; padding: 0; }
.plan-box li { margin-bottom: 16px; font-size: 0.95rem; line-height: 1.6; }
.week-label { font-weight: 600; color: var(--primary); }

/* Callout Box (Article 06) */
.callout {
  background: var(--bg-alt); border-radius: 8px; padding: 24px;
  margin: 24px 0; border-left: 3px solid var(--gold);
}
.callout.warning { border-left-color: #c0392b; }
.callout h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }

/* Comparison Table (Article 06) */
.table-wrapper { margin: 28px 0; border-radius: 8px; overflow-x: auto; background: var(--white); border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th { background: var(--text); color: var(--white); text-align: left; padding: 14px 18px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.comparison-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .table-category td { background: var(--bg-alt); font-weight: 600; font-size: 0.85rem; color: var(--text); }
.price-cell { font-weight: 500; white-space: nowrap; }

/* Costs Grid (Article 06) */
.costs-grid { display: grid; gap: 12px; margin: 24px 0; }
@media (min-width: 600px) { .costs-grid { grid-template-columns: 1fr 1fr; } }
.cost-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 20px;
}
.cost-item .cost-label { font-weight: 600; font-size: 0.9rem; }
.cost-item .cost-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--primary); margin: 4px 0; }
.cost-item .cost-note { font-size: 0.8rem; color: var(--text-light); }

/* Recommendation Grid (Article 06) */
.rec-grid { display: grid; gap: 16px; margin: 24px 0; }
@media (min-width: 600px) { .rec-grid { grid-template-columns: 1fr 1fr; } }
.rec-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 20px;
}
.rec-stage { font-weight: 600; font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.rec-advice { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text); margin-bottom: 6px; }
.rec-detail { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* Calculator Card (Article 06) */
.calculator-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 28px; margin: 32px 0;
}
.calculator-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.calc-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.calc-row:last-child { border-bottom: none; }
.calc-label { font-size: 0.9rem; }
.calc-value { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.calc-total { border-top: 2px solid var(--text); margin-top: 8px; padding-top: 12px; }
.calc-total .calc-label { font-weight: 600; }
.calc-total .calc-value { font-size: 1rem; }

/* Pricing Comparison (Article 06) */
.pricing-comparison {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 24px; margin: 24px 0;
}

/* Before/After Grid for Article 04 */
.before-after-grid { display: grid; gap: 24px; margin: 32px 0; }
@media (min-width: 768px) { .before-after-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 480px) {
  .article-hero { padding: 56px 0 32px; }
  .stat-callout { padding: 24px 20px; }
  .stat-callout .big-num { font-size: 2.5rem; }
  .quotable { padding: 20px 24px; }
  .cta-box { padding: 32px 20px; }
  .share-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ========== NEW: Article Meta (byline + date) ========== */
.article-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin: 12px 0 28px; font-size: 0.9rem; color: var(--text-light);
}
.article-meta .meta-sep { opacity: 0.4; }
.article-meta time { white-space: nowrap; }

/* ========== NEW: Key Takeaways ========== */
.key-takeaways {
  background: var(--bg-alt, #F5F0EB); border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0; padding: 24px 28px; margin: 32px 0;
}
.key-takeaways h2 {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin: 0 0 16px;
  color: var(--text);
}
.key-takeaways ul {
  list-style: none; padding: 0; margin: 0;
}
.key-takeaways li {
  padding: 8px 0 8px 20px; position: relative; line-height: 1.6;
  border-bottom: 1px solid var(--border);
}
.key-takeaways li:last-child { border-bottom: none; }
.key-takeaways li::before {
  content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 600;
}

/* ========== NEW: FAQ Section ========== */
.faq-item {
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600;
  margin: 0 0 8px; color: var(--text);
}
.faq-item p {
  margin: 0; color: var(--text-light); line-height: 1.7;
}

/* ========== NEW: CONNECT Framework Summary ========== */
.framework-summary {
  background: var(--white); border: 2px solid var(--primary); border-radius: 8px;
  padding: 24px 28px; margin: 24px 0;
}
.framework-summary h3 {
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  margin: 0 0 12px; color: var(--primary); text-transform: uppercase; letter-spacing: 1px;
}
.framework-summary ul {
  list-style: none; padding: 0; margin: 0;
}
.framework-summary li {
  padding: 4px 0 4px 0; line-height: 1.6;
}

/* ========== NEW: Comparison table for article 05 ========== */
.comparison-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.comparison-table th, .comparison-table td {
  padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; line-height: 1.5;
}
.comparison-table th {
  background: var(--bg-alt, #F5F0EB); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.table-wrapper { overflow-x: auto; margin: 16px 0; }
