/* Standalone styling for the static legal pages (privacy.html, terms.html).
   Deliberately independent of global.css / the Svelte bundle: these pages must
   render on their own, without the app booting. */
:root {
	color-scheme: light;
	--legal-text: #2b2b2b;
	--legal-muted: #6b6b6b;
	--legal-rule: #e3e3e3;
	--legal-link: #2b5fa8;
}

html, body {
	margin: 0;
	padding: 0;
	background: #fbfbfb;
}

body {
	color: var(--legal-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

main {
	max-width: 760px;
	margin: 0 auto;
	padding: 48px 20px 80px;
}

header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--legal-rule);
}

header img {
	width: 40px;
	height: 40px;
}

header a {
	font-size: 1.1rem;
	font-weight: 300;
	letter-spacing: 0.02em;
	color: var(--legal-text);
	text-decoration: none;
}

h1 {
	font-size: 2rem;
	font-weight: 300;
	margin: 32px 0 4px;
}

h2 {
	font-size: 1.15rem;
	font-weight: 600;
	margin: 32px 0 8px;
}

.updated {
	color: var(--legal-muted);
	font-size: 0.9rem;
	margin: 0 0 8px;
}

a {
	color: var(--legal-link);
}

ul {
	padding-left: 1.3rem;
}

li {
	margin-bottom: 6px;
}

footer {
	margin-top: 48px;
	padding-top: 16px;
	border-top: 1px solid var(--legal-rule);
	color: var(--legal-muted);
	font-size: 0.9rem;
}

footer a {
	margin-right: 16px;
}
