/**
 * Frontend lock message styling.
 *
 * @package Last_Innehall
 */

.li-lock-message {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 640px;
	margin: 2.5rem auto;
	padding: 2.5rem 2rem;
	background: linear-gradient( 180deg, #ffffff 0%, #f7f8fa 100% );
	border: 1px solid #e2e5ea;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba( 17, 24, 39, 0.08 );
	box-sizing: border-box;
}

.li-lock-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	background-color: #eef1f6;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* Padlock drawn with pseudo-elements (no external image needed). */
.li-lock-icon::before {
	content: "";
	position: absolute;
	top: 14px;
	width: 20px;
	height: 16px;
	background-color: #4b5563;
	border-radius: 3px;
}

.li-lock-icon::after {
	content: "";
	position: absolute;
	top: 6px;
	width: 12px;
	height: 14px;
	border: 3px solid #4b5563;
	border-bottom: none;
	border-radius: 8px 8px 0 0;
	box-sizing: border-box;
}

.li-lock-body {
	color: #374151;
	font-size: 1.05rem;
	line-height: 1.6;
}

.li-lock-body p:last-child {
	margin-bottom: 0;
}

@media ( max-width: 600px ) {
	.li-lock-message {
		margin: 1.5rem 1rem;
		padding: 1.75rem 1.25rem;
	}
}
