/* Layout */

.sheet {
	background-color: var(--color-primary);
}
.sheet {
	display: flex;
	flex-direction: column;
	/*gap: var(--space-xs);*/
	padding-block: 1em;
}
/*
.sheet > *:last-child {
	align-self: flex-end;
}
*/
.sheet > */*:not(h3)*/ {
	margin-inline: var(--offset-text);
}
@media screen and (min-width: 48em) {
	.sheet {
		padding: var(--offset-headline);
	}
	.sheet > */*:not(h3)*/ {
		/*margin-inline: var(--offset-headline) 0;*/
		margin-inline: 0;
	}
}