/* =========================================================
   Globale Variablen
   ========================================================= */

:root {
	--bg-color: #ffffff;
	--font-color: #222222;

	--h1-color: #222222;
	--h2-color: #333333;
	--h3-color: #444444;

	--link-color: #333333;

	--logo-color-1-light: #dddddd;
	--logo-color-1: #888888;
	--logo-color-1-dark: #333333;
	--logo-color-2: #666666;

	--neutral-color-light: #f5f5f5;
	--neutral-color-dark: #333333;

	--border-color: #cccccc;
	--border-radius: 40px;
	--border-radius-small: 4px;

	--content-width: 1500px;

	--font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   Basis
   ========================================================= */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: clamp(16px, 1.5vw + 12px, 24px);
}

body {
	font-family: var(--font-family);
	line-height: 1.8;
	color: var(--font-color);
	background-color: var(--bg-color);
}

main {
	width: var(--content-width);
	max-width: 100%;
	margin-inline: auto;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
}


/* =========================================================
   Text
   ========================================================= */

p {
	margin: 0 0 0.7rem;
	hyphens: auto;
}

.small {
	font-size: 85%;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.uppercase {
	text-transform: uppercase;
}


/* =========================================================
   Überschriften
   ========================================================= */

h1 {
	font-family: 'Oranienbaum', serif;

	font-size: 2.5rem;
	line-height: 1.1;
	font-weight: 400;

	padding: 0;

	color: var(--h1-color);

	hyphens: none;
}

h2 {
	margin: 0;
	padding: 0;

	font-family: 'Oranienbaum', serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.15;

	color: var(--h2-color);

	hyphens: none;
}

h1 + h2,
p + h2 {
	padding-top: 0.5em;
}

h3 {
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--h3-color);
}

h4 {
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: italic;
}


/* =========================================================
   Links
   ========================================================= */

a {
	color: var(--link-color);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


/* =========================================================
   Listen
   ========================================================= */

ul:not([type]) {
	margin: 0;
	padding: 0 0 1em;
	list-style: none;
}

ul:not([type]) > li {
	position: relative;
	margin: 0;
	padding: 0.3em 0 0.3em 1em;
}

ul:not([type]) > li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 53%;
	width: 0.45em;
	height: 0.45em;
	border-radius: 50%;
	background-color: var(--link-color);
	transform: translateY(-50%);
}

ol {
	margin: 0;
	padding: 0 0 1em 23px;
}

ol li {
	padding: 2px 0;
}


/* =========================================================
   Linien
   ========================================================= */

hr {
	margin: 0 0 0.7rem;
	border: none;
	border-bottom: 1px solid var(--border-color);
	background: transparent;
}


/* =========================================================
   Hoch- / Tiefstellung
   ========================================================= */

sup,
sub {
	position: relative;
	height: 0;
	font-size: 75%;
	line-height: 1;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: 0.5ex;
}


/* =========================================================
   Tabellen
   ========================================================= */

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 5px 10px;
	text-align: left;
}

th {
	font-weight: 600;
}


/* =========================================================
   Allgemeine Hilfsklassen
   ========================================================= */

.alignLeft {
	text-align: left;
}

.alignCenter {
	text-align: center;
}

.alignRight {
	text-align: right;
}

.displayBlock {
	display: block;
}

.displayInline {
	display: inline;
}

.displayInlineBlock {
	display: inline-block;
}

.displayNone {
	display: none;
}

.w100p {
	width: 100%;
}
/* =========================================================
   TEXTAUSRICHTUNG AUS DEM RTE
   ========================================================= */

body .text-left,
body .text-start {
	text-align: left;
}

body .text-center {
	text-align: center;
}

body .text-right,
body .text-end {
	text-align: right;
}