/* Blog article page (article.php). Self-contained — do not share rules with
   legal.css, which styles the static ToS/privacy pages (vop.php, gdpr.php)
   and still relies on their own .section-wrapped markup. */

.page-heading {
	padding: 128px 64px 0;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.page-heading h1 {
	font-size: 3rem;
	font-weight: 600;
	color: var(--night);
}

#document {
	max-width: 820px;
	margin: 0 auto;
	padding: 64px 32px 128px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Markdown output has no section wrapper — approximate the old
   section-to-section gap (48px) with extra margin above each heading. */
#document h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--night);
	margin-top: 32px;
}

#document h2:first-child {
	margin-top: 0;
}

#document h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--night);
	margin-top: 8px;
}

#document p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--mocha);
}

#document ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 24px;
	color: var(--mocha);
	font-size: 1rem;
	line-height: 1.6;
}

#document li::marker {
	color: var(--stone);
}

#document strong {
	color: var(--night);
	font-weight: 600;
}

#document a {
	color: var(--forest);
}
