/**
 * Copy guard for the company directory and company profiles.
 *
 * This is a deterrent against casual bulk copying, not an access control:
 * the text is still in the HTML so search engines can index the profiles.
 * Harvesting is bounded server-side by request-rate-policy.php and by the
 * closed REST collections. Form fields stay selectable so members can still
 * type and edit their own enquiries.
 */
.sasal-company-directory,
.sasal-company-profile-page {
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.sasal-company-directory :is(input, textarea, select, [contenteditable="true"]),
.sasal-company-profile-page :is(input, textarea, select, [contenteditable="true"]) {
	-webkit-user-select: text;
	user-select: text;
	-webkit-touch-callout: default;
}

.sasal-company-directory img,
.sasal-company-profile-page img {
	-webkit-user-drag: none;
}

@media print {
	.sasal-company-directory,
	.sasal-company-profile-page {
		display: none !important;
	}
}
