/* Cheyytec Content Warning Blur — front-end styles */

.cheyytec-cwb-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.cheyytec-cwb-content {
	filter: blur(18px);
	transform: scale( 1.03 );
	transition: filter .25s ease;
	pointer-events: none;
	user-select: none;
}

.cheyytec-cwb-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .8em;
	text-align: center;
	padding: 1.2em;
	background: rgba(20, 22, 30, .55);
	color: #fff;
}

.cheyytec-cwb-label {
	margin: 0;
	font-weight: 600;
	font-size: 1.05em;
}

.cheyytec-cwb-reveal {
	cursor: pointer;
	border: 0;
	border-radius: 999px;
	padding: .5em 1.2em;
	font-size: .95em;
	font-weight: 600;
	background: #fff;
	color: #14161e;
}

.cheyytec-cwb-reveal:hover {
	background: #e9e9ee;
}

.cheyytec-cwb-revealed .cheyytec-cwb-content {
	filter: none;
	transform: none;
	pointer-events: auto;
	user-select: auto;
}

.cheyytec-cwb-revealed .cheyytec-cwb-overlay {
	display: none;
}
