.article span, .article p {
	font-size: 100%;
}

.article {
	max-width: 650px;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 40px;

	font-family: "Georgia", "Times", "Times New Roman", serif;
	font-size: 16px;
}

/* Own styles */

/* Should not do anything anyways. Messes with padding of ol, use initial instead of unset?
* {
	margin: unset;
	padding: unset;
	border: unset;
}
*/

.article p {
	line-height: 24px;

	white-space: pre-wrap;
	word-wrap: break-word;

	margin-bottom: 0;
}

.article-header {
	margin-top: 48px;
}

.article-header a, .article-header a:hover {
	font-variant: petite-caps;
	font-family: sans-serif;
	color: #4d4d4d;
	font-size: 85%;
}

.article .TITELZEILE, .article h1 {
	font-size: 165%;
	font-weight: normal;

	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 0;
	line-height: 150%;
}

.article .UNTERTITEL, .article h2 {
	font-size: 110%;
	color: #666;

	margin-top: 0;
	margin-bottom: 8px;
	line-height: 150%;
}
.article .AUTOR {
	font-style: italic;
	margin-bottom: 24px;
}
.article .Zwischentitel, .article .ANHANGTITEL, .article h3 {
	margin-top: 16px;
	margin-bottom: 16px;
	font-size: 120%;
}
.article .standard-paragraph {
	margin-bottom: 24px;
}


/* eingerückter Text */
/*.article .para-style-override-1, .article .para-style-override-2 {
	margin-left: 100px;
	margin-right: 100px;
}
.article .para-style-override-1 {
	font-style: italic;
}
.article .para-style-override-1:last-of-type {
	margin-bottom: 5em;
}*/

.article .ANHANG {
	font-size: 80%;
}

.article .Zitat, .article blockquote {
	padding: 0;
	border: none;
	margin: 16px 32px;
	font-size: 90%;
	line-height: 140%;
}

.article .footnote-link, .article .footnote-anchor {
	font-family: sans-serif;
	color: inherit;
	text-decoration: none;
}
.article .footnote-link, .article .Fu-notenzeichen {
	vertical-align: super;
	font-size: 60%;
	line-height: 60%;
}
.article .Fu-notenzeichen .footnote-link {
	vertical-align: baseline;
	font-size: 100%;
	line-height: 100%;
}
.article .footnotes {
	position: relative;
	margin-top: 32px;
	margin-bottom: 48px;
	font-size: 90%;
}
/* border */
.article .footnotes:before {
	content: "";
	background: black;
	position: absolute;
	top: -16px;
	left: 0;
	height: 2px;
	width: 150px;
}
.article .footnote, .article .footnotes .ANHANG {
	position: relative;
	margin: 2px;
	margin-left: 6mm;
}
.article .footnote-anchor {
	position: absolute;
	left: -6mm;
}

.article audio {
	display: block;
	margin-bottom: 24px;
}

/* IMAGES? */
/*.article .frame-3, .article .Einfacher-Textrahmen, .article .Seite, .article .Kein-Absatzformat {
	display: none;
}
*/

embed:not([width]) {
	width: 100%;
}
.embed-wrapper {
	height: 0px;
	margin: 0;
	padding: 0;
	position: relative;
}
.embed-wrapper.ratio-a4 {
	padding-bottom: 141%; /* sqrt(2) */
}
.embed-wrapper.ratio-a4-landscape {
	padding-bottom: 70%; /* 1 / sqrt(2) */
}
.embed-wrapper embed {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
}

@media (max-width: 560px) {
	.article {
		padding-left: 0;
		padding-right: 0;
	}
}


/* custom classes */
figure {
	display: table;
}
figure img {
	max-width: 100%;
}
figcaption {
	display: table-caption;
	caption-side: bottom;
}
figure, figcaption {
	padding: 5px 10px;
}

.figure-left {
	float: left;
}
figure.figure-left, .figure-left figcaption {
	padding-left: 0;
}

.figure-right {
	float: right;
}
figure.figure-right, .figure-left figcaption {
	padding-right: 0;
}

.figure-center {
	width: 100%;
}
.figure-center img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.figure-center figcaption {
	display: block;
	text-align: center;
}
figure.figure-center, .figure-center figcaption {
	padding-left: 0;
	padding-right: 0;
}

.figure-inline {
	display: inline-block;
	white-space: initial;
}
figure.figure-inline, .figure-inline figcaption {
	padding: 0;
}
.figure-full img {
	width: 100%;
}

.margin-above {
	margin-above: 2em;
}
.margin-below {
	margin-bottom: 2em;
}
