/* Minimale basisstijl (fase 1). De echte frontend-stijl komt in fase 2. */
* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--odt-font);
	color: var(--odt-ink);
	background: var(--odt-bg);
	line-height: 1.55;
}
a { color: var(--odt-primary); }
.odt-wrap { max-width: var(--odt-maxw); margin: 0 auto; padding: 1.5rem; }
.odt-site-header, .odt-site-footer {
	border-bottom: 1px solid var(--odt-line);
	background: var(--odt-bg-soft);
}
.odt-site-footer { border-top: 1px solid var(--odt-line); border-bottom: 0; margin-top: 3rem; }
.odt-brand { font-weight: 700; color: var(--odt-primary); text-decoration: none; font-size: 1.25rem; }
.odt-notice {
	background: var(--odt-primary-050);
	border: 1px solid var(--odt-line);
	border-radius: var(--odt-radius-sm);
	padding: 1rem 1.25rem;
	margin: 1.5rem 0;
	color: var(--odt-muted);
}
