/* ============================================================
   The Church Communicator's Playbook — Guide hub stylesheet
   Shared design system for /guide/ reference pages.
   Tokens, buttons, nav, footer, and demo styles are copied
   verbatim from index.html so the hub matches the homepage
   exactly. Article-specific styles are added at the bottom.
   ============================================================ */

:root {
  --goldenrod: #D4960A;
  --goldenrod-deep: #A8760A;
  --cream: #F8F4EC;
  --ink: #2A2420;
  --ink-card: #1A1210;
  --charcoal: #4A4340;
  --slate: #7A7068;
  --stone: #B5AFA8;
  --white: #FFFFFF;
  --line: #E4DCCE;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
  --ui: 'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
}

a { color: inherit; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.12; margin: 0; letter-spacing: -0.018em; text-wrap: balance; }

.em { color: var(--goldenrod-deep); }
.it { font-style: italic; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }
section { position: relative; }
.pad { padding: clamp(64px, 9vw, 120px) 0; }

/* ---------- Field-guide label ---------- */
.eyebrow, .kicker {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--goldenrod-deep);
  background: rgba(212, 150, 10, .13);
  display: inline-block;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.kicker {
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 13.5px;
}
.eyebrow.light { color: var(--goldenrod); background: rgba(212, 150, 10, .18); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn-primary { background: var(--goldenrod); color: var(--ink); }
.btn-primary:hover { background: var(--goldenrod-deep); color: var(--white); box-shadow: 0 9px 22px rgba(212, 150, 10, .30); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: #100b08; box-shadow: 0 9px 22px rgba(42, 36, 32, .28); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  padding: 13px 22px;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn:active { transform: translateY(0) scale(.98); }

/* secondary upgrade link */
.upgrade {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1.5px solid var(--goldenrod);
  padding-bottom: 2px;
  transition: color .2s ease;
  white-space: nowrap;
  position: relative;
}
.upgrade:hover { color: var(--goldenrod-deep); }
.upgrade::after { content: ""; position: absolute; left: -6px; right: -6px; top: -12px; bottom: -12px; }

.cta-block { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cta-block.center { align-items: center; text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,244,236,.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-mark { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logomark { width: 28px; height: 32px; flex-shrink: 0; display: block; }
.nav-mark-text { font-family: var(--display); font-weight: 600; font-size: 17px; line-height: 1; color: var(--ink); }
.nav-mark-text .it { font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.navlink {
  font-family: var(--ui); font-size: 15px; font-weight: 500; color: var(--charcoal);
  text-decoration: none; transition: color .2s ease; position: relative; padding: 6px 0;
}
.nav-links a.navlink:hover { color: var(--ink); }
.nav-links a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--goldenrod); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a.navlink:hover::after, .nav-links a.navlink:focus-visible::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 18px; font-size: 14.5px; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .2s ease; }
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .2s ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 28px 26px; border-bottom: 1px solid var(--line); background: var(--cream);
}
.mobile-menu.open { display: flex; animation: menuIn .22s ease; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.mobile-menu a.navlink {
  font-family: var(--ui); font-size: 17px; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }

/* ---------- Goldenrod CTA + form ---------- */
.gold { background: var(--goldenrod); color: var(--ink); }
.gold h2 { font-size: clamp(34px, 5vw, 54px); }
.gold .sub { font-size: 20px; color: #5a3f04; max-width: 46ch; margin: 22px auto 0; }
.micro { font-family: var(--ui); font-size: 14.5px; color: #5a3f04; margin-top: 22px; line-height: 1.6; }
.micro a { color: var(--ink); font-weight: 600; border-bottom: 1.5px solid var(--ink); text-decoration: none; padding-bottom: 1px; }

/* ---------- Dark section + skill demos ---------- */
.dark { background: var(--ink); color: var(--cream); }
.dark h2 { color: var(--cream); }
.dark .sub { font-size: 20px; color: var(--stone); max-width: 52ch; }
.demos { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
.demo { background: var(--ink-card); border: 1px solid rgba(181,175,168,.18); border-radius: 16px; padding: 30px 30px 34px; transition: border-color .25s ease, transform .25s ease; }
.demo:hover { border-color: rgba(212,150,10,.45); transform: translateY(-3px); }
.demo .d-cat { font-family: var(--ui); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; }
.demo h4 { font-family: var(--display); font-weight: 600; font-size: 23px; color: var(--goldenrod); margin: 0 0 6px; }
.demo .d-what { font-size: 16.5px; color: var(--stone); margin: 0 0 24px; line-height: 1.55; }
.ba-label { font-family: var(--ui); font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--slate); margin: 18px 0 8px; }
.ba-box { background: rgba(248,244,236,.04); border-left: 2px solid rgba(181,175,168,.3); border-radius: 0; padding: 14px 16px; font-size: 15.5px; color: var(--stone); line-height: 1.5; }
.ba-box.after { border-left-color: var(--goldenrod); color: var(--cream); }
.ba-box.after strong { color: var(--cream); font-weight: 600; }
.ba-box em { color: var(--stone); }
.ba-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.ba-table td { padding: 8px 10px; border-bottom: 1px solid rgba(181,175,168,.14); color: var(--stone); vertical-align: top; }
.ba-table tr td:first-child { color: var(--stone); width: 42%; }
.ba-table tr td:last-child { color: var(--cream); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; font-family: var(--display); font-weight: 600; font-size: clamp(19px, 2.4vw, 23px);
  color: var(--ink); line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .25s ease; }
.faq-item summary .faq-icon::before, .faq-item summary .faq-icon::after {
  content: ""; position: absolute; background: var(--goldenrod-deep); border-radius: 2px;
}
.faq-item summary .faq-icon::before { top: 12px; left: 3px; right: 3px; height: 2.5px; }
.faq-item summary .faq-icon::after { left: 12px; top: 3px; bottom: 3px; width: 2.5px; transition: transform .25s ease; }
.faq-item[open] summary .faq-icon::after { transform: scaleY(0); }
.faq-item summary:hover { color: var(--goldenrod-deep); }
.faq-answer { padding: 0 0 28px; max-width: 68ch; }
.faq-answer p { font-size: 18px; color: var(--charcoal); margin: 0 0 14px; line-height: 1.6; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--stone); padding: 64px 0 48px; }
.foot-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; }
.foot-mark { display: flex; align-items: center; gap: 11px; }
.foot-mark .nav-mark-text { color: var(--cream); }
.foot-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-nav a { font-family: var(--ui); font-size: 15px; color: var(--stone); text-decoration: none; transition: color .2s ease; }
.foot-nav a:hover { color: var(--cream); }
.foot-bottom { margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(181,175,168,.18); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.foot-copy { font-family: var(--ui); font-size: 13.5px; color: var(--slate); }
.foot-disc { font-family: var(--ui); font-size: 13px; color: var(--slate); max-width: 52ch; line-height: 1.5; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in .stagger > *, .reveal.in.stagger > * { opacity: 1; transform: none; }
.reveal.in .stagger > :nth-child(2), .reveal.in.stagger > :nth-child(2) { transition-delay: .08s; }
.reveal.in .stagger > :nth-child(3), .reveal.in.stagger > :nth-child(3) { transition-delay: .16s; }
.reveal.in .stagger > :nth-child(4), .reveal.in.stagger > :nth-child(4) { transition-delay: .24s; }
.reveal.in .stagger > :nth-child(5), .reveal.in.stagger > :nth-child(5) { transition-delay: .32s; }
.reveal.in .stagger > :nth-child(n+6), .reveal.in.stagger > :nth-child(n+6) { transition-delay: .4s; }

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--goldenrod-deep); outline-offset: 3px; border-radius: 2px;
}
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--cream);
  font-family: var(--ui); padding: 12px 18px; z-index: 100; border-radius: 0 0 6px 0;
}
.skip:focus { left: 0; }

/* ============================================================
   Guide-page-specific styles (article, TOC, callouts, hub)
   ============================================================ */

/* ---------- Article hero ---------- */
.g-hero { background: var(--ink); position: relative; overflow: hidden; }
.g-hero::after {
  content: ''; position: absolute; bottom: -120px; right: -120px;
  width: 520px; height: 520px; border: 1.5px solid rgba(212,150,10,.10);
  border-radius: 50%; pointer-events: none;
}
.g-hero .wrap { position: relative; z-index: 1; }
.g-hero .kicker { background: rgba(212,150,10,.18); color: var(--goldenrod); }
.g-hero h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.06; color: var(--white); max-width: 20ch; }
.g-hero h1 .em { color: var(--goldenrod); }
.g-hero .lede { font-size: clamp(18px, 2vw, 21px); color: var(--stone); max-width: 60ch; margin: 26px 0 0; }
.g-hero .hero-rule { width: 52px; height: 2px; background: var(--goldenrod); margin: 28px 0 0; }

/* ---------- Breadcrumb ---------- */
.crumb { font-family: var(--ui); font-size: 13.5px; color: var(--slate); margin-bottom: 22px; }
.crumb a { color: var(--stone); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s ease, color .2s ease; }
.crumb a:hover { color: var(--goldenrod); border-bottom-color: var(--goldenrod); }
.crumb .sep { margin: 0 9px; color: var(--slate); }
.crumb .here { color: var(--stone); }

/* ---------- Table of contents ---------- */
.toc { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 26px 30px; margin: 0 0 8px; }
.toc h2 { font-family: var(--ui); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--goldenrod-deep); margin: 0 0 16px; }
.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; display: grid; gap: 11px; }
.toc li { counter-increment: toc; padding-left: 32px; position: relative; }
.toc li::before {
  content: counter(toc); position: absolute; left: 0; top: 1px;
  font-family: var(--ui); font-weight: 700; font-size: 13px; color: var(--ink);
  background: var(--goldenrod); width: 22px; height: 22px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
}
.toc a { font-family: var(--ui); font-size: 16.5px; font-weight: 500; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.toc a:hover { color: var(--goldenrod-deep); border-bottom-color: var(--goldenrod); }

/* ---------- Prose ---------- */
.prose { max-width: 720px; }
.prose > * + * { margin-top: 22px; }
.prose h2 { font-size: clamp(26px, 3.6vw, 38px); margin-top: 8px; }
.prose h3 { font-size: clamp(21px, 2.6vw, 27px); }
.prose h2 + p, .prose h3 + p { margin-top: 16px; }
.prose p { font-size: 19px; color: var(--charcoal); margin: 0; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a.inline { color: var(--goldenrod-deep); text-decoration: none; border-bottom: 1.5px solid rgba(212,150,10,.45); padding-bottom: 1px; transition: border-color .2s ease; }
.prose a.inline:hover { border-bottom-color: var(--goldenrod-deep); }
.prose ul, .prose ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.prose ul li { font-size: 18px; color: var(--charcoal); padding-left: 26px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 12px; width: 9px; height: 9px; background: var(--goldenrod); border-radius: 2px; }
.prose ol { counter-reset: pro; }
.prose ol li { counter-increment: pro; font-size: 18px; color: var(--charcoal); padding-left: 44px; position: relative; }
.prose ol li::before {
  content: counter(pro); position: absolute; left: 0; top: -2px;
  font-family: var(--ui); font-weight: 700; font-size: 15px; color: var(--ink);
  background: var(--goldenrod); width: 30px; height: 30px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
}
.prose li strong { color: var(--ink); font-weight: 600; }
.prose .section-block > * + * { margin-top: 22px; }

.section-block { margin-top: 56px; }
.section-block:first-child { margin-top: 0; }

/* ---------- Framework card ---------- */
.fw { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 32px 34px; }
.fw .fw-tag { font-family: var(--ui); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--goldenrod-deep); display: block; margin-bottom: 12px; }
.fw h3 { font-size: 24px; margin: 0 0 6px; }
.fw p { font-size: 17.5px; color: var(--charcoal); margin: 10px 0 0; }

.fw-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.fw-cell { background: var(--white); padding: 26px 24px; }
.fw-cell .n { font-family: var(--ui); font-weight: 700; font-size: 15px; color: var(--ink); background: var(--goldenrod); width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.fw-cell h4 { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); margin: 0 0 8px; }
.fw-cell p { font-size: 16px; color: var(--charcoal); margin: 0; line-height: 1.55; }

/* ---------- Callout ---------- */
.callout { background: rgba(212,150,10,.09); border-left: 3px solid var(--goldenrod); border-radius: 0 12px 12px 0; padding: 22px 26px; }
.callout p { font-size: 17.5px; color: var(--ink); margin: 0; }
.callout .c-label { font-family: var(--ui); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--goldenrod-deep); display: block; margin-bottom: 8px; }

/* ---------- Inline CTA strip ---------- */
.cta-strip { background: var(--ink); border-radius: 18px; padding: 40px 40px; text-align: center; }
.cta-strip h2 { color: var(--cream); font-size: clamp(24px, 3.4vw, 32px); max-width: 22ch; margin: 0 auto; }
.cta-strip p { font-size: 18px; color: var(--stone); margin: 16px auto 26px; max-width: 48ch; }

/* ---------- Related pages (internal linking) ---------- */
.related { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.rel-card {
  display: block; background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 28px; text-decoration: none; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.rel-card:hover { transform: translateY(-3px); border-color: rgba(212,150,10,.5); box-shadow: 0 12px 28px rgba(42,36,32,.08); }
.rel-card .r-eyebrow { font-family: var(--ui); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--goldenrod-deep); }
.rel-card h3 { font-size: 21px; color: var(--ink); margin: 10px 0 8px; }
.rel-card p { font-size: 15.5px; color: var(--charcoal); margin: 0; line-height: 1.5; }
.rel-card .r-go { font-family: var(--ui); font-size: 14.5px; font-weight: 600; color: var(--goldenrod-deep); margin-top: 14px; display: inline-block; }

/* ---------- Guide gold form section ---------- */
.gold-form { max-width: 540px; margin: 34px auto 0; }
.gold-form .formkit-form { margin: 0 auto; }
.gold-form .formkit-fields { display: flex; gap: 12px; width: 100%; }
.gold-form .formkit-field { flex: 1 0 auto; min-width: 0; }
.gold-form .formkit-input {
  width: 100%; font-family: var(--ui); font-size: 16px; padding: 15px 18px;
  border: 2px solid var(--ink); border-radius: 999px; background: var(--cream); color: var(--ink);
}
.gold-form .formkit-input::placeholder { color: var(--slate); }
.gold-form .formkit-input:focus { outline: 3px solid rgba(42,36,32,.35); outline-offset: 2px; }
.gold-form .formkit-submit {
  font-family: var(--ui); font-weight: 700; font-size: 16px; letter-spacing: .01em;
  border: 2px solid var(--ink); border-radius: 999px; padding: 0; background: var(--ink); color: var(--cream);
  cursor: pointer; position: relative; overflow: hidden; transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.gold-form .formkit-submit > span { display: block; padding: 15px 26px; }
.gold-form .formkit-submit:hover { background: #100b08; transform: translateY(-2px); box-shadow: 0 9px 22px rgba(42,36,32,.28); }
.gold-form .formkit-alert { list-style: none; margin: 0 0 14px; padding: 12px 16px; border-radius: 12px; font-family: var(--ui); font-size: 14.5px; text-align: center; background: #fde8e2; border: 1px solid #f2643b; color: #b7340f; }
.gold-form .formkit-alert:empty { display: none; }
.gold-form .formkit-spinner { display: flex; height: 0; width: 0; margin: 0 auto; position: absolute; top: 0; left: 0; right: 0; overflow: hidden; transition: all .3s ease; }
.gold-form .formkit-spinner > div { margin: auto; width: 10px; height: 10px; background: var(--cream); opacity: .35; border-radius: 100%; display: inline-block; }
.gold-form .formkit-submit[data-active] .formkit-spinner { opacity: 1; height: 100%; width: 44px; }
.gold-form .formkit-submit[data-active] .formkit-spinner ~ span { opacity: 0; }
@media (max-width: 560px) {
  .gold-form .formkit-fields { flex-direction: column; }
  .gold-form .formkit-submit > span { padding: 15px 26px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 64px; }
  [id] { scroll-margin-top: 78px; }
  .demos { grid-template-columns: 1fr; }
  .fw-grid { grid-template-columns: 1fr; }
  .related { grid-template-columns: 1fr; }
  .cta-strip { padding: 34px 26px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .mobile-menu { padding: 12px 20px 26px; }
  .nav-mark-text { font-size: 15.5px; }
  .toc { padding: 22px 22px; }
  .fw { padding: 26px 22px; }
  .demo { padding: 24px 20px 28px; }
  .foot-bottom { flex-direction: column; }
  .prose p, .prose ul li, .prose ol li { font-size: 17.5px; }
}
