/* ==========================================================================
   NextCareer — About Us founder-photo protection (CSS-only portion).

   Scope: ONLY the founder photo on the About Us page. ".nch-about-photo-slot"
   is a class that exists nowhere else in this project's templates/CSS/
   Code Snippets — it is unique to the founder-photo block authored into the
   About Us page's own content. Targeting ".nch-about-photo-slot img" is
   therefore already fully scoped to this one image with no risk of
   matching any other image on the site.

   Loaded ONLY on the About Us page (see the is_page('about-us') condition
   in nextcareer_homepage_enqueue_assets(), nextcareer-homepage.php).

   Does NOT touch the image's src/srcset/sizes/dimensions/layout in any
   way — this is purely a light deterrent against casual right-click
   saving, dragging, in-page selection, and (on supporting mobile
   browsers) the long-press "save image" callout. It does not and cannot
   prevent a determined user from saving the image by other means (e.g.
   viewing page source, browser dev tools, or a screenshot) — that is
   expected and out of scope; this is a casual-copying deterrent only,
   not a security control.
   ========================================================================== */

.nch-about-photo-slot img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-webkit-touch-callout: none;
}
