.mw-blog-page {
	--mw-blog-midnight: #071b2b;
	--mw-blog-navy: #0c2639;
	--mw-blog-copper: #f2a47b;
	--mw-blog-paper: #f4f7f8;
	--mw-blog-ink: #142d40;
	--mw-blog-body: #536778;
	color: var(--mw-blog-ink);
	font-family: var(--mw-font-body);
}

.mw-blog-shell {
	width: min(100% - 48px, 1400px);
	margin-inline: auto;
}

.mw-blog-page h1,
.mw-blog-page h2,
.mw-blog-page h3,
.mw-blog-page p,
.mw-blog-page figure {
	margin-top: 0;
}

.mw-blog-page h1,
.mw-blog-page h2,
.mw-blog-page h3 {
	font-family: var(--mw-font-heading);
	letter-spacing: -0.025em;
}

.mw-blog-page a:focus-visible {
	outline: 3px solid var(--mw-blog-copper);
	outline-offset: 4px;
}

.mw-blog-page-hero {
	overflow: hidden;
	background: var(--mw-blog-midnight);
	color: #fff;
}

.mw-blog-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
	gap: clamp(48px, 6vw, 104px);
	align-items: center;
	min-height: 610px;
	padding-block: 72px;
}

.mw-blog-page-hero__copy {
	max-width: 760px;
}

.mw-blog-kicker {
	margin-bottom: 18px;
	color: var(--mw-blog-copper);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.mw-blog-page-hero h1 {
	max-width: 760px;
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(48px, 5vw, 76px);
	font-weight: 600;
	line-height: 1.02;
}

.mw-blog-page-hero__copy > p:not(.mw-blog-kicker) {
	max-width: 680px;
	margin-bottom: 30px;
	color: #c7d3dc;
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.75;
}

.mw-blog-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	align-items: center;
}

.mw-blog-page .mw-button,
.mw-blog-page-hero .mw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 13px 22px;
	border-radius: 8px;
	font-family: var(--mw-font-heading);
	font-weight: 700;
	text-decoration: none;
}

.mw-blog-page .mw-button--copper,
.mw-blog-page-hero .mw-button--copper {
	background: var(--mw-blog-copper);
	color: var(--mw-blog-midnight);
}

.mw-blog-hero-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	color: #fff;
	font-family: var(--mw-font-heading);
	font-weight: 600;
	text-decoration: none;
}

.mw-blog-page-hero__media {
	position: relative;
	margin-bottom: 0;
}

.mw-blog-page-hero__media::before {
	position: absolute;
	inset: -15px 22px 15px -15px;
	border: 1px solid rgba(242, 164, 123, .6);
	border-radius: 15px;
	content: "";
}

.mw-blog-page-hero__media img {
	position: relative;
	display: block;
	width: 100%;
	height: 420px;
	box-sizing: border-box;
	padding: 12px;
	border-radius: 15px;
	background: var(--mw-blog-navy);
	object-fit: contain;
	object-position: center;
}

.mw-blog-topics {
	border-bottom: 1px solid #cfdae1;
	background: #fff;
}

.mw-blog-topics__track {
	display: flex;
	overflow-x: auto;
	gap: 12px;
	padding-block: 18px;
	scrollbar-width: thin;
}

.mw-blog-topics a {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	min-height: 44px;
	padding: 9px 16px;
	border: 1px solid #b9c8d3;
	border-radius: 999px;
	color: var(--mw-blog-ink);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mw-blog-topics a:hover {
	border-color: var(--mw-blog-navy);
	background: var(--mw-blog-navy);
	color: #fff;
}

.mw-blog-featured {
	padding-block: 112px;
	background: var(--mw-blog-paper);
}

.mw-blog-featured h2,
.mw-blog-section-heading h2,
.mw-blog-answer h2,
.mw-blog-rfq h2 {
	margin-bottom: 18px;
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 600;
	line-height: 1.06;
}

.mw-blog-featured > .mw-blog-shell > h2 {
	max-width: 760px;
	margin-bottom: 42px;
}

.mw-blog-featured__article {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
	border-radius: 15px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 24px 68px rgba(14, 42, 61, .1);
}

.mw-blog-post-media {
	display: grid;
	place-items: center;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0;
	background: #eef3f6;
}

.mw-blog-post-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	object-fit: cover;
	object-position: center;
}

.mw-blog-featured__article > .mw-blog-post-media {
	height: 440px;
}

.mw-blog-featured__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(34px, 4.5vw, 68px);
}

.mw-blog-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 14px;
	align-items: center;
	margin-bottom: 17px;
	color: #6a7d8b;
	font-size: 12px;
	line-height: 1.5;
}

.mw-blog-post-meta__topic {
	color: #a64827;
	font-weight: 700;
	letter-spacing: .06em;
	text-decoration: none;
	text-transform: uppercase;
}

.mw-blog-featured__body h3 {
	margin-bottom: 18px;
	font-size: clamp(30px, 3vw, 46px);
	font-weight: 600;
	line-height: 1.08;
}

.mw-blog-featured__body h3 a,
.mw-blog-post__body h3 a {
	color: inherit;
	text-decoration: none;
}

.mw-blog-featured__body > p,
.mw-blog-post__body > p {
	margin-bottom: 22px;
	color: var(--mw-blog-body);
	line-height: 1.72;
}

.mw-blog-text-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	border-bottom: 1px solid currentColor;
	color: #963b1c;
	font-family: var(--mw-font-heading);
	font-weight: 700;
	text-decoration: none;
}

.mw-blog-latest {
	padding-block: 112px;
	background: #fff;
}

.mw-blog-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr);
	gap: 48px;
	align-items: end;
	margin-bottom: 46px;
}

.mw-blog-section-heading h2 {
	margin-bottom: 0;
}

.mw-blog-section-heading > p {
	margin-bottom: 4px;
	color: var(--mw-blog-body);
	font-size: 16px;
	line-height: 1.7;
}

.mw-blog-latest__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 24px;
}

.mw-blog-post {
	overflow: hidden;
	border: 1px solid #cfdae1;
	border-radius: 15px;
	background: #fff;
}

.mw-blog-post--lead {
	grid-column: span 7;
	grid-row: span 2;
}

.mw-blog-post--compact {
	display: block;
	grid-column: span 5;
}

.mw-blog-post--row {
	grid-column: span 4;
}

.mw-blog-post--lead .mw-blog-post-media,
.mw-blog-post--compact .mw-blog-post-media,
.mw-blog-post--row .mw-blog-post-media {
	height: 260px;
}

.mw-blog-post__body {
	padding: 26px;
}

.mw-blog-post--lead .mw-blog-post__body {
	padding: 34px;
}

.mw-blog-post__body h3 {
	margin-bottom: 14px;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.18;
}

.mw-blog-post--lead .mw-blog-post__body h3 {
	font-size: clamp(28px, 2.5vw, 38px);
}

.mw-blog-post--compact .mw-blog-post__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 22px;
}

.mw-blog-post--compact .mw-blog-post__body > p,
.mw-blog-post--compact .mw-blog-text-link {
	display: none;
}

.mw-blog-pagination {
	margin-top: 48px;
}

.mw-blog-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mw-blog-pagination a,
.mw-blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding-inline: 12px;
	border: 1px solid #b9c8d3;
	border-radius: 7px;
	color: var(--mw-blog-ink);
	text-decoration: none;
}

.mw-blog-pagination .current {
	border-color: var(--mw-blog-navy);
	background: var(--mw-blog-navy);
	color: #fff;
}

.mw-blog-empty {
	max-width: 760px;
	padding: 42px;
	border: 1px solid #cfdae1;
	border-radius: 15px;
	background: var(--mw-blog-paper);
}

.mw-blog-empty h3 {
	margin-bottom: 12px;
	font-size: 28px;
}

.mw-blog-empty__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.mw-blog-goals {
	padding-block: 112px;
	background: var(--mw-blog-midnight);
	color: #fff;
}

.mw-blog-goals .mw-blog-section-heading h2 {
	color: #fff;
}

.mw-blog-goals .mw-blog-section-heading > p {
	color: #c7d3dc;
}

.mw-blog-goals__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 15px;
}

.mw-blog-goal {
	display: flex;
	flex-direction: column;
	min-height: 270px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 15px;
	background: var(--mw-blog-navy);
	color: #fff;
	text-decoration: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

.mw-blog-goal:first-child {
	grid-column: span 2;
	grid-row: span 2;
	justify-content: flex-end;
	min-height: 555px;
	background: #12334a;
}

.mw-blog-goal:hover {
	border-color: var(--mw-blog-copper);
	transform: translateY(-3px);
}

.mw-blog-goal h3 {
	margin-bottom: 12px;
	color: #fff;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.15;
}

.mw-blog-goal:first-child h3 {
	max-width: 540px;
	font-size: clamp(34px, 3.5vw, 52px);
}

.mw-blog-goal p {
	margin-bottom: 26px;
	color: #c7d3dc;
	line-height: 1.68;
}

.mw-blog-goal > span {
	margin-top: auto;
	color: var(--mw-blog-copper);
	font-family: var(--mw-font-heading);
	font-weight: 700;
}

.mw-blog-answer {
	padding-block: 112px;
	background: var(--mw-blog-paper);
}

.mw-blog-answer__grid {
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
	gap: clamp(48px, 7vw, 110px);
	align-items: start;
}

.mw-blog-answer__content > p {
	margin-bottom: 34px;
	color: var(--mw-blog-body);
	font-size: 18px;
	line-height: 1.82;
}

.mw-blog-answer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid #aebfca;
}

.mw-blog-answer__links a {
	display: flex;
	align-items: center;
	min-height: 58px;
	border-bottom: 1px solid #c8d4db;
	color: #963b1c;
	font-family: var(--mw-font-heading);
	font-weight: 700;
	text-decoration: none;
}

.mw-blog-answer__links a:nth-child(odd) {
	margin-right: 24px;
}

.mw-blog-rfq {
	padding-block: 72px;
	background: var(--mw-blog-navy);
	color: #fff;
}

.mw-blog-rfq__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 48px;
	align-items: center;
}

.mw-blog-rfq h2 {
	margin-bottom: 14px;
	color: #fff;
}

.mw-blog-rfq p {
	max-width: 820px;
	margin-bottom: 0;
	color: #c7d3dc;
	line-height: 1.7;
}

@media (max-width: 1023px) {
	.mw-blog-page-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
		gap: 42px;
		min-height: 560px;
	}

	.mw-blog-page-hero__media img {
		height: 360px;
	}

	.mw-blog-featured__article {
		grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
	}

	.mw-blog-latest__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mw-blog-post--lead,
	.mw-blog-post--compact,
	.mw-blog-post--row {
		grid-column: auto;
		grid-row: auto;
	}

	.mw-blog-post--compact {
		display: block;
	}

	.mw-blog-post--lead .mw-blog-post-media,
	.mw-blog-post--compact .mw-blog-post-media,
	.mw-blog-post--row .mw-blog-post-media {
		height: 240px;
		min-height: 0;
	}

	.mw-blog-post--compact .mw-blog-post__body > p,
	.mw-blog-post--compact .mw-blog-text-link {
		display: flex;
	}

	.mw-blog-goals__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mw-blog-goal:first-child {
		grid-column: span 2;
		grid-row: auto;
		min-height: 360px;
	}
}

@media (max-width: 767px) {
	.mw-blog-shell {
		width: min(100% - 32px, 1400px);
	}

	.mw-blog-page-hero__grid {
		grid-template-columns: 1fr;
		gap: 42px;
		min-height: 0;
		padding-block: 62px;
	}

	.mw-blog-page-hero h1 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.mw-blog-page-hero__media img {
		height: 300px;
	}

	.mw-blog-featured,
	.mw-blog-latest,
	.mw-blog-goals,
	.mw-blog-answer {
		padding-block: 78px;
	}

	.mw-blog-featured__article,
	.mw-blog-section-heading,
	.mw-blog-answer__grid,
	.mw-blog-rfq__inner {
		grid-template-columns: 1fr;
	}

	.mw-blog-featured__article > .mw-blog-post-media {
		height: 300px;
	}

	.mw-blog-featured__body {
		padding: 30px 24px;
	}

	.mw-blog-section-heading {
		gap: 12px;
		margin-bottom: 34px;
	}

	.mw-blog-latest__grid,
	.mw-blog-goals__grid,
	.mw-blog-answer__links {
		grid-template-columns: 1fr;
	}

	.mw-blog-post--lead .mw-blog-post-media,
	.mw-blog-post--compact .mw-blog-post-media,
	.mw-blog-post--row .mw-blog-post-media {
		height: 240px;
	}

	.mw-blog-post__body,
	.mw-blog-post--lead .mw-blog-post__body {
		padding: 24px;
	}

	.mw-blog-goal,
	.mw-blog-goal:first-child {
		grid-column: auto;
		min-height: 250px;
	}

	.mw-blog-answer__links a:nth-child(odd) {
		margin-right: 0;
	}

	.mw-blog-rfq__inner {
		gap: 26px;
	}

	.mw-blog-rfq .mw-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mw-blog-page *,
	.mw-blog-page *::before,
	.mw-blog-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
