/* Shared styles for new notes — optional include from notes/*.html */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: clamp(1.25rem, 4vw, 2rem);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
	background: #f9f9f9;
	color: #111;
}

main {
	max-width: min(40rem, 100%);
	margin: 0 auto;
}

.site-nav {
	margin-bottom: 1.25rem;
	font-size: 0.9rem;
	text-align: center;
	line-height: 1.6;
}

.site-nav a {
	color: #111;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.site-nav span {
	color: #888;
	margin: 0 0.35rem;
}

h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.1rem, 2.2vw, 1.4rem);
	font-weight: 600;
	letter-spacing: -0.02em;
}
