/**
 * Deterrents against casual copy/scrape of article bodies (not foolproof).
 * Navigation, actions, and legal pages stay selectable.
 */

.content-protected,
.content-protected * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.content-protected img,
.content-protected picture,
.content-protected svg {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

.content-protected a,
.content-protected button,
.content-protected input,
.content-protected textarea,
.content-protected [contenteditable='true'] {
  -webkit-user-select: auto;
  user-select: auto;
}

body.essay-protected main,
body.essay-protected article,
body.essay-protected .essay-protected-root {
  -webkit-user-select: none;
  user-select: none;
}

body.essay-protected img {
  -webkit-user-drag: none;
  user-drag: none;
}
