.page-content {
	width: 100%;
	padding-top: 32px;
	background: var(--background);
	color: var(--text);
}

.page-content > div > section {
	padding-top: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--border);
}

.page-content > div > section:first-child {
	padding-top: 0;
}

.page-content > div > section:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.page-content section section {
	margin-top: 28px;
	padding: 0;
	border: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	color: var(--text-heading);
}

.page-content h2 {
	max-width: 820px;
	margin-bottom: 16px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 750;
	letter-spacing: -0.5px;
}

.page-content h3 {
	max-width: 820px;
	margin-bottom: 14px;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 700;
}

.page-content h4 {
	max-width: 820px;
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
}

.page-content p {
	max-width: 860px;
	margin-top: 0;
	margin-bottom: 16px;
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.75;
    word-break: break-word;
}

.page-content p:last-child {
	margin-bottom: 0;
}

.page-content strong {
	color: var(--text-heading);
	font-weight: 700;
}

.page-content figure {
	margin-left: 0;
}

.page-content a {
	color: var(--brand);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	overflow-wrap: anywhere;
	transition: color 150ms ease;
}

.page-content a:hover {
	color: var(--brand-hover);
}

.page-content ul,
.page-content ol {
	max-width: 860px;
	margin-top: 14px;
	margin-bottom: 20px;
	padding-left: 28px;
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.7;
}

.page-content ul {
	list-style-type: disc;
}

.page-content ol {
	list-style-type: decimal;
}

.page-content li {
	margin-bottom: 9px;
	padding-left: 4px;
	color: var(--text-muted);
}

.page-content li:last-child {
	margin-bottom: 0;
}

.page-content li::marker {
	color: var(--brand);
	font-weight: 700;
}

.page-content ul ul,
.page-content ol ul {
	margin-top: 9px;
	margin-bottom: 9px;
	padding-left: 26px;
	list-style-type: circle;
}

.page-content ul ul ul,
.page-content ol ul ul {
	list-style-type: square;
}

.page-content ol ol {
	margin-top: 9px;
	margin-bottom: 9px;
	padding-left: 30px;
	list-style-type: lower-alpha;
}

.page-content ol ol ol {
	list-style-type: lower-roman;
}

.page-content ul ol {
	margin-top: 9px;
	margin-bottom: 9px;
	padding-left: 30px;
	list-style-type: decimal;
}

.page-content li > p {
	margin-top: 10px;
	margin-bottom: 10px;
}

.page-content li > ul:last-child,
.page-content li > ol:last-child,
.page-content li > p:last-child {
	margin-bottom: 0;
}

.page-content nav {
	margin-top: 22px;
	padding: 20px;
	border: 1px solid var(--border);
	background: var(--background-soft);
}

.page-content nav h2 {
	margin-bottom: 14px;
	padding-left: 0;
	font-size: 20px;
}

.page-content nav h2::before {
	display: none;
}

.page-content nav ol,
.page-content nav ul {
	margin-top: 0;
	margin-bottom: 0;
}

.page-content nav li {
	margin-bottom: 7px;
}

.page-content nav a {
	font-weight: 600;
}

.page-content > div > section > h2:first-child {
	position: relative;
	padding-left: 18px;
}

.page-content > div > section > h2:first-child::before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 0;
	width: 3px;
	background: var(--brand);
}

.page-content section section > h2:first-child,
.page-content section section > h3:first-child,
.page-content section section > h4:first-child {
	margin-top: 0;
}

.page-content section > div {
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.75;
}

.page-content section > div > div {
	margin-bottom: 13px;
}

.page-content section > div > div:last-child {
	margin-bottom: 0;
}

.page-content table {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	border-collapse: collapse;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.55;
}

.page-content th,
.page-content td {
	padding: 12px 14px;
	border: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.page-content th {
	background: var(--background-soft);
	color: var(--text-heading);
	font-weight: 700;
}

.page-content blockquote {
	max-width: 860px;
	margin: 20px 0;
	padding: 16px 20px;
	border-left: 3px solid var(--brand);
	background: var(--background-soft);
	color: var(--text-muted);
}

.page-content blockquote p:last-child {
	margin-bottom: 0;
}

.page-content hr {
	margin: 32px 0;
	border: 0;
	border-top: 1px solid var(--border);
}

.page-content sup {
	font-size: 11px;
	line-height: 1;
	vertical-align: super;
}

@media (min-width: 768px) {
	.page-content {
		padding-top: 34px;
	}

	.page-content > div > section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.page-content section section {
		margin-top: 32px;
	}

	.page-content h2 {
		font-size: 28px;
	}

	.page-content h3 {
		font-size: 22px;
	}

	.page-content h4 {
		font-size: 19px;
	}

	.page-content p,
	.page-content ul,
	.page-content ol,
	.page-content section > div {
		font-size: 17px;
	}

	.page-content ul,
	.page-content ol {
		padding-left: 32px;
	}

	.page-content nav {
		padding: 24px;
	}

	.page-content nav h2 {
		font-size: 22px;
	}
}

@media (min-width: 1024px) {
	.page-content {
		padding-top: 40px;
	}

	.page-content > div > section {
		padding-top: 46px;
		padding-bottom: 46px;
	}

	.page-content section section {
		margin-top: 36px;
	}

	.page-content h2 {
		font-size: 30px;
	}

	.page-content h3 {
		font-size: 23px;
	}

	.page-content nav {
		padding: 26px 28px;
	}
}

@media (min-width: 1280px) {
	.page-content h2 {
		font-size: 32px;
	}
}