/**
 * ClevrHR Copy Guard — anti-copy styles.
 *
 * Loaded only on GrassBlade content pages for non-admin users.
 */

/* --- 1. Disable text selection on content areas --- */
.site-main,
#main-content,
.elementor,
article.page,
article.post {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Re-enable selection on interactive form elements so they remain usable. */
.site-main input,
.site-main textarea,
.site-main select,
.site-main button,
#main-content input,
#main-content textarea,
#main-content select,
#main-content button {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

/* --- 2. Block printing of course content --- */
@media print {
	.site-main,
	#main-content,
	.elementor,
	article.page,
	article.post {
		display: none !important;
	}

	body::after {
		content: "Printing of course content is not permitted.";
		display: block;
		text-align: center;
		padding: 4rem 2rem;
		font-size: 1.5rem;
		color: #666;
	}
}

/* --- 3. Image protection — pointer-events + transparent overlay --- */
.site-main img,
#main-content img,
article.page img,
article.post img {
	pointer-events: none;
}

.site-main figure,
#main-content figure,
article.page figure,
article.post figure,
.site-main .wp-block-image,
#main-content .wp-block-image,
.site-main .elementor-image,
#main-content .elementor-image {
	position: relative;
}

.site-main figure::after,
#main-content figure::after,
article.page figure::after,
article.post figure::after,
.site-main .wp-block-image::after,
#main-content .wp-block-image::after,
.site-main .elementor-image::after,
#main-content .elementor-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
