/**
 * Sticky footer: keep footer at viewport bottom when content is short.
 */
body:has(> footer) {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body:has(> footer) > footer {
	margin-top: auto;
	flex-shrink: 0;
}
