/* ESCHOOL V104 — محرك صفحات A4 موحّد للعرض والمعاينة والطباعة وPDF */

/* كل نسخة غير قابلة للتحرير تُعرض ككومة صفحات A4 حقيقية، لا كنص متصل. */
.cr-paged-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  width:100%;
  min-width:210mm;
  margin:0 auto;
}
.cr-paged-stack .cr-static-paper{
  width:210mm!important;
  height:297mm!important;
  min-width:210mm!important;
  max-width:210mm!important;
  min-height:297mm!important;
  max-height:297mm!important;
  flex:0 0 297mm!important;
  overflow:hidden!important;
  box-sizing:border-box!important;
  position:relative!important;
}
.cr-paged-stack .cr-static-paper .cr-letter-content{min-height:0!important}
.cr-paged-stack .cr-static-paper .cr-static-body{min-height:0!important;overflow:visible!important}
.cr-paged-stack .cr-static-paper[data-cr-page]:not([data-cr-page="1"]) .cr-post-header-row{display:none!important}
.cr-paged-stack .cr-static-paper[data-cr-page]:not([data-cr-page="1"]) .cr-letter-content{padding-top:1mm!important}
.cr-paged-stack .cr-static-paper .cr-letter-footer{bottom:8mm!important;z-index:5!important;background:#fff!important}
.cr-paged-stack .cr-static-paper .cr-letter-content{position:relative;z-index:1}
.cr-paged-stack .cr-static-page-badge{
  position:absolute;
  left:50%;
  bottom:3mm;
  transform:translateX(-50%);
  color:#94a3b8;
  font-size:7.5pt;
  line-height:1;
  z-index:6;
  pointer-events:none;
}

/* ألغِ قواعد الهاتف القديمة التي كانت تحول ورقة العرض إلى ورقة مرنة غير A4. */
@media screen and (max-width:900px){
  .cr-view-layout .cr-paged-stack,.cr-review-document .cr-paged-stack,.cr-standalone-print .cr-paged-stack{min-width:210mm!important;width:210mm!important}
  .cr-view-layout .cr-paged-stack .cr-static-paper,
  .cr-review-document .cr-paged-stack .cr-static-paper,
  .cr-standalone-print .cr-paged-stack .cr-static-paper{
    width:210mm!important;min-width:210mm!important;max-width:210mm!important;
    height:297mm!important;min-height:297mm!important;max-height:297mm!important;
    padding:var(--cr-mt) var(--cr-mr) var(--cr-mb) var(--cr-ml)!important;
  }
  .cr-paper-wrap:has(.cr-paged-stack){overflow-x:auto!important;-webkit-overflow-scrolling:touch!important}
  /* محرر الهاتف يحافظ على نسبة A4 الثابتة بدل تمدد الورقة حسب طول النص. */
  .cr-editor-paper{
    height:calc((100vw - 36px) * 1.4142857)!important;
    min-height:calc((100vw - 36px) * 1.4142857)!important;
    max-height:calc((100vw - 36px) * 1.4142857)!important;
    overflow:hidden!important;
  }
}

/* منطقة أمان نهائية: لا يسمح النص بالاقتراب من الفوتر؛ JS يقيس أعلى الفوتر - 8mm. */
.cr-static-paper,.cr-editor-paper{--cr-page-footer-safe-gap:8mm}

/* الطباعة: كل Article يمثل صفحة ورقية واحدة A4 بصورة صريحة. */
@page{size:A4 portrait;margin:0}
@media print{
  html,body{width:210mm!important;margin:0!important;padding:0!important;background:#fff!important}
  .cr-paper-wrap:has(.cr-paged-stack){padding:0!important;margin:0!important;background:#fff!important;overflow:visible!important}
  .cr-paged-stack{display:block!important;width:210mm!important;min-width:210mm!important;margin:0!important;padding:0!important;gap:0!important}
  .cr-paged-stack .cr-static-paper{
    display:block!important;
    width:210mm!important;min-width:210mm!important;max-width:210mm!important;
    height:297mm!important;min-height:297mm!important;max-height:297mm!important;
    margin:0!important;padding:var(--cr-mt) var(--cr-mr) var(--cr-mb) var(--cr-ml)!important;
    box-shadow:none!important;border:0!important;overflow:hidden!important;
    break-after:page!important;page-break-after:always!important;
    break-inside:avoid!important;page-break-inside:avoid!important;
    print-color-adjust:exact!important;-webkit-print-color-adjust:exact!important;
  }
  .cr-paged-stack .cr-static-paper:last-child{break-after:auto!important;page-break-after:auto!important}
  .cr-static-page-badge{display:none!important}
  .cr-print-table{display:none!important} /* V104 لا يستخدم محرك table القديم للطباعة. */
}
