/*Pena Pustaka Editorial - Lembar Gaya Siluman (Kliping Cetak)Aktif secara eksklusif hanya pada antarmuka mesin cetak (Print Spooler)*/ /* 1. RUNTUHKAN SELURUH ELEMEN NON-ESENSIAL */
.site-header,
.site-footer,
.post-navigation,
.comments-area,
.scribble-search-form,
.bookmark-corner,
.tts-trigger,
.skip-link,
button,
.author-bio-box img {
  display: none !important;
} /* 2. REKAYASA KANVAS CETAK (MONOKROM) */
@page {
  margin: 2cm;
  size: A4 portrait;
}
body {
  background-color: #fff !important;
  background-image: none !important;
  color: #000 !important;
  font-size: 12pt !important;
  line-height: 1.5 !important;
}
.site-container,
.reading-room {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
} /* 3. TIPOGRAFI KLIPING KORAN */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000 !important;
  page-break-after: avoid;
  page-break-inside: avoid;
}
p,
h2,
h3 {
  orphans: 3;
  widows: 3;
} /* Mengubah tautan menjadi teks mati agar tidak terlihat aneh saat dicetak */
a {
  color: #000 !important;
  text-decoration: underline !important;
} /* Membuka alamat URL tautan agar bisa dibaca di kertas (Best Practice A11y Cetak) */
.entry-content a[href]::after {
  content: " (" attr(href) ") ";
  font-size: 0.9em;
  word-break: break-all;
} /* 4. WATERMARK ANTI-PLAGIASI (Injeksi Memori Cetak) */
body::after {
  content: "HAK CIPTA PENA PUSTAKA - MAN 2 PROBOLINGGO";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.08);
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
} /* AKHIR DARI PRINT.CSS - Pastikan tidak menyalin apapun di bawah baris ini */
