/* Shared print stylesheet (sprint 3 D3/F2; fridge = <doc-page> as of pass C opt A). Linked
   media="print" on the gate card (gate-card/) and the fridge calendar (calendar/print/).
   The fridge sheet's paper geometry + per-page repeating masthead/footer are owned by
   <doc-page> (assets/doc-page.js); this file only clears the portal chrome around it so the
   sheet prints alone, and keeps the gate-card's cut-out card rules. Plain black ink on
   white: a fridge sheet, a card at the gate, not a brand surface. */
@media print {
  /* Drop screen chrome and anything interactive; the background art just wastes ink. */
  header, nav, .tabbar, .foot-strip, .crumb, .topline, #topo,
  button, .btn, .btn-row, .no-print,
  #pw-pill, #fb-pill, #install-pill, .status-banner, .draft-chip {
    display: none !important;
  }
  [data-page="calendar-print"] .page-head,
  [data-page="calendar-print"] .page-note,
  noscript { display: none !important; }

  html, body { background: white; color: black; }

  /* Gate card (#pocket-card on gate-card/): one pocket-sized card kept whole on a single
     page, bordered so it can be cut out and carried. Unchanged from D3. */
  #pocket-card {
    width: 148mm; max-width: 100%;
    border: 1pt solid black; border-radius: 0;
    padding: 8mm; margin: 0;
    background: white; color: black; box-shadow: none;
    page-break-inside: avoid;
  }
}
