.nhcb-guide {
	--nhcb-navy: #0d2866;
	--nhcb-green: #62bf3d;
	--nhcb-ink: #172033;
	--nhcb-muted: #5a6678;
	--nhcb-line: #dce4ed;
	--nhcb-soft: #f5f8fb;
	box-sizing: border-box;
	width: min(1120px, calc(100% - 32px));
	margin: 56px auto 24px;
	color: var(--nhcb-ink);
	font-family: inherit;
	font-size: 17px;
	line-height: 1.72;
}

.nhcb-guide *,
.nhcb-guide *::before,
.nhcb-guide *::after {
	box-sizing: border-box;
}

.nhcb-guide h2 {
	margin: 0 0 16px;
	color: var(--nhcb-navy);
	font-size: clamp(25px, 3vw, 36px);
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.nhcb-guide p {
	margin: 0 0 16px;
	color: var(--nhcb-muted);
}

.nhcb-guide-intro,
.nhcb-section {
	margin: 0 0 48px;
}

.nhcb-guide-intro {
	max-width: 900px;
}

.nhcb-eyebrow,
.nhcb-card-label {
	display: block;
	margin-bottom: 8px;
	color: #438f29;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.nhcb-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: nhcb-step;
}

.nhcb-steps li {
	position: relative;
	min-height: 180px;
	padding: 62px 22px 22px;
	border: 1px solid var(--nhcb-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(13, 40, 102, .06);
	counter-increment: nhcb-step;
}

.nhcb-steps li::before {
	position: absolute;
	top: 18px;
	left: 22px;
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border-radius: 50%;
	background: var(--nhcb-navy);
	color: #fff;
	content: counter(nhcb-step);
	font-size: 14px;
	font-weight: 800;
}

.nhcb-steps span {
	color: var(--nhcb-ink);
	font-weight: 600;
}

.nhcb-two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin: 0 0 48px;
}

.nhcb-card {
	padding: 30px;
	border: 1px solid var(--nhcb-line);
	border-radius: 18px;
	background: var(--nhcb-soft);
}

.nhcb-card h2,
.nhcb-limit h2,
.nhcb-faq h2,
.nhcb-related h2 {
	font-size: clamp(23px, 2.4vw, 30px);
}

.nhcb-card p:last-child,
.nhcb-limit p:last-child {
	margin-bottom: 0;
}

.nhcb-example {
	border-color: #cae8bd;
	background: #f5fbf2;
}

.nhcb-checks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nhcb-checks li {
	position: relative;
	padding: 14px 16px 14px 48px;
	border-bottom: 1px solid var(--nhcb-line);
	color: var(--nhcb-ink);
}

.nhcb-checks li::before {
	position: absolute;
	top: 15px;
	left: 10px;
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 50%;
	background: #e8f6e2;
	color: #36851d;
	content: "\2713";
	font-size: 14px;
	font-weight: 900;
}

.nhcb-limit {
	margin: 0 0 48px;
	padding: 28px 30px;
	border-left: 5px solid #e7a53c;
	border-radius: 4px 16px 16px 4px;
	background: #fff8ec;
}

.nhcb-limit h2 {
	color: #70450b;
}

.nhcb-faq details {
	margin-bottom: 12px;
	border: 1px solid var(--nhcb-line);
	border-radius: 12px;
	background: #fff;
}

.nhcb-faq summary {
	padding: 18px 52px 18px 20px;
	color: var(--nhcb-navy);
	cursor: pointer;
	font-weight: 750;
	list-style-position: inside;
}

.nhcb-faq details p {
	margin: 0;
	padding: 0 20px 20px;
}

.nhcb-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.nhcb-related-grid a {
	display: flex;
	min-height: 126px;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	border: 1px solid var(--nhcb-line);
	border-radius: 14px;
	background: #fff;
	color: var(--nhcb-navy);
	text-decoration: none;
	box-shadow: 0 8px 28px rgba(13, 40, 102, .05);
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nhcb-related-grid a:hover,
.nhcb-related-grid a:focus-visible {
	border-color: var(--nhcb-green);
	box-shadow: 0 12px 30px rgba(13, 40, 102, .1);
	transform: translateY(-2px);
}

.nhcb-related-grid a:focus-visible,
.nhcb-faq summary:focus-visible {
	outline: 3px solid rgba(98, 191, 61, .45);
	outline-offset: 3px;
}

.nhcb-related-grid strong {
	font-size: 19px;
}

.nhcb-related-grid span {
	color: #438f29;
	font-size: 14px;
	font-weight: 700;
}

.nhcb-reviewed {
	padding-top: 20px;
	border-top: 1px solid var(--nhcb-line);
	font-size: 14px;
}

@media (max-width: 860px) {
	.nhcb-steps {
		grid-template-columns: 1fr 1fr;
	}

	.nhcb-two-column {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.nhcb-guide {
		width: min(100% - 22px, 1120px);
		margin-top: 38px;
		font-size: 16px;
	}

	.nhcb-steps,
	.nhcb-checks,
	.nhcb-related-grid {
		grid-template-columns: 1fr;
	}

	.nhcb-steps li {
		min-height: 0;
	}

	.nhcb-card,
	.nhcb-limit {
		padding: 22px;
	}
}

@media print {
	.nhcb-guide {
		width: 100%;
	}

	.nhcb-steps,
	.nhcb-related-grid {
		grid-template-columns: 1fr 1fr;
	}

	.nhcb-related-grid a {
		box-shadow: none;
	}
}
