/* Anti-context — image drag prevention + iOS long-press preview suppression.
 * JS handles the active blocks (right-click, DevTools shortcuts); this CSS
 * handles passive surfaces that JS can't reach (mobile long-press, native drag).
 *
 * Generated: 2026-05-14
 */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none; /* iOS Safari — disables long-press image preview */
  pointer-events: auto;        /* keep clicks for clickable images (CTA, links) */
}

/* SVG protections — same drag/callout suppression */
svg {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-drag: none;
}
