pre p {
	max-width: 1000px;
	white-space: pre-wrap;
	font-size: 12px;
	line-height: 100%;
	text-indent: 0px;
}

#doc-header {
	background-color: var(--col-header-bg);
	color: var(--col-text-inverted);
	padding: 20px 0px;
	box-sizing: border-box;
}

#doc-header-width-limiter {
	width: 700px;
	margin: auto;
	display: flex;
	/*grid-template-columns: auto auto;*/
}

#doc-header h1 {
	font-family: 'Dosis', Verdana, sans-serif;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 28px;
	letter-spacing: 0.025em;
	line-height: 34px;
	margin-top: 10px;
	text-wrap: balance;
}

#doc-header h2 {
	font-family: 'Dosis', Verdana, sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0.05em;
	text-wrap: balance;
}

#doc-header h3 {
	font-weight: normal;
	margin-top: 3px;
	text-wrap: balance;
}

#doc-header-authors {
	display: flex;
	margin-top: 20px;
}

#doc-header-authors-mobile {
	margin-top: 5px;
	display: none;
	gap: 15px;
}

.doc-header-author-mobile-link {
	color: var(--col-text-inverted);
	text-decoration: none;
	transition: 0.2s ease-out;
}
.doc-header-author-mobile-link:hover {
	text-decoration: underline;
}
.doc-header-author-mobile-link .ico {
	padding-right: 2px;
}

#author-on-the-left {
	margin-top: 60px;
	margin-right: 40px;
	max-width: 150px;
}

.author-portrait {
	margin: 0px 10px;
	max-width: 150px;
	text-decoration: none;
	color: var(--col-text-inverted);
}
.author-portrait:first-of-type {
	margin-left: 0px;
}
.author-portrait img {
	display: block;
	margin: 0 auto;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: var(--col-header-bg);
	border: 4px solid var(--col-header-bg);
	transition: 0.3s ease-out;
}
.author-portrait:hover img {
	background-color: var(--col-highlight);
	border: 4px solid var(--col-highlight);
	transform: scale(1.075);
}

.author-portrait-name {
	margin-top: 10px;
	text-indent: 0px;
	font-size: 15px;
	width: inherit;
	text-align: center;
	line-height: 130%;
}

#doc-header-summary {
	margin-top: 25px;
	text-indent: 0px;
	font-size: 16px;
	line-height: 150%;
}

#doc-header-additional-info {
	margin-top: 15px;
	text-indent: 0px;
	font-size: 16px;
	line-height: 150%;
}

#doc-header-additional-info a {
	text-decoration: underline;
	color: var(--col-text);
}

#metadata {
	/*display: flex;*/
	margin-top: 20px;
}
.metadata-label {
	float: left;
	margin-right: 10px;
	margin-bottom: 8px;
	background-color: var(--col-bg-box);
	color: var(--col-text);
	padding: 3px 10px;
	border-radius: 15px;
	font-size: 14px;
	text-decoration: none;
	transition: 0.3s ease-out;
	font-family: 'Roboto Mono', monospace;
	font-size: 11px;
}
.metadata-label .ico {
	margin-right: 8px;
}

.metadata-label-link {
	cursor: var(--cursor-pointer);
	box-shadow: 0 0 20px transparent;
	transform: scale(1.0);
}
.metadata-label-link:hover {
	background-color: var(--col-bg-box-bg);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	transform: scale(1.05);
}

.disabled {
	user-select: none;
	pointer-events: none;
}

.doc-header-section-title {
	margin-top: 20px;
	font-family: 'Roboto Mono', monospace;
	font-size: 12px;
	clear: both;
}



#referenced-authors, #topics {
	margin-top: 8px;
}

#external-content-message {
	font-family: 'Roboto Mono', monospace;
	font-size: 12px;
	overflow-wrap: anywhere;
	display: grid;
	grid-template-columns: 10px auto;
	gap: 10px;
	text-wrap: balance;
}

#external-content-message a {
	color: var(--col-text-inverted);
	text-decoration: none;
	transition: 0.2s ease-out;
}

#external-content-message a:hover {
	text-decoration: underline;
}



@media (max-width:650px) {
	#doc-header-width-limiter {
		width: auto;
		padding: 0 2%;
	}

	#author-on-the-left {
		display: none;
	}

	#doc-header-authors {
		display: none;
	}

	#doc-header-authors-mobile {
		display: flex;
	}
}