/* LZ Contact Guard — blurred masks + reveal controls on the Contact page. */

.lz-guard {
	white-space: nowrap;
}

.lz-guard .lz-guard-mask {
	filter: blur(4px);
	-webkit-filter: blur(4px);
	opacity: 0.75;
	letter-spacing: 0.05em;
	user-select: none;
	-webkit-user-select: none;
	pointer-events: none;
}

.lz-guard.is-revealed .lz-guard-mask {
	filter: none;
	-webkit-filter: none;
	opacity: 1;
}

.lz-phone-guard-panel {
	margin-top: 0.5em;
}

button.lz-phone-reveal {
	display: inline-block;
	padding: 0.35em 0.9em;
	font-size: 0.85em;
	line-height: 1.4;
	border: 1px solid currentColor;
	border-radius: 3px;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

button.lz-phone-reveal:hover:not(:disabled) {
	background: rgba(0, 0, 0, 0.06);
}

button.lz-phone-reveal:disabled {
	opacity: 0.5;
	cursor: default;
}

.lz-phone-guard-status:empty {
	display: none;
}

.lz-phone-guard-status {
	margin: 0.5em 0 0;
	font-size: 0.8em;
	opacity: 0.8;
}

.lz-phone-guard-captcha:not(:empty) {
	margin-top: 0.6em;
	display: flex;
	justify-content: center;
}

a.lz-guard-revealed {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dotted currentColor;
}

/* The e-mail mask is long; let it wrap on narrow screens rather than overflow the card. */
.lz-guard[data-lz-guard="email"] {
	white-space: normal;
	overflow-wrap: anywhere;
}
