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

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

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

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

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

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

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

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

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

#tompla .page 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;
}

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

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

#tompla .page figure {
	margin-left: 0;
}

#tompla .page 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#tompla .page nav h2::before {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	#tompla .page nav {
		padding: 24px;
	}

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

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

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

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

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

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

	#tompla .page nav {
		padding: 26px 28px;
	}
}

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