.footer {
	font-family: "Garamond", "Calibri", "Times New Roman";
	grid-area: footer;
	background-color: #F7F7F7;
	display: grid;
	grid-template-columns: var(--max-width-header-half);
	grid-template-rows: var(--footer-row) var(--footer-row) var(--footer-row) var(--footer-row);
	grid-template-areas: "footer_text"
		"footer_email"
		"footer_version"
		"footer_copyright";
	font-size: var(--font-43);
	margin-top: calc(14vw * var(--size-factor));
	border-top: var(--border);
	padding-left: var(--footer-row);
}

.footerText {
	grid-area: footer_text;
}

.footerEmail {
	grid-area: footer_email;
}

.footerVersion{
	grid-area: footer_version;
}

.footerCopyright {
	grid-area: footer_copyright;
}