/* ============================================================
   Print stylesheet — turns any /docs/ page into a client-ready
   A4 PDF via Ctrl+P → "Save as PDF".
   Linked with media="print" on document pages.
   ============================================================ */

@page {
  size: A4;
  margin: 16mm 18mm;
}

@media print {
  html, body { background: #fff !important; font-size: 10.5pt; line-height: 1.5; }
  .site-header, .site-footer, .nav, .nav-toggle, .no-print, .btn, .skip-link { display: none !important; }
  a { color: inherit; text-decoration: none; }
  .container { max-width: none; padding: 0; }
  .section { padding: 0 0 8mm; }

  h1 { font-size: 20pt; margin-bottom: 4mm; }
  h2 { font-size: 15pt; margin-top: 6mm; }
  h3 { font-size: 12.5pt; }

  .card, .notice, blockquote, table, .doc-header, .print-block {
    break-inside: avoid;
    box-shadow: none !important;
  }
  .page-break { break-before: page; }
  tr, li { break-inside: avoid; }

  /* Preserve brand colors in headers/badges */
  .doc-header, th, .badge, .bar-row__fill, .progress__fill, .stat__num {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .print-only { display: block !important; }
  .print-footer {
    display: block !important;
    margin-top: 8mm; padding-top: 3mm; border-top: 0.5pt solid #ccc;
    font-size: 8pt; color: #777;
  }
}

/* Hidden on screen, shown in print */
.print-only, .print-footer { display: none; }
