/* KUROSF v44.0.39 — frontend protection for Posts/Pages explicitly locked in CMS. */
main {
  -webkit-user-select: none;
  user-select: none;
}

/* Preserve normal selection/editing inside form and editable controls. */
main input,
main textarea,
main select,
main option,
main [contenteditable="true"],
main [contenteditable=""],
main [data-kurosf-content-protection-allow] {
  -webkit-user-select: text;
  user-select: text;
}


/* Protected Posts/Pages must not expose article content through Print / Save as PDF.
 * This stylesheet is enqueued only when Content Protection is enabled for the current Post/Page. */
@media print {
  main {
    display: none !important;
  }
}
