.mhc-blog-page {
	--mhc-navy: #101b55;
	--mhc-navy-soft: #17286d;
	--mhc-gold: #c99b22;
	--mhc-gold-dark: #a77c12;
	--mhc-text: #1c2433;
	--mhc-muted: #5f6877;
	--mhc-border: #dfe5ef;
	--mhc-light: #f5f7fb;
	--mhc-white: #ffffff;
	background: var(--mhc-white);
	color: var(--mhc-text);
	overflow-x: hidden;
}

.mhc-blog-page *,
.mhc-blog-page *::before,
.mhc-blog-page *::after {
	box-sizing: border-box;
}

.mhc-blog-container {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.mhc-blog-hero {
	position: relative;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 46%, rgba(245, 247, 251, 0.7) 100%),
		linear-gradient(135deg, #ffffff 0%, #eef2f7 100%);
	border-bottom: 1px solid var(--mhc-border);
	overflow: hidden;
}

.mhc-blog-hero::after {
	content: "";
	position: absolute;
	right: 6%;
	bottom: -42px;
	width: 240px;
	height: 120px;
	border: 2px dotted rgba(201, 155, 34, 0.28);
	border-radius: 999px 999px 0 0;
	pointer-events: none;
}

.mhc-blog-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
	align-items: center;
	min-height: 270px;
	padding: 54px 0 48px;
}

.mhc-blog-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 660px;
	padding-left: 30px;
	border-left: 4px solid var(--mhc-gold);
}

.mhc-blog-eyebrow {
	margin: 0 0 10px;
	color: var(--mhc-gold-dark);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.mhc-blog-hero h1 {
	margin: 0 0 10px;
	color: var(--mhc-navy);
	font-size: 48px;
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: 0;
}

.mhc-blog-hero__subtitle {
	margin: 0 0 12px;
	color: var(--mhc-navy);
	font-size: 24px;
	font-weight: 750;
	line-height: 1.25;
}

.mhc-blog-hero__description {
	max-width: 620px;
	margin: 0;
	color: var(--mhc-text);
	font-size: 17px;
	line-height: 1.7;
}

.mhc-blog-hero__visual {
	position: absolute;
	inset: 0 0 0 auto;
	width: 48%;
	opacity: 0.16;
	pointer-events: none;
}

.mhc-blog-hero__visual::before {
	content: "";
	position: absolute;
	inset: 22px 0 22px auto;
	width: 86%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(16, 27, 85, 0.08));
	border-radius: 8px 0 0 8px;
}

.mhc-blog-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(0.15);
}

.mhc-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	padding: 32px 0 54px;
	align-items: start;
}

.mhc-blog-section-heading {
	margin-bottom: 18px;
}

.mhc-blog-section-heading h2,
.mhc-blog-widget h2 {
	position: relative;
	margin: 0;
	color: var(--mhc-navy);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}

.mhc-blog-section-heading h2::after,
.mhc-blog-widget h2::after {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	margin-top: 10px;
	background: var(--mhc-gold);
}

.mhc-blog-card-list {
	display: grid;
	gap: 20px;
}

.mhc-blog-card {
	display: grid;
	grid-template-columns: minmax(230px, 42%) minmax(0, 1fr);
	min-height: 218px;
	background: var(--mhc-white);
	border: 1px solid var(--mhc-border);
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(16, 27, 85, 0.06);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mhc-blog-card:hover,
.mhc-blog-card:focus-within {
	transform: translateY(-2px);
	border-color: rgba(201, 155, 34, 0.42);
	box-shadow: 0 18px 34px rgba(16, 27, 85, 0.1);
}

.mhc-blog-card__media {
	position: relative;
	z-index: 0;
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 100%;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #e7ebf2, #f7f8fb);
	overflow: hidden;
}

.mhc-blog-card__image,
.mhc-blog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.mhc-blog-card:hover .mhc-blog-card__image,
.mhc-blog-card:focus-within .mhc-blog-card__image {
	transform: scale(1.03);
}

.mhc-blog-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 218px;
	place-items: center;
	color: rgba(16, 27, 85, 0.32);
	font-size: 42px;
	font-weight: 800;
}

.mhc-blog-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 24px 26px;
	background: var(--mhc-white);
}

.mhc-blog-card__date {
	margin: 0 0 9px;
	color: var(--mhc-gold-dark);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: uppercase;
}

.mhc-blog-card__title {
	margin: 0 0 10px;
	color: var(--mhc-navy);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.mhc-blog-card__title a,
.mhc-blog-recent h3 a {
	color: inherit;
	text-decoration: none;
}

.mhc-blog-card__title a:hover,
.mhc-blog-card__title a:focus,
.mhc-blog-recent h3 a:hover,
.mhc-blog-recent h3 a:focus {
	color: var(--mhc-gold-dark);
}

.mhc-blog-card__excerpt {
	margin: 0 0 16px;
	color: var(--mhc-text);
	font-size: 15px;
	line-height: 1.62;
}

.mhc-blog-card__link {
	width: max-content;
	max-width: 100%;
	color: var(--mhc-gold-dark);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
	text-transform: uppercase;
}

.mhc-blog-card__link span {
	display: inline-block;
	margin-left: 5px;
	transition: transform 160ms ease;
}

.mhc-blog-card__link:hover span,
.mhc-blog-card__link:focus span {
	transform: translateX(3px);
}

.mhc-blog-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 24px;
}

.mhc-blog-widget {
	padding: 22px;
	background: var(--mhc-white);
	border: 1px solid var(--mhc-border);
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(16, 27, 85, 0.05);
}

.mhc-blog-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
}

.mhc-blog-search input {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	color: var(--mhc-text);
	background: var(--mhc-white);
	border: 1px solid var(--mhc-border);
	border-right: 0;
	border-radius: 6px 0 0 6px;
	font-size: 14px;
	line-height: 1.2;
}

.mhc-blog-search input:focus {
	outline: 2px solid rgba(201, 155, 34, 0.28);
	outline-offset: 0;
	border-color: var(--mhc-gold);
}

.mhc-blog-search button {
	position: relative;
	width: 52px;
	min-height: 46px;
	padding: 0;
	color: var(--mhc-white);
	background: var(--mhc-navy);
	border: 1px solid var(--mhc-navy);
	border-radius: 0 6px 6px 0;
	font-size: 0;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease;
}

.mhc-blog-search button::before,
.mhc-blog-search button::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
}

.mhc-blog-search button::before {
	width: 14px;
	height: 14px;
	margin: -9px 0 0 -9px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.mhc-blog-search button::after {
	width: 8px;
	height: 2px;
	margin: 5px 0 0 3px;
	background: currentColor;
	border-radius: 999px;
	transform: rotate(45deg);
	transform-origin: left center;
}

.mhc-blog-search button:hover,
.mhc-blog-search button:focus {
	background: var(--mhc-gold-dark);
	border-color: var(--mhc-gold-dark);
}

.mhc-blog-category-list,
.mhc-blog-pagination ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.mhc-blog-category-list {
	margin-top: 16px;
}

.mhc-blog-category-list li + li {
	border-top: 1px solid var(--mhc-border);
}

.mhc-blog-category-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
	color: var(--mhc-text);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.35;
	text-decoration: none;
}

.mhc-blog-category-list a:hover,
.mhc-blog-category-list a:focus {
	color: var(--mhc-gold-dark);
}

.mhc-blog-category-list__count {
	flex: 0 0 auto;
	min-width: 28px;
	padding: 3px 8px;
	color: var(--mhc-navy);
	background: var(--mhc-light);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.mhc-blog-widget--cta {
	color: var(--mhc-white);
	background:
		linear-gradient(135deg, rgba(16, 27, 85, 0.98), rgba(23, 40, 109, 0.96)),
		var(--mhc-navy);
	border-color: rgba(16, 27, 85, 0.88);
	box-shadow: 0 16px 30px rgba(16, 27, 85, 0.18);
}

.mhc-blog-widget--cta h2,
.mhc-blog-widget--cta p {
	color: var(--mhc-white);
}

.mhc-blog-widget--cta h2::after {
	background: var(--mhc-gold);
}

.mhc-blog-widget--cta p,
.mhc-blog-widget--questions p,
.mhc-blog-widget__muted {
	margin: 14px 0 18px;
	font-size: 14px;
	line-height: 1.62;
}

.mhc-blog-widget--questions {
	background: var(--mhc-light);
}

.mhc-blog-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mhc-blog-button:hover,
.mhc-blog-button:focus {
	transform: translateY(-1px);
}

.mhc-blog-button--gold {
	color: var(--mhc-navy);
	background: var(--mhc-gold);
	border: 1px solid var(--mhc-gold);
}

.mhc-blog-button--gold:hover,
.mhc-blog-button--gold:focus {
	color: var(--mhc-navy);
	background: #d8ad38;
	border-color: #d8ad38;
}

.mhc-blog-button--outline {
	color: var(--mhc-navy);
	background: transparent;
	border: 1px solid var(--mhc-gold);
}

.mhc-blog-button--outline:hover,
.mhc-blog-button--outline:focus {
	color: var(--mhc-white);
	background: var(--mhc-navy);
	border-color: var(--mhc-navy);
}

.mhc-blog-recent-list {
	display: grid;
	gap: 13px;
	margin-top: 18px;
}

.mhc-blog-recent {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.mhc-blog-recent__thumb {
	display: block;
	width: 74px;
	height: 64px;
	background: var(--mhc-light);
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
}

.mhc-blog-recent__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mhc-blog-recent__thumb span {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: rgba(16, 27, 85, 0.34);
	font-size: 17px;
	font-weight: 800;
}

.mhc-blog-recent h3 {
	margin: 0 0 5px;
	color: var(--mhc-navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.mhc-blog-recent time {
	display: block;
	color: var(--mhc-muted);
	font-size: 12px;
	font-weight: 650;
	line-height: 1.25;
}

.mhc-blog-pagination {
	margin-top: 26px;
}

.mhc-blog-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.mhc-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 12px;
	color: var(--mhc-navy);
	background: var(--mhc-white);
	border: 1px solid var(--mhc-border);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.mhc-blog-pagination .page-numbers.current,
.mhc-blog-pagination .page-numbers:hover,
.mhc-blog-pagination .page-numbers:focus {
	color: var(--mhc-white);
	background: var(--mhc-navy);
	border-color: var(--mhc-navy);
}

.mhc-blog-empty {
	padding: 26px;
	background: var(--mhc-light);
	border: 1px solid var(--mhc-border);
	border-radius: 8px;
}

.mhc-blog-empty p {
	margin: 0;
	color: var(--mhc-text);
}

@media (max-width: 991px) {
	.mhc-blog-container {
		width: min(100% - 32px, 760px);
	}

	.mhc-blog-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 44px 0;
	}

	.mhc-blog-hero__copy {
		max-width: 680px;
	}

	.mhc-blog-hero h1 {
		font-size: 40px;
	}

	.mhc-blog-hero__subtitle {
		font-size: 21px;
	}

	.mhc-blog-hero__visual {
		width: 54%;
		opacity: 0.1;
	}

	.mhc-blog-layout {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 28px;
	}

	.mhc-blog-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: stretch;
	}

	.mhc-blog-widget--search,
	.mhc-blog-widget--cta,
	.mhc-blog-widget--questions {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.mhc-blog-container {
		width: min(100% - 24px, 520px);
	}

	.mhc-blog-hero__inner {
		padding: 38px 0;
	}

	.mhc-blog-hero__copy {
		padding-left: 18px;
	}

	.mhc-blog-hero h1 {
		font-size: 34px;
	}

	.mhc-blog-hero__subtitle {
		font-size: 19px;
	}

	.mhc-blog-hero__description {
		font-size: 15px;
		line-height: 1.65;
	}

	.mhc-blog-hero__visual {
		display: none;
	}

	.mhc-blog-layout {
		padding-bottom: 40px;
	}

	.mhc-blog-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.mhc-blog-card__media {
		width: 100%;
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.mhc-blog-card__placeholder {
		min-height: 0;
	}

	.mhc-blog-card__body {
		padding: 20px;
	}

	.mhc-blog-card__title {
		font-size: 19px;
	}

	.mhc-blog-card__excerpt {
		font-size: 14px;
	}

	.mhc-blog-sidebar {
		grid-template-columns: 1fr;
	}

	.mhc-blog-widget {
		padding: 20px;
	}

	.mhc-blog-search {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.mhc-blog-search input {
		border-right: 1px solid var(--mhc-border);
		border-radius: 6px;
	}

	.mhc-blog-search button {
		width: 100%;
		border-radius: 6px;
		font-size: 13px;
		padding: 0 18px;
	}

	.mhc-blog-search button::before,
	.mhc-blog-search button::after {
		display: none;
	}

	.mhc-blog-pagination ul {
		gap: 6px;
	}

	.mhc-blog-pagination .page-numbers {
		min-width: 38px;
		min-height: 38px;
		padding: 0 10px;
		font-size: 13px;
	}
}
