/* ============================================================
   HunterEdGuide — styles.css
   Aesthetic: Field-guide / Topographic / Editorial Outdoors
   Fonts: Playfair Display (headings) + Source Serif 4 (body)
   Palette: Deep Forest, Warm Amber, Birch Cream, Bark Brown
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&family=Fira+Mono:wght@400;500&display=swap');

/* === TOKENS === */
:root {
  --forest:    #1e3a2a;
  --forest-mid:#2a4f3a;
  --moss:      #3d6b4f;
  --sage:      #6b8f6e;
  --amber:     #c8821a;
  --amber-lt:  #e09b30;
  --cream:     #f5f0e8;
  --parchment: #ede5d4;
  --bark:      #4a3728;
  --bark-lt:   #7a5c48;
  --charcoal:  #2c2c2c;
  --mid:       #555;
  --light:     #888;
  --border:    rgba(74,55,40,0.18);
  --shadow:    0 2px 16px rgba(30,58,42,0.10);
  --shadow-md: 0 6px 32px rgba(30,58,42,0.14);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-mono: 'Fira Mono', monospace;

  --max-w: 1140px;
  --col-gap: 2rem;
  --radius: 4px;
  --radius-lg: 8px;

  --transition: 0.22s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--amber); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--bark); }
ul, ol { padding-left: 1.5rem; }

/* === TOPOGRAPHIC TEXTURE OVERLAY === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* === LAYOUT === */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

/* === SITE HEADER === */
.site-header {
  background: var(--forest);
  border-bottom: 3px solid var(--amber);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.site-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #fff;
  line-height: 1;
}
.site-logo .logo-text span { color: var(--amber-lt); }

/* === NAV === */
.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav a {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-nav .nav-cta {
  background: var(--amber);
  color: #fff !important;
  margin-left: 0.5rem;
  padding: 0.45rem 1rem;
}
.site-nav .nav-cta:hover { background: var(--amber-lt); }

.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* === BREADCRUMB === */
.breadcrumb {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: var(--light);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--bark-lt); }
.breadcrumb span { margin: 0 0.4rem; }

/* === HERO === */
.hero {
  background: var(--forest);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'%3E%3Cellipse cx='900' cy='200' rx='500' ry='350' fill='%232a4f3a' opacity='0.5'/%3E%3Ccircle cx='200' cy='350' r='250' fill='%23253d2e' opacity='0.4'/%3E%3C/svg%3E") no-repeat center/cover;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  max-width: 720px;
}
.hero h1 em { color: var(--amber-lt); font-style: italic; }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.80);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover { background: var(--amber-lt); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,130,26,0.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.btn-green { background: var(--moss); color: #fff; }
.btn-green:hover { background: var(--forest-mid); color: #fff; transform: translateY(-1px); }

/* === TRUST BAR === */
.trust-bar {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--bark-lt);
  font-weight: 600;
}
.trust-item .ti-icon { font-size: 1.1rem; }

/* === PAGE SECTION === */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-dark { background: var(--forest); color: #fff; }
.section-parchment { background: var(--parchment); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--forest);
}
.section-dark .section-title { color: #fff; }
.section-intro {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-dark .section-intro { color: rgba(255,255,255,0.75); }

/* === CARD GRID === */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--parchment);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.card h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--forest); }
.card p { font-size: 0.9rem; color: var(--mid); line-height: 1.6; margin-bottom: 1rem; }
.card .card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card .card-link::after { content: ' →'; }

/* === ARTICLE LAYOUT === */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.article-body { min-width: 0; }
.article-sidebar { position: sticky; top: 80px; }

.article-header { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border); }
.article-meta { font-size: 0.82rem; color: var(--light); margin-bottom: 1rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.article-meta strong { color: var(--bark-lt); }
.article-title { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.2; color: var(--forest); margin-bottom: 0.75rem; }
.article-lead { font-size: 1.15rem; color: var(--mid); line-height: 1.7; border-left: 4px solid var(--amber); padding-left: 1.2rem; }

.article-body h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--forest); margin: 2.5rem 0 0.75rem; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.article-body h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--bark); margin: 1.8rem 0 0.5rem; }
.article-body h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--charcoal); margin: 1.2rem 0 0.4rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin-bottom: 1.2rem; }
.article-body li { margin-bottom: 0.4rem; }
.article-body strong { color: var(--forest); }
.article-body a { color: var(--amber); border-bottom: 1px solid rgba(200,130,26,0.3); }
.article-body a:hover { border-color: var(--amber); }

/* === CALLOUT BOXES === */
.callout {
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  margin: 1.8rem 0;
  border-left: 4px solid;
  font-size: 0.95rem;
}
.callout-tip { background: #f0f7f1; border-color: var(--moss); }
.callout-warn { background: #fdf6ec; border-color: var(--amber); }
.callout-alert { background: #fdf0f0; border-color: #c0392b; }
.callout-info { background: #f0f4f8; border-color: #3a7bbf; }
.callout strong { display: block; margin-bottom: 0.35rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.callout-tip strong { color: var(--moss); }
.callout-warn strong { color: var(--amber); }
.callout-alert strong { color: #c0392b; }
.callout-info strong { color: #3a7bbf; }

/* === STATE TABLE === */
.state-table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table.state-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
table.state-table th {
  background: var(--forest);
  color: #fff;
  text-align: left;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
table.state-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
table.state-table tr:last-child td { border-bottom: none; }
table.state-table tr:nth-child(even) td { background: var(--parchment); }
table.state-table tr:hover td { background: #f0f7f1; }
.tag { display: inline-block; padding: 0.15rem 0.55rem; border-radius: 2px; font-size: 0.75rem; font-weight: 600; }
.tag-yes { background: #d4edda; color: #155724; }
.tag-no { background: #f8d7da; color: #721c24; }
.tag-partial { background: #fff3cd; color: #856404; }
.tag-varies { background: #d1ecf1; color: #0c5460; }

/* === SIDEBAR WIDGETS === */
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.sw-head {
  background: var(--forest);
  color: #fff;
  padding: 0.75rem 1.1rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
}
.sw-body { padding: 1.1rem; }
.sw-body ul { list-style: none; padding: 0; }
.sw-body ul li { border-bottom: 1px solid var(--border); padding: 0.5rem 0; font-size: 0.88rem; }
.sw-body ul li:last-child { border-bottom: none; }
.sw-body ul li a { color: var(--charcoal); }
.sw-body ul li a:hover { color: var(--amber); }
.sw-cta { background: var(--parchment); border-radius: var(--radius); padding: 1rem; text-align: center; }
.sw-cta p { font-size: 0.88rem; color: var(--mid); margin-bottom: 0.75rem; }

/* === FAQ ACCORDION === */
.faq-section { margin: 2.5rem 0; }
.faq-section h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--forest); margin-bottom: 1.2rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 0.75rem; overflow: hidden; }
.faq-q {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--parchment); }
.faq-q .faq-arrow { font-size: 0.9rem; color: var(--amber); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.2rem 1rem;
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  background: var(--parchment);
}
.faq-item.open .faq-a { display: block; }

/* === STEP LIST === */
.step-list { list-style: none; padding: 0; counter-reset: steps; }
.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.step-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--forest);
  color: var(--amber-lt);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-list li .step-content h4 { font-weight: 600; color: var(--forest); margin-bottom: 0.25rem; }
.step-list li .step-content p { font-size: 0.92rem; color: var(--mid); margin: 0; }

/* === CHECKLIST === */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--moss); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* === TOOL WIDGET === */
.tool-box {
  background: #fff;
  border: 2px solid var(--forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tool-box-head {
  background: var(--forest);
  color: #fff;
  padding: 1.25rem 1.5rem;
}
.tool-box-head h2 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 0.25rem; color: #fff; }
.tool-box-head p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin: 0; }
.tool-box-body { padding: 1.5rem; }
.tool-field { margin-bottom: 1.25rem; }
.tool-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.tool-field select, .tool-field input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  appearance: none;
  transition: border-color var(--transition);
}
.tool-field select:focus, .tool-field input:focus {
  outline: none;
  border-color: var(--amber);
}
.tool-result {
  background: var(--parchment);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 4px solid var(--amber);
  margin-top: 1.25rem;
  display: none;
}
.tool-result.visible { display: block; }
.tool-result h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--forest); margin-bottom: 0.75rem; }
.tool-result ul { font-size: 0.9rem; color: var(--mid); }
.tool-result ul li { margin-bottom: 0.35rem; }
.tool-result .result-steps { margin-top: 0.75rem; }
.tool-result .result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest);
  color: var(--amber-lt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

/* === STATE CARDS === */
.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.state-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--charcoal);
}
.state-card:hover { border-color: var(--amber); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--forest); }
.state-card .sc-abbr { font-family: var(--font-head); font-size: 1.6rem; color: var(--amber); font-weight: 700; }
.state-card .sc-name { font-size: 0.82rem; color: var(--mid); margin-top: 0.2rem; }
.state-card .sc-fee { font-size: 0.78rem; color: var(--bark-lt); font-weight: 600; margin-top: 0.3rem; }

/* === DOWNLOAD BOX === */
.download-box {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0;
}
.download-icon { font-size: 2.5rem; flex-shrink: 0; }
.download-text h3 { font-family: var(--font-head); font-size: 1.2rem; color: #fff; margin-bottom: 0.4rem; }
.download-text p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin: 0; }
.download-action { margin-left: auto; flex-shrink: 0; }

/* === DISCLAIMER === */
.disclaimer {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  color: var(--light);
  margin: 2.5rem 0 0;
  line-height: 1.6;
}
.disclaimer strong { color: var(--bark-lt); }

/* === FOOTER === */
.site-footer {
  background: var(--bark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}
.footer-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.7rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  color: var(--amber-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--amber-lt); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--amber-lt); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--forest); padding: 1rem; gap: 0.25rem; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .download-box { flex-direction: column; text-align: center; }
  .download-action { margin-left: 0; }
  .trust-bar-inner { gap: 1.2rem; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === PRINT === */
@media print {
  .site-header, .site-nav, .site-footer, .article-sidebar { display: none; }
  body { background: #fff; font-size: 11pt; }
  .article-body h2, .article-body h3 { page-break-after: avoid; }
}
