/*
 * Content-protection deterrents — hand-written, NOT part of the compiled
 * Tailwind bundle (main.css/tailwind.css). See
 * docs/features/content-download-deterrence.md.
 */

/*
 * Drag-out-to-save and mobile long-press callout ("Save Image"/"Copy") on
 * every <img>. Deliberately site-wide, not scoped to a "content" wrapper —
 * simpler than retrofitting ~45 template-parts files, and there's no image on
 * this site (icon, logo, gallery photo) that's meant to be dragged out.
 */
img {
	-webkit-user-drag: none;
	user-drag: none;
	-webkit-touch-callout: none;
}

/*
 * Hide protected content from print output — doesn't block printing itself,
 * only the images/long-form article text within it.
 */
@media print {
	.prose-article,
	article {
		display: none !important;
	}
}
