/* =============================================================================
   SLP Riley — Communication Readiness Profile
   styles.css

   Brand colors sampled from the Las Olas "Communication Milestones" handout.
   Brand typeface is Averta Std PE. Averta is a licensed desktop font, so the web
   build uses Figtree — the closest freely-licensed match (geometric-humanist,
   double-storey a, similar bold italic). If a web license for Averta is
   available, swap the @font-face below and change --font-sans.
   ============================================================================= */

:root {
  /* Brand */
  --blue:        #2A4697;
  --blue-dark:   #1E3475;
  --blue-deep:   #16265A;
  --blue-tint:   #DBDFED;
  --blue-mid:    #7183B9;
  --blue-wash:   #F3F5FB;
  --ink:         #231F20;
  --ink-soft:    #4A4648;
  --ink-mute:    #767174;
  --line:        #E3E5EE;
  --paper:       #FFFFFF;
  --canvas:      #F7F8FC;

  /* Status */
  --strong:      #1F8A5C;
  --strong-bg:   #E7F5EE;
  --expected:    #2A4697;
  --expected-bg: #E9EDF8;
  --monitor:     #B5761A;
  --monitor-bg:  #FBF1DF;
  --evaluate:    #B23B3B;
  --evaluate-bg: #FBEBEB;
  --neutral:     #767174;
  --neutral-bg:  #F0F0F2;

  --font-sans: 'Figtree', 'Averta Std PE', 'Avenir Next', -apple-system,
               BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(35,31,32,.06), 0 2px 8px rgba(35,31,32,.05);
  --shadow:    0 2px 4px rgba(35,31,32,.05), 0 12px 32px rgba(35,31,32,.08);
  --shadow-lg: 0 4px 8px rgba(35,31,32,.06), 0 24px 60px rgba(42,70,151,.14);

  --wrap: 780px;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;   /* keeps the footer at the bottom on short pages */
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
a { color: var(--blue); }

/* --- Typography ----------------------------------------------------------- */
.display {
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--blue);
}
.h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--blue);
}
.h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--blue-mid);
}
.lede { font-size: 1.1rem; color: var(--ink-soft); }
.small { font-size: .875rem; }
.mute { color: var(--ink-mute); }
.center { text-align: center; }

/* --- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.site-header__logo img { height: 30px; width: auto; }
.site-header__label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue-mid);
  text-align: right;
  line-height: 1.25;
}

main { padding: 40px 0 96px; flex: 1 0 auto; }

/* Landing screen fills the viewport with its content optically centred.
   Auto margins rather than align-items:center so tall content (or a short
   window) still scrolls instead of being clipped off the top. */
body.is-intro main { display: flex; padding: 32px 0; }
body.is-intro main > .wrap { margin-top: auto; margin-bottom: auto; }

/* The landing page can breathe — it is three short blocks, unlike the survey
   and results screens which are dense by necessity. Scoped to .is-intro so
   those denser screens keep their tighter padding, and to desktop because
   mobile has no horizontal room to give away. */
@media (min-width: 641px) {
  body.is-intro .card,
  body.is-intro .callout,
  body.is-intro .notice { padding: 36px 40px; }
}

/* --- Progress ------------------------------------------------------------- */
.progress { background: var(--paper); border-bottom: 1px solid var(--line); }
.progress__inner { padding: 14px 20px 16px; }
.progress__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin-bottom: 8px;
}
.progress__step { font-size: .8rem; font-weight: 700; color: var(--blue); }
.progress__count { font-size: .8rem; color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.progress__track { height: 7px; background: var(--blue-tint); border-radius: var(--radius-pill); overflow: hidden; }
.progress__bar {
  height: 100%; background: var(--blue); border-radius: var(--radius-pill);
  transition: width .35s cubic-bezier(.22,.61,.36,1);
}

/* --- Cards ---------------------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card--flush { padding: 0; overflow: hidden; }
.card + .card { margin-top: 20px; }

.notice {
  background: var(--blue-wash);
  border: 1px solid var(--blue-tint);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.notice--warn { background: var(--monitor-bg); border-color: #EEDCB6; }
.notice strong { color: var(--ink); }

/* Louder than .notice — used for the privacy promise, which teachers need to
   believe before they will write anything honest about a child. */
.callout {
  background: var(--paper);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.callout__title {
  font-weight: 800;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--blue);
}
.callout__body { font-size: .9rem; color: var(--ink-soft); margin-top: 8px; }
.callout__list { margin-top: 8px; font-size: .9rem; color: var(--ink-soft); }
.callout__list li { position: relative; padding-left: 20px; }
.callout__list li + li { margin-top: 5px; }
.callout__list li::before {
  content: ''; position: absolute; left: 4px; top: .6em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-mid);
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(42,70,151,.22); }
.btn--primary:hover { background: var(--blue-dark); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--blue-tint); }
.btn--ghost:hover { border-color: var(--blue-mid); background: var(--blue-wash); }
.btn--quiet { background: transparent; color: var(--ink-mute); padding: 14px 8px; }
.btn--quiet:hover { color: var(--blue); }
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

.actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
.actions--end { justify-content: flex-end; }

/* --- Age selector --------------------------------------------------------- */
.age-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.age-card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .12s ease;
}
.age-card:hover { border-color: var(--blue-mid); transform: translateY(-2px); }
.age-card__label { font-weight: 800; font-style: italic; font-size: 1.15rem; color: var(--blue); }
.age-card__hint { font-size: .82rem; color: var(--ink-mute); margin-top: 4px; }
.age-card.is-selected { border-color: var(--blue); background: var(--blue-wash); }

/* --- Fields --------------------------------------------------------------- */
.field + .field { margin-top: 18px; }
.field__label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 6px; }
.field__hint { font-size: .82rem; color: var(--ink-mute); margin-bottom: 8px; }
.input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(42,70,151,.12);
}
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field-row > .field + .field { margin-top: 0; } /* grid gap handles the spacing */

/* --- Survey items --------------------------------------------------------- */
.domain-head {
  background: var(--blue);
  color: #fff;
  padding: 24px 28px;
}
.domain-head__eyebrow {
  font-size: .85rem; font-weight: 700; letter-spacing: .01em;
  color: var(--blue-tint);
}
.domain-head__title {
  font-size: 1.5rem; font-weight: 800; font-style: italic;
  line-height: 1.15; margin-top: 2px;
}
.domain-head__blurb { font-size: .92rem; color: var(--blue-tint); margin-top: 4px; }
.domain-stem {
  padding: 18px 28px 4px;
  font-weight: 700;
  color: var(--blue);
  font-style: italic;
}

.item { padding: 18px 28px; border-top: 1px solid var(--line); }
.item:first-of-type { border-top: none; }
.item.is-unanswered-flag { background: #FDF6F6; }
/* Number sits in its own column so wrapped lines align to the start of the
   question text rather than tucking under the circle. */
.item__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 14px;
}
.item__text em { font-style: italic; color: var(--blue); font-weight: 600; }
.item__num {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 30px; width: 30px; height: 30px;
  border-radius: 50%; background: var(--blue-tint); color: var(--blue-dark);
  font-size: .92rem; font-weight: 800; line-height: 1;
}
.item__body { flex: 1 1 auto; padding-top: 3px; }

.scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;              /* every row the same height */
  gap: 8px;
}
.scale__opt { position: relative; display: flex; }
.scale__opt input { position: absolute; opacity: 0; pointer-events: none; }
.scale__box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 12px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: border-color .14s ease, background .14s ease;
}
.scale__box:hover { border-color: var(--blue-mid); }
.scale__name { display: block; font-weight: 700; font-size: .86rem; line-height: 1.2; }
.scale__hint { display: block; font-size: .7rem; color: var(--ink-mute); margin-top: 2px; line-height: 1.25; }
.scale__opt input:checked + .scale__box { border-color: var(--blue); background: var(--blue-wash); }
.scale__opt input:checked + .scale__box .scale__name { color: var(--blue); }
.scale__opt input:focus-visible + .scale__box { box-shadow: 0 0 0 4px rgba(42,70,151,.14); }
.scale__opt[data-value="notObs"] input:checked + .scale__box {
  border-color: var(--ink-mute); background: var(--neutral-bg);
}
.scale__opt[data-value="notObs"] input:checked + .scale__box .scale__name { color: var(--ink-soft); }

/* --- Yes / No ------------------------------------------------------------- */
.yesno { display: flex; gap: 8px; }
.yesno .scale__opt { flex: 0 0 92px; }

/* On desktop the yes/no items read as a single row: question on the left two
   thirds, answer on the right, everything centred against everything else. */
@media (min-width: 641px) {
  .item--inline { display: flex; align-items: center; gap: 28px; }
  .item--inline .item__text {
    flex: 1 1 66%;
    align-items: center;
    margin-bottom: 0;
  }
  .item--inline .item__body { padding-top: 0; }
  .item--inline .yesno { flex: 0 0 auto; }
}

/* --- Results -------------------------------------------------------------- */
.score-hero {
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.score-hero__eyebrow { font-size: .9rem; letter-spacing: .01em; color: var(--blue-tint); font-weight: 700; }
.score-hero__num {
  font-size: clamp(3.2rem, 12vw, 4.4rem);
  font-weight: 800; font-style: italic; line-height: 1; letter-spacing: -.03em;
  margin: 8px 0 2px;
}
.score-hero__label { font-size: 1rem; color: var(--blue-tint); }

.domain-row {
  display: grid;
  grid-template-columns: 1fr 92px 168px;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.domain-row:first-child { border-top: none; }
.domain-row__name { font-weight: 700; }
.domain-row__sub { font-size: .8rem; color: var(--ink-mute); font-weight: 400; }
.domain-row__pct {
  font-size: 1.5rem; font-weight: 800; font-style: italic;
  text-align: right; font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.meter { height: 8px; background: var(--neutral-bg); border-radius: var(--radius-pill); overflow: hidden; margin-top: 6px; }
.meter__fill { height: 100%; border-radius: var(--radius-pill); }

.pill {
  display: inline-block;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.is-strong   { color: var(--strong);   } .pill.is-strong   { background: var(--strong-bg); }
.is-expected { color: var(--expected); } .pill.is-expected { background: var(--expected-bg); }
.is-monitor  { color: var(--monitor);  } .pill.is-monitor  { background: var(--monitor-bg); }
.is-evaluate { color: var(--evaluate); } .pill.is-evaluate { background: var(--evaluate-bg); }
.is-none     { color: var(--neutral);  } .pill.is-none     { background: var(--neutral-bg); }

.rec {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid;
}
.rec--soft   { background: var(--blue-wash); border-color: var(--blue-tint); }
.rec--strong { background: #fff; border-color: var(--blue); box-shadow: var(--shadow); }
.rec__heading { font-size: 1.3rem; font-weight: 800; font-style: italic; color: var(--blue); line-height: 1.2; }
.rec__body { margin-top: 10px; color: var(--ink-soft); }
.rec__reasons { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--blue-tint); }
.rec__reasons li {
  position: relative; padding-left: 20px; font-size: .88rem; color: var(--ink-soft);
}
.rec__reasons li + li { margin-top: 6px; }
.rec__reasons li::before {
  content: ''; position: absolute; left: 4px; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-mid);
}

.list-check li, .list-flag li {
  position: relative; padding-left: 28px; font-size: .95rem;
}
.list-check li + li, .list-flag li + li { margin-top: 8px; }

/* Results lists carry several lines each, so they need real separation. */
.list-detailed li + li {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
}
.list-detailed li + li::before { top: 16px; }

.skill-line { font-size: .88rem; color: var(--ink-soft); margin-top: 7px; }
.skill-line b { color: var(--ink); font-weight: 700; }
.skill-note {
  font-size: .88rem;
  color: var(--ink-soft);
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--blue-wash);
  border-radius: var(--radius-sm);
}
.list-check li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--strong); font-weight: 800;
}
.list-flag li::before {
  content: '!'; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--monitor-bg); color: var(--monitor);
  font-size: .72rem; font-weight: 800; text-align: center; line-height: 18px;
}

/* --- CTA ------------------------------------------------------------------ */
.cta {
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta__logo { height: 42px; width: auto; margin: 6px auto 26px; }
.cta__title { font-size: 1.4rem; font-weight: 800; font-style: italic; line-height: 1.2; }
/* Measure-capped: at full box width the paragraph outran every other line in
   the block and read as a different column. */
.cta__body {
  color: var(--blue-tint);
  margin: 10px auto 0;
  font-size: .95rem;
  max-width: 46ch;
}
.cta__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.cta .btn--primary { background: #fff; color: var(--blue); }
.cta .btn--primary:hover { background: var(--blue-tint); }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.cta .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* QR block — the paper path. A printed report in a backpack folder has no
   clickable button, so the same consent URL has to be scannable. */
.cta__qr { margin-top: 20px; }
.cta__qr-img,
.cta__qr-slot {
  width: 104px; height: 104px; margin: 0 auto;
  background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cta__qr-slot {
  border: 2px dashed var(--blue-mid);
  color: var(--blue);
  font-size: .72rem; font-weight: 700;
  text-align: center; line-height: 1.3;
}
.cta__qr-caption { font-size: .78rem; color: var(--blue-tint); margin-top: 9px; }
.cta__fine { font-size: .78rem; color: var(--blue-tint); margin: 16px auto 0; max-width: 46ch; }

/* --- Consent -------------------------------------------------------------- */
.consent {
  border: 2px solid var(--blue-tint);
  background: var(--blue-wash);
  border-radius: var(--radius);
  padding: 20px;
}
.consent__row { display: flex; gap: 12px; align-items: flex-start; }
.consent input[type="checkbox"] {
  width: 22px; height: 22px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--blue);
}
.consent__label { font-weight: 600; font-size: .95rem; }
.consent__fine { font-size: .82rem; color: var(--ink-mute); margin-top: 10px; }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 28px 0;
  text-align: center;
  font-size: .85rem;
  color: var(--ink-mute);
}
.site-footer a { color: var(--blue); font-weight: 700; text-decoration: none; }
.site-footer__links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }

/* --- Report (print) ------------------------------------------------------- */
.report-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px 24px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.report-meta__k { font-size: .8rem; letter-spacing: .01em; color: var(--ink-mute); font-weight: 700; }
.report-meta__v { font-weight: 700; }

/* --- Utilities ------------------------------------------------------------ */
.hidden { display: none !important; }
.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;
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .card { padding: 20px; border-radius: var(--radius); }
  .domain-head, .item, .domain-stem { padding-left: 20px; padding-right: 20px; }
  .age-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .scale { grid-template-columns: repeat(2, 1fr); }
  .domain-row { grid-template-columns: 1fr auto; }
  .domain-row__pct { grid-row: 1; grid-column: 2; }
  .domain-row .pill { grid-column: 1 / -1; justify-self: start; }
  .actions .btn { flex: 1 1 auto; }
  .site-header__label { display: none; }
  .report-meta { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================================
   PRINT — the two-page parent report
   ============================================================================= */
@media print {
  @page { size: letter; margin: 0.55in 0.6in; }

  body { background: #fff; font-size: 10.5pt; }
  .site-header, .site-footer, .progress,
  .no-print, .actions, .btn { display: none !important; }

  main { padding: 0; }
  .wrap { max-width: none; padding: 0; }

  .card, .notice, .rec, .consent {
    box-shadow: none;
    border-radius: 8px;
  }
  .card { padding: 14px 16px; border-color: #D6D9E6; }

  /* Long cards (Strengths, Still Developing) must be allowed to flow across a
     page boundary — forcing them whole pushes the next section onto its own
     page and leaves half a sheet blank. Keep the *atoms* unbroken instead. */
  .card { break-inside: auto; page-break-inside: auto; }
  .notice, .rec, .consent, .score-hero, .cta, .report-meta {
    break-inside: avoid; page-break-inside: avoid;
  }
  .list-detailed li, .domain-row, .skill-note {
    break-inside: avoid; page-break-inside: avoid;
  }
  /* Never strand a heading at the foot of a page. */
  .h3, .h2 { break-after: avoid; page-break-after: avoid; }

  .score-hero, .cta {
    background: var(--blue) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    box-shadow: none;
    border-radius: 10px;
    padding: 18px;
  }
  .score-hero__num { font-size: 34pt; }

  .pill, .meter__fill, .domain-head {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .print-only { display: block !important; }

  /* The contact block is the one thing that MUST survive into the PDF — it is
     hidden on the teacher's screen and only appears in what the family gets.
     Its buttons have to be exempted from the blanket .btn hide above. */
  .cta .btn {
    display: inline-flex !important;
    background: #fff !important;
    color: var(--blue) !important;
    border: 2px solid #fff !important;
    box-shadow: none !important;
    padding: 10px 20px;
  }
  .cta__actions { display: flex !important; gap: 10px; justify-content: center; margin-top: 16px; }
  .cta { padding: 30px 34px; }
  .cta__logo { height: 32px; margin-bottom: 18px; }
  .page-break { break-before: page; page-break-before: always; }

  a[href^="http"]::after { content: ''; }
}
.print-only { display: none; }
