* {
	box-sizing: border-box;
}

body.one-my-me-headless-status {
	margin: 0;
	min-height: 100vh;
	background: #f5f2ed;
	color: #23201d;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

.status-shell {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 32px 18px;
}

.status-panel {
	width: min(100%, 680px);
	padding: 28px;
	border: 1px solid #d9d2c8;
	border-radius: 8px;
	background: #fffdfa;
	box-shadow: 0 16px 40px rgba(51, 43, 35, 0.08);
}

.status-kicker {
	margin: 0 0 10px;
	color: #315f72;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.status-panel h1 {
	margin: 0 0 12px;
	font-size: 32px;
	line-height: 1.18;
	letter-spacing: 0;
}

.status-panel p {
	margin: 0 0 18px;
	color: #4f4942;
	font-size: 16px;
	line-height: 1.75;
}

.status-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.status-links a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid #b9aca0;
	border-radius: 6px;
	color: #263f4a;
	text-decoration: none;
	font-weight: 700;
	background: #fff;
}

.status-links a:hover,
.status-links a:focus {
	border-color: #315f72;
	color: #1f4d61;
}

@media (max-width: 560px) {
	.status-panel {
		padding: 22px;
	}

	.status-panel h1 {
		font-size: 26px;
	}

	.status-links {
		display: grid;
	}
}

