/*
 * Sergio Bravo ecosystem — image interaction protection.
 * This is a deterrence layer for normal browser interaction. It deliberately
 * does not interfere with links, captions, keyboard navigation or scrolling.
 */
html.sb-image-protection img,
html.sb-image-protection picture,
html.sb-image-protection .wp-block-image img,
html.sb-image-protection .wp-block-cover img,
html.sb-image-protection .wp-block-media-text__media img,
html.sb-image-protection [data-sb-protected-media] img {
  -webkit-touch-callout: none !important;
  -webkit-user-drag: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

html.sb-image-protection img {
  user-drag: none !important;
}

/* Avoid the native long-press image callout on common visual containers. */
html.sb-image-protection .wp-block-image,
html.sb-image-protection .wp-block-cover,
html.sb-image-protection .wp-block-media-text__media,
html.sb-image-protection [data-sb-protected-media] {
  -webkit-touch-callout: none !important;
}
