/* ============================================================
   homecarehelp.com.au — shared stylesheet
   Static kit · no build step · one file
   Sections: 1 Tokens · 2 Base · 3 Type · 4 Layout (header/footer)
             5 Components · 6 Utilities · 7 Print
   ============================================================ */

/* 1. TOKENS --------------------------------------------------- */
:root {
  /* Colour — warm paper, near-black ink, one deep green accent */
  --paper:        #FBF8F2;  /* page background (warm off-white) */
  --paper-deep:   #F2EBDF;  /* deeper warm tint — summary box, footer */
  --ink:          #262219;  /* body text — 13.9:1 on paper (AAA) */
  --ink-soft:     #575040;  /* meta text — 7.2:1 on paper (AAA)  */
  --green:        #1A6350;  /* accent — rules, marks, badges     */
  --green-deep:   #0D4A3A;  /* links, buttons — 8.6:1 on paper   */
  --green-tint:   #E7EFE8;  /* info callout background           */
  --amber-tint:   #F9EFDA;  /* warning callout background        */
  --amber-edge:   #9C6B14;  /* warning callout border            */
  --line:         #E3DAC8;  /* hairlines, table rules            */
  --focus:        #0D4A3A;

  /* Type — serif headings (warm, not corporate), sans body */
  --font-head: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --size-body:  1.1875rem; /* 19px */
  --size-small: 1rem;      /* 16px — absolute floor */
  --size-h1: 2.25rem;      /* 36px */
  --size-h2: 1.625rem;     /* 26px */
  --size-h3: 1.3125rem;    /* 21px */
  --leading: 1.65;

  /* Spacing — 4px base scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 72px;

  /* Shape — soft but not pill (avoid gov/myGov pill look) */
  --radius: 6px;
  --measure: 42rem;    /* prose column ~672px */
  --wide: 71.25rem;    /* wide layouts 1140px */
}

/* 2. BASE ------------------------------------------------------ */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--leading);
}
img, svg { max-width: 100%; height: auto; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--green-deep); color: #fff;
  padding: var(--s-3) var(--s-5); z-index: 100;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: var(--s-4); top: var(--s-4); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* 3. TYPE ------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  text-wrap: pretty;
}
h1 { font-size: var(--size-h1); letter-spacing: -0.01em; }
h2 { font-size: var(--size-h2); margin-top: var(--s-7); }
h3 { font-size: var(--size-h3); margin-top: var(--s-6); }
p, ul, ol { margin: 0 0 var(--s-5); }
li { margin-bottom: var(--s-2); }
ul, ol { padding-left: 1.4em; }
strong { font-weight: 700; }

/* Links — always underlined in body copy */
a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--ink); text-decoration-thickness: 2.5px; }

.lede { font-size: 1.375rem; line-height: 1.55; color: var(--ink); }
.meta { font-size: var(--size-small); color: var(--ink-soft); }

/* 4. LAYOUT ---------------------------------------------------- */
.container { max-width: var(--wide); margin: 0 auto; padding: 0 var(--s-4); }
.prose { max-width: var(--measure); }
main { padding: var(--s-6) 0 var(--s-8); }

/* Header */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); }
.site-header .container {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--s-4) var(--s-6); padding-top: var(--s-4); padding-bottom: var(--s-4);
}
.wordmark { text-decoration: none; color: var(--ink); display: block; line-height: 1.2; }
.wordmark .name { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; }
.wordmark .name em { font-style: normal; color: var(--green); }
.wordmark .tag { display: block; font-size: 0.875rem; color: var(--ink-soft); }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; flex-wrap: wrap; gap: var(--s-2); list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: var(--s-2) var(--s-3); text-decoration: none;
  color: var(--ink); font-size: 1.0625rem; border-radius: var(--radius);
}
.site-nav a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-nav a[aria-current="true"] { font-weight: 700; color: var(--green-deep); }
.site-nav .nav-cta a {
  background: var(--green-deep); color: #fff; font-weight: 600;
  padding: var(--s-2) var(--s-4);
}
.site-nav .nav-cta a:hover { background: var(--ink); text-decoration: none; }

/* Independence strip — persistent, designed, above the fold */
.independence-strip {
  background: var(--paper-deep); border-bottom: 1px solid var(--line);
  font-size: var(--size-small); color: var(--ink);
  text-align: center; padding: var(--s-2) var(--s-4);
}

/* Footer */
.site-footer { background: var(--paper-deep); border-top: 3px solid var(--green); margin-top: var(--s-8); }
.site-footer .container { padding-top: var(--s-6); padding-bottom: var(--s-6); }
.independence-block {
  display: flex; gap: var(--s-4); align-items: flex-start;
  max-width: var(--measure);
  border: 2px solid var(--green); border-radius: var(--radius);
  background: var(--paper); padding: var(--s-4) var(--s-5);
  margin-bottom: var(--s-6);
}
.independence-block .mark {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
}
.independence-block p { margin: 0; font-weight: 600; }
.independence-block .disclosure { font-weight: 400; font-size: var(--size-small); color: var(--ink-soft); margin-top: var(--s-2); }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--s-5); }
.footer-cols h2 { font-size: 1.0625rem; font-family: var(--font-body); margin: 0 0 var(--s-3); }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: var(--s-2); }
.footer-cols a { display: inline-block; padding: var(--s-1) 0; color: var(--ink); font-size: 1.0625rem; }
.footer-legal { margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--line); font-size: var(--size-small); color: var(--ink-soft); }

/* 5. COMPONENTS ------------------------------------------------ */

/* Breadcrumb */
.breadcrumb { font-size: var(--size-small); margin: 0 0 var(--s-5); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-2); margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: var(--s-2); color: var(--ink-soft); }
.breadcrumb a { color: var(--green-deep); }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); }

/* Date stamp */
.datestamp {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--size-small); color: var(--ink-soft); margin-bottom: var(--s-5);
}
.datestamp .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; }

/* Summary box — “The short version” */
.summary-box {
  background: var(--paper-deep); border-radius: var(--radius);
  padding: var(--s-5) var(--s-5) var(--s-4);
  margin: 0 0 var(--s-6); max-width: var(--measure);
}
.summary-box > h2 {
  margin: 0 0 var(--s-3); font-size: var(--size-h3);
  display: flex; align-items: center; gap: var(--s-3);
}
.summary-box > h2::before {
  content: ""; width: 14px; height: 14px; border-radius: 3px;
  background: var(--green); flex: none;
}
.summary-box ul { margin-bottom: var(--s-2); }

/* Callouts */
.callout {
  border-radius: var(--radius); padding: var(--s-4) var(--s-5);
  margin: var(--s-5) 0; max-width: var(--measure);
}
.callout > :last-child { margin-bottom: 0; }
.callout .callout-label {
  display: block; font-weight: 700; font-size: var(--size-small);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: var(--s-2);
}
.callout-info    { background: var(--green-tint); border: 1px solid var(--green); }
.callout-info    .callout-label { color: var(--green-deep); }
.callout-warning { background: var(--amber-tint); border: 1px solid var(--amber-edge); }
.callout-warning .callout-label { color: #6E4A0C; }

/* Change-flag — “Updated [date]” (core brand element) */
.callout-updated { background: var(--paper); border: 2px solid var(--green); position: relative; margin-top: var(--s-6); }
.callout-updated .callout-label {
  position: absolute; top: -14px; left: var(--s-4);
  background: var(--green); color: #fff;
  padding: 3px 12px; border-radius: var(--radius);
  text-transform: none; letter-spacing: 0; font-size: var(--size-small);
}
.callout-updated { padding-top: var(--s-5); }

/* Numbered journey steps */
.steps { list-style: none; margin: var(--s-5) 0 var(--s-6); padding: 0; max-width: var(--measure); counter-reset: step; }
.steps > li {
  counter-increment: step; position: relative;
  padding: 0 0 var(--s-5) 64px; margin: 0;
}
.steps > li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-deep); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  display: grid; place-items: center;
}
.steps > li:not(:last-child)::after {
  content: ""; position: absolute; left: 21px; top: 50px; bottom: 4px;
  width: 2px; background: var(--line);
}
.steps h3 { margin: 0 0 var(--s-1); font-size: var(--size-h3); }
.steps .timeframe {
  display: inline-block; font-size: var(--size-small); color: var(--green-deep);
  font-weight: 600; margin-bottom: var(--s-2);
}
.steps p { margin-bottom: 0; }

/* FAQ — native details/summary */
.faq { max-width: var(--measure); margin: var(--s-5) 0; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: var(--s-3); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: var(--s-4) var(--s-7) var(--s-4) var(--s-4);
  font-weight: 600; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: var(--s-4); top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--green-deep); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq-body { padding: var(--s-4); }
.faq .faq-body > :last-child { margin-bottom: 0; }

/* CTA blocks */
.cta-block {
  background: var(--green-deep); color: #fff;
  border-radius: var(--radius); padding: var(--s-5) var(--s-5);
  margin: var(--s-6) 0; max-width: var(--measure);
}
.cta-block h2, .cta-block h3 { color: #fff; margin: 0 0 var(--s-2); font-size: var(--size-h3); }
.cta-block p { margin-bottom: var(--s-4); }
.cta-block a { color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: var(--s-3) var(--s-5);
  border-radius: var(--radius); border: 2px solid transparent;
  font-family: var(--font-body); font-size: var(--size-body); font-weight: 600;
  text-decoration: none; cursor: pointer;
}
.btn-primary { background: var(--green-deep); color: #fff; }
.btn-primary:hover { background: var(--ink); color: #fff; }
.btn-secondary { background: transparent; color: var(--green-deep); border-color: var(--green-deep); }
.btn-secondary:hover { background: var(--green-tint); color: var(--green-deep); }
.cta-block .btn-primary { background: #fff; color: var(--green-deep); }
.cta-block .btn-primary:hover { background: var(--paper-deep); }
.cta-block .btn-secondary { color: #fff; border-color: #fff; }
.cta-block .btn-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--green-deep); border-top: 1px solid var(--ink);
  padding: var(--s-3) var(--s-4);
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center;
  min-height: 44px; color: #fff; font-weight: 600; text-decoration: none;
  font-size: 1.0625rem;
}
.sticky-cta a:hover { text-decoration: underline; }
@media (max-width: 767px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* Data tables — legible at 320px via horizontal scroll wrapper */
.table-wrap { overflow-x: auto; margin: var(--s-5) 0; max-width: var(--measure); }
table { border-collapse: collapse; width: 100%; min-width: 460px; font-size: 1.0625rem; background: #fff; }
caption { text-align: left; font-weight: 700; font-family: var(--font-head); font-size: var(--size-h3); padding-bottom: var(--s-3); }
th, td { text-align: left; padding: var(--s-3) var(--s-4); border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--paper-deep); border-bottom: 2px solid var(--green); font-size: var(--size-small); }
tbody th { font-weight: 600; }
.table-note { font-size: var(--size-small); color: var(--ink-soft); margin-top: calc(-1 * var(--s-3)); max-width: var(--measure); }

/* Figures-current stamp (money pages) */
.figures-current {
  display: inline-block; background: var(--green-tint);
  border: 1px solid var(--green); border-radius: var(--radius);
  padding: var(--s-2) var(--s-4); font-size: var(--size-small); font-weight: 600;
  color: var(--green-deep); margin-bottom: var(--s-5);
}

/* Sources block */
.sources { max-width: var(--measure); margin-top: var(--s-7); border-top: 2px solid var(--line); padding-top: var(--s-5); }
.sources h2 { font-size: var(--size-h3); margin-top: 0; }
.sources ol { font-size: var(--size-small); color: var(--ink-soft); }
.sources li { margin-bottom: var(--s-2); }

/* Related-guides list */
.related { max-width: var(--measure); }
.related ul { list-style: none; margin: 0; padding: 0; }
.related li { margin: 0; border-bottom: 1px solid var(--line); }
.related a { display: block; padding: var(--s-3) 0; min-height: 44px; }

/* Homepage */
.home-hero { max-width: var(--measure); padding: var(--s-6) 0 var(--s-5); }
.home-hero h1 { font-size: clamp(2.25rem, 5vw, 2.75rem); }
.path-grid, .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-4); margin: var(--s-4) 0 var(--s-6); }
.path-card, .topic-card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s-5);
  text-decoration: none; color: var(--ink);
}
.path-card:hover, .topic-card:hover { border-color: var(--green); }
.path-card h3, .topic-card h3 { margin: 0 0 var(--s-2); color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }
.path-card p, .topic-card p { margin: 0 0 var(--s-3); font-size: 1.0625rem; }
.path-step {
  display: inline-grid; place-items: center; width: 36px; height: 36px;
  border-radius: 50%; background: var(--green-tint); color: var(--green-deep);
  font-family: var(--font-head); font-weight: 700; margin-bottom: var(--s-3);
}
.path-go { font-weight: 600; color: var(--green-deep); }
.topic-card p:last-child { margin-bottom: 0; }
.home-cta { max-width: none; }
.update-list { list-style: none; margin: var(--s-4) 0; padding: 0; max-width: var(--measure); }
.update-list li { display: flex; gap: var(--s-4); padding: var(--s-3) 0; border-bottom: 1px solid var(--line); }
.update-list .update-date { flex: none; width: 110px; font-size: var(--size-small); font-weight: 700; color: var(--green-deep); padding-top: 2px; }
.update-list p { margin: 0; }
@media (max-width: 480px) { .update-list li { flex-direction: column; gap: var(--s-1); } .update-list .update-date { width: auto; } }

/* Pillar hub */
.hub-intro { max-width: var(--measure); margin-bottom: var(--s-5); }
.guide-card { position: relative; }
.guide-card .meta { display: block; margin-top: var(--s-2); }

/* Classification level page */
.level-hero {
  background: var(--paper-deep); border-radius: var(--radius);
  padding: var(--s-6) var(--s-5); margin-bottom: var(--s-6); max-width: var(--measure);
}
.level-hero .level-eyebrow { font-size: var(--size-small); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-deep); display: block; margin-bottom: var(--s-2); }
.level-hero h1 { margin-bottom: var(--s-4); }
.level-figures { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.level-figures .fig { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-3) var(--s-4); }
.level-figures .fig .amount { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.75rem; color: var(--green-deep); }
.level-figures .fig .per { font-size: var(--size-small); color: var(--ink-soft); }
.level-nav { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between; max-width: var(--measure); margin: var(--s-6) 0; }
.level-nav a {
  display: inline-flex; align-items: center; min-height: 48px;
  padding: var(--s-2) var(--s-4); border: 2px solid var(--green-deep);
  border-radius: var(--radius); text-decoration: none; font-weight: 600; color: var(--green-deep);
}
.level-nav a:hover { background: var(--green-tint); }

/* Provider card */
.provider-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--s-4); margin: var(--s-5) 0; }
.provider-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); }
.provider-card h3 { margin: 0; }
.provider-card .services { display: flex; flex-wrap: wrap; gap: var(--s-2); list-style: none; margin: 0; padding: 0; }
.provider-card .services li { background: var(--green-tint); color: var(--green-deep); font-size: var(--size-small); font-weight: 600; padding: 3px 10px; border-radius: var(--radius); margin: 0; }
.provider-card .areas, .provider-card .pricing { font-size: 1.0625rem; margin: 0; }
.provider-card .pricing { color: var(--ink-soft); }
.provider-card .gate { margin-top: auto; }
.gate-reveal { border-top: 1px solid var(--line); padding-top: var(--s-3); }
.gate-reveal p { margin: 0 0 var(--s-2); }
.gate-reveal .phone { font-family: var(--font-head); font-weight: 700; font-size: 1.375rem; }

/* Filter bar (directory) */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: end; background: var(--paper-deep); border-radius: var(--radius); padding: var(--s-4); margin: var(--s-5) 0; }
.filter-bar .field { margin: 0; }
.filter-bar label { display: block; font-size: var(--size-small); font-weight: 600; margin-bottom: var(--s-1); }
.filter-bar select, .filter-bar input { min-height: 48px; font-size: var(--size-body); font-family: var(--font-body); padding: var(--s-2) var(--s-3); border: 2px solid var(--ink-soft); border-radius: var(--radius); background: #fff; color: var(--ink); }

/* Enquiry form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-6) var(--s-5); max-width: 36rem; margin: var(--s-5) 0; }
.field { margin-bottom: var(--s-5); }
.field label { display: block; font-weight: 600; margin-bottom: var(--s-2); }
.field .hint { display: block; font-size: var(--size-small); color: var(--ink-soft); font-weight: 400; margin-top: 2px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; font-size: var(--size-body); font-family: var(--font-body);
  padding: var(--s-3) var(--s-4); border: 2px solid var(--ink-soft); border-radius: var(--radius);
  background: #fff; color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-deep); outline: 3px solid var(--green-deep); outline-offset: 1px; }
.field.has-error input { border-color: #8F2A1D; }
.field .error { display: block; color: #8F2A1D; font-weight: 600; font-size: var(--size-small); margin-top: var(--s-2); }
.privacy-note { font-size: var(--size-small); color: var(--ink-soft); max-width: 36rem; }

/* Updates log */
.log { list-style: none; margin: var(--s-5) 0; padding: 0; max-width: var(--measure); }
.log > li { border-left: 3px solid var(--green); padding: 0 0 var(--s-6) var(--s-5); position: relative; }
.log > li::before { content: ""; position: absolute; left: -8px; top: 6px; width: 13px; height: 13px; border-radius: 50%; background: var(--green); }
.log time { display: block; font-size: var(--size-small); font-weight: 700; color: var(--green-deep); margin-bottom: var(--s-1); }
.log h2, .log h3 { margin: 0 0 var(--s-2); font-size: var(--size-h3); }
.log p { margin-bottom: var(--s-2); }

/* Worked-example cards (costs) */
.example-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s-4); margin: var(--s-5) 0; max-width: var(--measure); }
.example-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: var(--radius); padding: var(--s-4); }
.example-card h3 { margin: 0 0 var(--s-2); font-size: var(--size-h3); }
.example-card dl { margin: 0; font-size: 1.0625rem; }
.example-card dt { font-weight: 600; margin-top: var(--s-3); }
.example-card dd { margin: 0; color: var(--ink-soft); }
.example-card .total { font-family: var(--font-head); font-weight: 700; font-size: 1.375rem; color: var(--green-deep); }

/* 6. UTILITIES -------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* 7. PRINT ------------------------------------------------------ */
@media print {
  body { background: #fff; color: #000; font-size: 12pt; padding-bottom: 0; }
  .site-nav, .independence-strip, .cta-block, .sticky-cta, .skip-link, .breadcrumb { display: none; }
  .site-header { border-bottom: 2px solid #000; }
  a { color: #000; }
  .callout, .summary-box { border: 1.5pt solid #000; background: #fff; }
  .callout-updated .callout-label { position: static; background: #fff; color: #000; padding: 0; font-weight: 700; }
  .faq details { border: 1pt solid #000; }
  /* Closed <details> can't be force-opened by CSS alone; templates include a
     tiny optional beforeprint enhancement to open FAQs for printing. */
  .site-footer { background: #fff; border-top: 2px solid #000; }
  .independence-block { border-color: #000; }
  .independence-block .mark { background: #000; color: #fff; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .footer-cols { display: none; }
  h2, h3 { break-after: avoid; }
  .callout, .summary-box, table, .steps > li { break-inside: avoid; }
}
