/* ═══ 챕터 PDF 저장 ═══
   화면에서는 슬라이드를 한 장씩 겹쳐 놓고 넘기지만,
   인쇄할 때는 전부 펼쳐 한 장에 한 슬라이드씩 내보낸다.
   용지는 슬라이드와 같은 1920×1080 으로 잡아 여백 없이 딱 맞춘다. */
@media print{
  /* 슬라이드가 1920×1080 CSS px 이라 96dpi 기준 20in × 11.25in 이 1:1 로 맞는다.
     @page 의 size 는 px 를 못 받는 브라우저가 있어 인치로 적는다. */
  @page{ size:20in 11.25in; margin:0; }
  html,body{ background:#0a141c !important; overflow:visible !important;
             height:auto !important; margin:0 !important; }
  .deck-viewport{ position:static !important; display:block !important; }
  .deck-stage{ transform:none !important; width:1920px !important; height:auto !important; }
  .slide{
    position:relative !important; inset:auto !important; display:block !important;
    width:1920px !important; height:1080px !important; overflow:hidden !important;
    break-after:page; page-break-after:always; break-inside:avoid; }
  .slide:last-child{ break-after:auto; page-break-after:auto; }
  #fbnav,#wtprint{ display:none !important; }
  *{ -webkit-print-color-adjust:exact !important; print-color-adjust:exact !important; }
}
