/* hazrac.org inner pages (resume) — system font stack, no external assets.
   The homepage has its own stylesheet: home.css. */

:root {
	--ink: #1a1a1a;
	--paper: #fff;
	--accent: #0872b4;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.5;
}

.site-header {
	max-width: 44em;
	margin: 0 auto;
	padding: 1.5rem 1.25rem 0;
}

.site-header a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
}

.prose {
	max-width: 44em;
	margin: 0 auto;
	padding: 1rem 1.25rem 4rem;
}

.prose h1 { font-size: 2rem; font-weight: 300; margin-bottom: 0.25em; }
.prose h2 { margin-top: 2em; border-bottom: 1px solid #e5e5e5; padding-bottom: 0.25em; font-weight: 500; }
.prose h3 { margin-top: 1.75em; font-weight: 600; }
.prose a { color: var(--accent); }
.prose li { margin: 0.35em 0; }

@media print {
	.site-header { display: none; }
}
