/*
 * Photo protection — front-end friction only.
 * Pairs with inc/photo-protection.php, which is what actually limits the
 * resolution ever sent to the browser. This file just makes casual
 * saving less convenient; it isn't a security boundary on its own.
 */
img {
	-webkit-touch-callout: none; /* iOS Safari: disables the long-press "Save Image" menu */
	-webkit-user-drag: none;     /* Safari: disables dragging an image out to the desktop */
	user-drag: none;
}
