/**
 * Centered content layout (Thank You / 404)
 * Reuses global classes (.btn, .font-54); adds only what's extra.
 * Scoped to .centered-content — does not affect other pages.
 * Units: px throughout.
 */
.centered-content {
	text-align: center;
}
.centered-content__inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* Green circle icon badge (enlarged) */
.centered-content__icon {
	--cc-circle: var(--color-ok, #1f7a4d);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: var(--cc-circle);
	color: #fff;
	margin: 0 auto 34px;
}
.centered-content__icon .cc-ico {
	width: 74px;
	height: 74px;
	display: block;
}
.centered-content__icon img {
	width: 80px;
	height: auto;
}

/* Warning variant (404) — terra/alert colour, not green.
   The white exclamation follows automatically via --cc-circle. */
.centered-content__icon--warning {
	--cc-circle: var(--color-terra, #B85042);
}

/* Heading — size/serif come from global h2 + .font-54; only colour + spacing here */
.centered-content__title {
	color: var(--color-forest-deep, #1F2A22);
	margin: 0 0 18px;
}

/* Body */
.centered-content__body {
	color: var(--color-stone, #6B6760);
	font-size: 20px;
	line-height: 1.5;
	max-width: 1200px;
	margin: 0 auto 32px;
}
.centered-content__body a {
	color: var(--color-ok, #1f7a4d);
	font-weight: var(--fw-600, 600);
	text-decoration: none;
}
.centered-content__body a:hover {
	text-decoration: underline;
}

/* Button — reuses global .btn; this modifier only makes it a green pill.
   (Global .btn is terra-red with a 10px radius; screenshot is a green pill.) */
.btn.btn-pill {
	background: var(--color-ok, #1f7a4d);
	border-radius: 999px;
}
.btn.btn-pill:hover {
	background: var(--color-hero-accent, #163f3c);
}

/* Mobile */
@media (max-width: 768px) {
	.centered-content__icon {
		width: 120px;
		height: 120px;
		margin-bottom: 26px;
	}
	.centered-content__icon .cc-ico {
		width: 56px;
		height: 56px;
	}
	.centered-content__body {
		font-size: 18px;
	}
}
