@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* =========================================================
   Home Cyber Guide — Digital Safety for the Home & Family
   Design system: calm, warm, family-friendly, accessible, mobile-first.
   ========================================================= */

/* ---------- Theme tokens ---------- */
:root {
  /* "Home Cyber Guide" palette — calm, warm, family-friendly:
     deep navy for trust, soft sage-teal for action & safety,
     warm gold for support, on a warm off-white. Not a "cyber dashboard". */
  --teal-50:  #eef6f2;
  --teal-100: #d7ece2;
  --teal-300: #8fcab4;
  --teal-500: #4d9d81;
  --teal-600: #3c8a70;
  --teal-700: #2f6f5a;

  --navy-700: #243d5c;
  --navy-800: #17283f;

  --gold-100: #fbeccb;
  --gold-400: #ecc25f;
  --gold-500: #e3b24a;

  --rose-100: #fde6e2;
  --rose-500: #df6557;

  --green-100: #e3f3e8;
  --green-600: #3e9b6e;

  /* Neutrals — warm off-white surfaces & soft navy-gray ink */
  --bg:        #f7f4ef;
  --surface:   #ffffff;
  --surface-2: #f1ece3;
  --border:    #eae2d7;
  --text:      #1f3251;
  --text-soft: #4c5d74;
  --text-mute: #87929f;

  /* Semantic */
  --brand:        var(--teal-600);
  --brand-strong: var(--teal-700);
  --brand-soft:   var(--teal-50);
  --accent:       var(--gold-500);
  --danger:       var(--rose-500);
  --ok:           var(--green-600);

  /* Type — soft, rounded, friendly */
  --font: "Nunito", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-base: 1.075rem;       /* generous & legible for all ages */
  --lh: 1.7;

  /* Shape & depth — generous rounding, soft warm shadows */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(40,55,75,.05), 0 2px 6px rgba(40,55,75,.05);
  --shadow:    0 6px 20px rgba(40,55,75,.07), 0 2px 6px rgba(40,55,75,.05);
  --shadow-lg: 0 22px 48px rgba(40,55,75,.12);

  --maxw: 1180px;
  --maxw-read: 760px;
}

[data-theme="dark"] {
  --bg:        #101713;
  --surface:   #18211c;
  --surface-2: #1f2a24;
  --border:    #2c3a32;
  --text:      #e9efe9;
  --text-soft: #b6c3bb;
  --text-mute: #88958c;

  --brand:        var(--teal-300);
  --brand-strong: var(--teal-100);
  --brand-soft:   #14302a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow:    0 4px 16px rgba(0,0,0,.35);
  --shadow-lg: 0 18px 40px rgba(0,0,0,.5);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: var(--lh);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.22; color: var(--text); font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5vw, 3rem); margin: 0 0 .4em; letter-spacing: -.015em; font-weight: 900; }
h2 { font-size: clamp(1.45rem, 3vw, 1.95rem); margin: 1.7em 0 .55em; letter-spacing: -.01em; }
h3 { font-size: 1.22rem; margin: 1.4em 0 .4em; }
p  { margin: 0 0 1.05em; color: var(--text-soft); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--brand);
  color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; gap: 16px;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.18rem; color: var(--text);
  letter-spacing: -.02em;
}
.brand:hover { text-decoration: none; }
.brand .logo {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff; box-shadow: var(--shadow-sm); flex: none;
}
.brand .logo svg { width: 21px; height: 21px; }
.brand small { display: block; font-weight: 500; font-size: .68rem; color: var(--text-mute); letter-spacing: .01em; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  color: var(--text-soft); font-weight: 600; font-size: .96rem;
  padding: 8px 12px; border-radius: 9px;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); text-decoration: none; }
.nav-links a.active { color: var(--brand-strong); background: var(--brand-soft); }

.icon-btn {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--border); background: var(--surface);
  border-radius: 11px; cursor: pointer; color: var(--text-soft);
}
.icon-btn:hover { color: var(--text); border-color: var(--brand); }
.icon-btn svg { width: 20px; height: 20px; }
.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 820px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 12px 16px 18px; box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .18s, opacity .18s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: 1.05rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 1rem; line-height: 1;
  padding: 14px 24px; border-radius: 14px; cursor: pointer;
  border: 1px solid transparent; transition: transform .08s, box-shadow .15s, background .15s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(60,138,112,.28); }
.btn-primary:hover { background: var(--brand-strong); box-shadow: 0 8px 22px rgba(60,138,112,.34); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-strong); }
.btn-donate { background: var(--accent); color: #4a3a12; box-shadow: 0 6px 16px rgba(227,178,74,.3); }
.btn-donate:hover { background: var(--gold-400); }
.btn-lg { padding: 17px 30px; font-size: 1.1rem; border-radius: 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 420px at 88% -8%, #e6f0fb, transparent 62%),
    radial-gradient(900px 360px at 0% 0%, var(--gold-100), transparent 55%);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .hero {
  background:
    radial-gradient(1100px 380px at 85% -10%, #14241d, transparent 60%),
    radial-gradient(900px 360px at 0% 0%, #1f2a22, transparent 55%);
}
.hero-inner { padding: 72px 0 84px; display: grid; gap: 48px; grid-template-columns: 1.05fr .95fr; align-items: center; }
.hero h1 { margin-bottom: .32em; }
.hero .lede { font-size: 1.22rem; color: var(--text-soft); max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px 30px; margin-top: 32px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; color: var(--text-soft); font-weight: 700; font-size: .95rem; }
.hero-trust svg { width: 22px; height: 22px; color: var(--ok); flex: none; }

/* Soft wave at the bottom of the hero */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 70px; display: block; color: var(--bg); }

/* Friendly hero illustration */
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art svg { width: 100%; max-width: 520px; height: auto; }
.hero-art .blob { color: var(--teal-100); }
.hero-art .shield { color: var(--teal-600); }
.hero-art .shield-soft { color: var(--teal-500); }
.hero-art .bubble { fill: var(--surface); stroke: var(--border); }
.hero-art .ink { color: var(--navy-700); }
.hero-art .check-badge { fill: var(--ok); }
.hero-art .accent { color: var(--gold-400); }
[data-theme="dark"] .hero-art .bubble { fill: var(--surface); stroke: var(--border); }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 0 70px; gap: 30px; }
  .hero .lede { max-width: none; }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 380px; }
}

/* ---------- Progress strip (calm, in the library) ---------- */
.progress-strip {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 28px; box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.progress-strip .ring-wrap { display: flex; align-items: center; gap: 20px; flex: 1 1 auto; }
.progress-strip h3 { margin: 0; font-size: 1.02rem; }
.ring { --p: 0; width: 104px; height: 104px; flex: none; position: relative; }
.ring svg { transform: rotate(-90deg); }
.ring .track { stroke: var(--surface-2); }
.ring .fill { stroke: var(--brand); stroke-linecap: round; transition: stroke-dashoffset .6s ease; }
.ring .pct { position: absolute; inset: 0; display: grid; place-items: center; font-weight: 900; font-size: 1.4rem; color: var(--text); }
.ring-meta strong { display: block; font-size: 1.4rem; font-weight: 900; }
.ring-meta span { color: var(--text-mute); font-size: .92rem; }
.ring-note { margin-top: 8px; font-size: .9rem; color: var(--text-soft); max-width: 46ch; }
@media (max-width: 620px) { .progress-strip { padding: 20px; } .progress-strip .btn { width: 100%; } }

/* ---------- Section headers ---------- */
.section { padding: 56px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.section-head h2 { margin: 0; }
.section-head p { margin: 4px 0 0; color: var(--text-mute); }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 800; color: var(--brand); margin: 0 0 6px; }

/* ---------- Toolbar (search + filters) ---------- */
.toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }
.search {
  position: relative; flex: 1 1 280px; min-width: 220px;
}
.search input {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  padding: 14px 16px 14px 46px; border: 1px solid var(--border);
  background: var(--surface); border-radius: 14px;
}
.search input::placeholder { color: var(--text-mute); }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--text-mute); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font: inherit; font-size: .9rem; font-weight: 600; cursor: pointer;
  padding: 9px 15px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text-soft); white-space: nowrap;
}
.chip:hover { border-color: var(--brand); color: var(--brand-strong); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- Guide grid ---------- */
.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.card {
  display: flex; flex-direction: column; position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .14s, box-shadow .16s, border-color .16s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal-300); }
.card a.stretch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card .ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-strong); margin-bottom: 14px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin: 0 0 6px; font-size: 1.16rem; }
.card h3 a { color: var(--text); }
.card .desc { color: var(--text-soft); font-size: .96rem; margin: 0 0 16px; flex: 1; }
.card .meta { display: flex; align-items: center; gap: 12px; font-size: .84rem; color: var(--text-mute); }
.card .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-mute); }
.tag {
  display: inline-flex; align-items: center; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 999px;
  background: var(--surface-2); color: var(--text-soft);
}
.card .featured-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--accent); color: #4a2f00; font-weight: 800; font-size: .72rem;
  padding: 5px 11px; border-radius: 999px; letter-spacing: .03em;
}
/* progress pill on card */
.card-progress { margin-top: 14px; }
.bar { height: 7px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.bar > i { display: block; height: 100%; width: 0; background: var(--ok); border-radius: inherit; transition: width .5s; }
.card-progress .lbl { display: flex; justify-content: space-between; font-size: .8rem; color: var(--text-mute); margin-bottom: 6px; }
.card-progress.done .lbl { color: var(--ok); font-weight: 700; }

.featured-card {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #eaf2f8; border: none; padding: 34px;
}
.featured-card h3 { color: #fff; font-size: 1.7rem; }
.featured-card .desc { color: #c4d3e2; font-size: 1.05rem; }
.featured-card .ico { background: rgba(255,255,255,.12); color: #fff; }
.featured-card .meta { color: #9fb3c7; }
.featured-card .tag { background: rgba(255,255,255,.14); color: #d6e3f0; }
@media (max-width: 720px) { .featured-card { grid-template-columns: 1fr; } }

.empty { text-align: center; padding: 50px 20px; color: var(--text-mute); }

/* ---------- Ad slots ---------- */
.ad-slot {
  margin: 0 auto; max-width: var(--maxw-read);
  border: 1px dashed var(--border); border-radius: 12px;
  background: var(--surface-2); color: var(--text-mute);
  text-align: center; padding: 16px; font-size: .82rem; letter-spacing: .04em;
}
.ad-slot small { display: block; text-transform: uppercase; opacity: .8; }

/* ---------- Article ---------- */
.article-head {
  background: var(--brand-soft); border-bottom: 1px solid var(--border);
  padding: 30px 0 26px;
}
.crumbs { font-size: .88rem; color: var(--text-mute); margin-bottom: 14px; }
.crumbs a { color: var(--text-soft); }
.article-head .tag { background: var(--surface); }
.article-head h1 { margin: 10px 0 8px; }
.article-head .lede { font-size: 1.15rem; color: var(--text-soft); max-width: 60ch; margin: 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; font-size: .9rem; color: var(--text-mute); }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 16px; height: 16px; }

.article { padding: 36px 0 10px; }
.article .wrap { max-width: var(--maxw-read); margin-inline: auto; }
.article p, .article li { font-size: 1.06rem; }
.article ul, .article ol { padding-left: 1.3em; }
.article li { margin-bottom: .5em; color: var(--text-soft); }

.callout {
  display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--border); margin: 22px 0;
}
.callout .c-ico { flex: none; width: 26px; height: 26px; color: var(--brand); }
.callout p { margin: 0; color: var(--text-soft); font-size: .98rem; }
.callout strong { color: var(--text); }
.callout.warn { background: var(--rose-100); border-color: #f3c4bf; }
.callout.warn .c-ico { color: var(--danger); }
.callout.tip { background: var(--green-100); border-color: #bfe6cc; }
.callout.tip .c-ico { color: var(--ok); }
[data-theme="dark"] .callout.warn { background: #3a1f1d; border-color: #5a2c28; }
[data-theme="dark"] .callout.tip { background: #16321f; border-color: #245232; }

/* Section block numbering for guides */
.step { display: flex; gap: 16px; margin: 26px 0; }
.step .num {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center;
}
.step .step-body { flex: 1; }
.step .step-body h3 { margin: 4px 0 8px; }

/* ---------- Interactive checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.checklist li { margin: 0; }
.check {
  display: flex; gap: 13px; align-items: flex-start; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; transition: background .12s, border-color .12s;
}
.check:hover { border-color: var(--brand); }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check .box {
  flex: none; width: 24px; height: 24px; border-radius: 7px; margin-top: 1px;
  border: 2px solid var(--text-mute); display: grid; place-items: center;
  color: #fff; transition: background .12s, border-color .12s;
}
.check .box svg { width: 15px; height: 15px; opacity: 0; transform: scale(.6); transition: .12s; }
.check input:checked + .box { background: var(--ok); border-color: var(--ok); }
.check input:checked + .box svg { opacity: 1; transform: scale(1); }
.check input:focus-visible + .box { outline: 3px solid var(--accent); outline-offset: 2px; }
.check .txt { color: var(--text); font-size: 1.02rem; }
.check input:checked ~ .txt { color: var(--text-mute); text-decoration: line-through; }

.checklist-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; margin: 26px 0 4px;
}
.checklist-head h2 { margin: 0; }
.progress-inline { display: flex; align-items: center; gap: 12px; }
.progress-inline .bar { width: 160px; }
.progress-inline span { font-size: .9rem; color: var(--text-mute); font-weight: 600; white-space: nowrap; }
.reset-link { background: none; border: none; color: var(--text-mute); cursor: pointer; font: inherit; font-size: .86rem; text-decoration: underline; padding: 0; }
.reset-link:hover { color: var(--danger); }

/* ---------- Support / donation block ---------- */
.support-box {
  margin: 36px auto; max-width: var(--maxw-read);
  background: linear-gradient(135deg, var(--gold-100), var(--teal-50));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; text-align: center;
}
[data-theme="dark"] .support-box { background: linear-gradient(135deg, #2a2410, #122a27); }
.support-box h3 { margin: 0 0 8px; font-size: 1.3rem; }
.support-box p { max-width: 52ch; margin: 0 auto 18px; }

/* download / PDF block */
.download-box {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: space-between;
  max-width: var(--maxw-read); margin: 28px auto;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 5px solid var(--brand); border-radius: var(--radius); padding: 22px 24px;
}
.download-box .d-txt h3 { margin: 0 0 4px; }
.download-box .d-txt p { margin: 0; font-size: .94rem; }

/* related */
.related { max-width: var(--maxw-read); margin: 40px auto 0; }
.related h2 { font-size: 1.3rem; }
.related-list { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.related-list a {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; color: var(--text); font-weight: 600;
}
.related-list a:hover { border-color: var(--brand); text-decoration: none; box-shadow: var(--shadow-sm); }
.related-list a span { display: block; font-size: .82rem; color: var(--text-mute); font-weight: 500; margin-top: 4px; }
@media (max-width: 560px) { .related-list { grid-template-columns: 1fr; } }

/* ---------- Generic prose page ---------- */
.prose { max-width: var(--maxw-read); margin-inline: auto; padding: 40px 0; }
.prose h2 { margin-top: 1.4em; }
.prose ul { padding-left: 1.3em; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 40px; background: var(--surface); border-top: 1px solid var(--border);
  padding: 40px 0 30px; color: var(--text-soft);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); margin: 0 0 12px; }
.footer-grid a { display: block; color: var(--text-soft); padding: 4px 0; font-size: .95rem; }
.footer-grid a:hover { color: var(--brand-strong); }
.footer-about p { font-size: .92rem; max-width: 38ch; }
.footer-bottom {
  margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; color: var(--text-mute);
}
@media (max-width: 680px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.muted { color: var(--text-mute); }
.mt-0 { margin-top: 0; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Print (Save as PDF) ---------- */
@media print {
  .site-header, .site-footer, .ad-slot, .support-box, .download-box,
  .nav-toggle, .icon-btn, .reset-link, .related, .hero-cta, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .article-head { background: #fff; border: none; padding: 0 0 8px; }
  .check { border: 1px solid #999; break-inside: avoid; }
  .check .box { border-color: #333; }
  .step { break-inside: avoid; }
  a { color: #000; text-decoration: none; }
  .container, .article .wrap { max-width: none; }
  .print-header { display: block !important; }
}
.print-header { display: none; }
