body {
	margin: 0 !important;
	padding: 0 !important;
}

.fx-site-header,
.fx-article-breadcrumbs,
.fx-related-guides {
	box-sizing: border-box;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fx-site-header *,
.fx-article-breadcrumbs *,
.fx-related-guides * {
	box-sizing: border-box;
}

.fx-site-header {
	position: relative;
	z-index: 20;
	width: 100%;
	border-bottom: 1px solid #dfe5ee;
	background: rgba(255, 255, 255, 0.97);
}

.fx-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1160px, calc(100% - 40px));
	min-height: 68px;
	margin: 0 auto;
}

.fx-site-header__brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.fx-site-header__brand img {
	display: block;
	width: auto;
	height: 52px;
}

.fx-site-header__nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.fx-site-header__nav a,
.fx-article-breadcrumbs a,
.fx-related-guides a {
	color: #2457d6;
	text-decoration: none;
}

.fx-site-header__nav a {
	color: #344054;
	font-size: 14px;
	font-weight: 700;
}

.fx-site-header__nav a:hover,
.fx-site-header__nav a:focus,
.fx-article-breadcrumbs a:hover,
.fx-article-breadcrumbs a:focus,
.fx-related-guides a:hover,
.fx-related-guides a:focus {
	color: #1d4ed8;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fx-article-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	width: min(1120px, calc(100% - 40px));
	margin: 18px auto;
	color: #667085;
	font-size: 13px;
	line-height: 1.5;
}

.fx-article-breadcrumbs [aria-current="page"] {
	overflow: hidden;
	color: #475467;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fx-related-guides {
	width: min(1160px, calc(100% - 40px));
	margin: 40px auto;
	color: #172033;
}

.fx-related-guides__inner {
	padding: clamp(24px, 4vw, 40px);
	border: 1px solid #dfe5ee;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(25, 40, 72, 0.08);
}

.fx-related-guides__eyebrow {
	margin: 0 0 8px;
	color: #2457d6;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fx-related-guides h2 {
	margin: 0 0 20px;
	color: #101828;
	font-size: clamp(1.4rem, 3vw, 2rem);
	line-height: 1.2;
}

.fx-related-guides ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 28px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.fx-related-guides li {
	margin: 0;
	padding: 0;
}

.fx-related-guides li a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid #eaecf0;
	font-weight: 650;
	line-height: 1.45;
}

.fx-related-guides__archive {
	display: inline-block;
	font-weight: 750;
}

@media (max-width: 720px) {
	.fx-site-header__inner {
		width: min(100% - 24px, 1120px);
	}

	.fx-site-header__brand img {
		height: 44px;
	}

	.fx-site-header__nav {
		gap: 12px;
	}

	.fx-site-header__nav a {
		font-size: 12px;
	}

	.fx-article-breadcrumbs,
	.fx-related-guides {
		width: min(100% - 24px, 1120px);
	}

	.fx-article-breadcrumbs [aria-current="page"] {
		display: none;
	}

	.fx-related-guides ul {
		grid-template-columns: 1fr;
	}
}