body {
	font-family: sans-serif;
	color: #000;
	background: #fff;
}
.page {
	width: 210mm;
	height: 297mm;
	margin: auto;
	background: white;
	overflow: hidden;
}

/* HEADER */
.header {
	background: var(--main-dark);
	color: var(--text-light);
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	z-index: 1;
	border-bottom: 1px solid #000;
}

h1 {
	font-size: 22px;
}
.subtitle {
	font-size: 11px;
}
.contact span {
	display: block;
	font-size: 9px;
}

/* MAIN LAYOUT */
.layout {
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.row {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-auto-rows: auto 1fr;
}

.stretch {
	flex: 1 1 100%; /* This box stretches to take up the remaining space */
}

.sidebar {
	border-right: 1px solid #000;
	padding: 1em 1em;
	text-transform: uppercase;
}
.content {
	padding-left: 16px;
	margin-top: 10px;
}
h2 {
	font-size: 11px;
	margin-bottom: 4px;
	text-transform: uppercase;
}
h3 {
	font-size: 11px;
	margin-top: 2mm;
	margin-bottom: 0;
}

.meta {
	font-size: 9px;
	color: var(--muted-dark);
	padding: 0;
	margin: 0;
}

p,
li {
	font-size: 10px;
	line-height: 1.45;
	margin-top: 0;
}
ul {
	margin-top: 0;
	padding-left: 16px;
}
hr {
	border: 0;
	border-top: 1px solid #000;
	margin: 8px 0;
}

/* SECTION SEPARATORS */
.row-separator {
	border: none;
	border-top: 2px solid #000;
	width: 35%;
	border-radius: 3;
}

/* PRINT OPTIMIZATION */
@media print {
	body,
	.page {
		size: A4;
		margin: 0;
		print-color-adjust: exact;
	}
}
