* {
	box-sizing: border-box;
  }

body {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em;
	background-color: ivory;
	font-family: "Inter", sans-serif;
}
  
.push {
	margin-left: auto;
}

.page-layout {
	display: grid;
	grid-template-columns: 250px minmax(250px, 550px) 350px;	
	gap: 10px;
	grid-auto-rows: max-content;
	margin: 0 auto;
}

.page-layout.no-photo {
	grid-template-columns: 250px minmax(250px, 800px);
}

.page-layout > div {
	padding: 0em 0 1em 0;
}

.white-space {
	grid-column: 1;
	grid-row: 1;
	padding: 0;
}

.header {
	grid-column: 2 / 4;
	grid-row: 1;
	position: sticky;
	top: 0;
	background: linear-gradient(180deg, ivory 0%, ivory 10%,  #E5E5D8 100%);
	z-index: 10;
	border-bottom: 1px solid black;
}

.page-layout > .header {
  	padding: 0;
}

.navigation {
	grid-column: 1;
	grid-row: 2;
}

.content-column {
	grid-column: 2;
	grid-row: 2;
}

.photo-column {
	grid-column: 3;
	grid-row: 2;
}

nav {
	width: 250px;
	position: static;
	top: 0px;
	background: linear-gradient(90deg, ivory 0%, ivory 10%,  #E5E5D8 100%);
	border-right: 1px solid black;
	text-align: right;
	font-size: 0.85em;
	font-family: "Inter", sans-serif;
	align-self: start;
	list-style: none;
	padding: 0.5em;
}


@media (max-width: 1100px) {
	.content-column {
		grid-column: 2 / 3;
		grid-row: 2;
	}
	.photo-column {
		grid-column: 2 / 3;
		grid-row: 3;
	}
	.page-layout {
		grid-template-columns: 250px minmax(250px,1000px);
	}
}

@media (max-width: 850px) {
	.page-layout {
		display: block;
	}	
	.page-layout > div {
		margin-top: 10px;
	}
	.white-space {
		display: none;
	}
	nav {
		background: linear-gradient(270deg, ivory, #E5E5D8);
		border-right: 0px;
		border-left: 1px solid black;
		text-align: left;
	}
}

.container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
	gap: 5px;
	margin: 1em 0 1em 0;
	justify-content: center;
}

.container > div {
	background-color: #E5E5D8;
	border: 1px solid black;
	font-size: 0.85em;
	font-family: "Inter", sans-serif;
	font-style: italic;
	text-align: center;
}

.container img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.container p { 
	margin: 0.5em;
}

.logo-size {
	width: 23%;
	min-width: 13ch;
	margin: 0 auto;
	display: block;
}

.solo-img {
	grid-template-columns: 1fr;
	max-width: 50%;
	width: 100%;
    margin: 0 auto;
}

.container-alt {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
	gap: 5px;
	margin: 2em 0 2em 0;
}

.container-alt > div {
	background-color: #E5E5D8;
	border: 1px solid black;
	font-size: 1em;
	font-family: "Inter", sans-serif;
	text-align: center;
}

p {
	line-height: 125%;
	margin-top: 1em;
	margin-bottom: 1em;
}

.container-alt p {
	margin: 0.5em;
}


.solo-img p {
	font-style: normal;
	text-align: left;
}

p.indent {
	margin-top: 0;
	text-indent: 1em;
}

.no-margin-bottom {
	margin-bottom: 0;
}

.sleutelterm {
	display: inline;
	color: rgb(210, 97, 4);
	font-weight: normal !important;
}

.jaartal {
	display: inline;
	color: rgb(39, 39, 173);
	font-weight: bold !important;
	font-style: normal !important;
}


q {
	font-style: italic;
	line-height: 125%;
	margin: 0.5em;
	text-indent: 1em;
}

h2 {
	text-decoration: underline;
}

h3 {
	font-size: 1.2em;
	margin: 0.5em 0 0.5em 0;
}

h4 {

	margin: 0 0 .5em 0;
}


.date-written {
	text-align: end;
	font-size: 0.85em;
	font-style: italic;
	font-weight: normal;
	text-decoration: none;
}

.docent {
	text-align: end;
	font-size: 0.85em;
	font-weight: normal;
	text-decoration: none;
}

hr {
	align-self: center;
	border-width: 1px 0 0 0;
	border-style: double;
	border-color:  black;
	color: black;
	background-color: black;
	size: 1px;
	margin: 2em 45% 2em 45%;
}

hr.articlebreak {
	margin: 4em 30% 4em 30%;
}

ul {
	list-style: none;
	margin: 1em;
	padding: 0;
}

span.superscript {
	font-size: 0.8em;
	position: relative;
	top:-0.46em;
}

dl {
	display: grid;	
	grid-template-columns: 8ch 1fr;
	column-gap: 0.75em;
}

dt {
	text-align: right;
	font-size: 0.85em;
	word-break: break-word;
}

dd {
	margin-left: 0;

}

table {
	width: 90%;
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
}

th, td {
	font-weight: normal;
	padding: 3px 20px 3px 20px;
}

th:nth-child(1), td:nth-child(1) {
	border-right: 1px solid black;
}

th[colspan="2"] {
	border-bottom: 1px solid black;
	border-right: none;
}