html {
	height: 100%;
	scroll-behavior: smooth;
}
* {
	flex-grow: 0;
	flex-shrink: 0;
}

img {
	width: 100%;
	height: auto;
	display: block;
}
ul {
	padding: 0 0 0 1em;
}

body {
	position: relative;
	height: 100%;
	margin: 0;
	overflow-x: hidden;
}
body.navOpen {
	position: relative;
	overflow: hidden;
}
.body-i {
	height: 100%;
}
.body-c {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.site-main {
	width: 100%;
	padding-top: 5em;
}
.site-main-i {
}
.site-main-c {
	display: flex;
	flex-direction: column;
}

section {
	position: relative;
	background-color: var(--isWhite);
}
section:nth-child(even) {
	background-color: #f8f8f8;
}
section > a.anchor {
	position: absolute;
	top: -4em;
}
.section-i {
	position: relative;
}
.section-i {
	margin: 0 auto;
	padding: 3rem 2rem;
	max-width: var(--maxWidth);
}
.modul-boxed .section-i {
	max-width: var(--maxWidthBoxed);
}

.row {
	display: flex;
	width: 100%;
}
.row-i {
	margin: -1rem;
	width: calc(100% + 2rem);
}
.row-c {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.col {
	margin: 1rem;
	width: calc(100% - 2rem);
}
.col-i {
	width: 100%;
	height: 100%;
}
.col-c {
	width: 100%;
	height: 100%;
}

@media only screen and (min-width: 800px) {
	.col-3 {
		width: calc(100%/2 - 2rem - 1px);
	}
	.col-4 {
		width: calc(100%/3 - 2rem - 1px);
	}
	.col-6 {
		width: calc(100%/2 - 2rem - 1px);
	}
}
@media only screen and (min-width: 1200px) {
	.col-3 {
		width: calc(100%/4 - 2rem - 1px);
	}
}

.entry-header {
}
.entry-header-c {
	width: 100%;
	aspect-ratio: 3/1;
}
.entry-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Modul Akkordeon ---------- */
.modul-akkordeon .akkordeon-group {
	border-top: 1px solid var(--isGrey);
}
.modul-akkordeon .akkordeon {
	border-bottom: 1px solid var(--isGrey);
}
.modul-akkordeon .akkordeon-headline h3 {
	margin: 1.5rem 0;
	position: relative;
	padding-right: 1em;
	cursor: pointer;
	font-size: 1.25em;
}
.modul-akkordeon .akkordeon-headline h3::after {
	transition: all 0.2s ease-in-out;
	position: absolute;
	right: 0;
	content: '+';
}
.modul-akkordeon .akkordeon-content {
	transition: all 0.2s ease-in-out;
	max-height: 0;
	overflow: hidden;
}
.modul-akkordeon .akkordeon-content-c {
	margin-bottom: 1.5em;
}
.modul-akkordeon .akkordeon.isOpen .akkordeon-content {
	max-height: 99999px;
}
.modul-akkordeon .akkordeon.isOpen .akkordeon-headline h3::after {
	transform: rotate(45deg);
}

/* ---------- Modul Behandlungen ---------- */
.bkats {
	display: flex;
	width: 100%;
}
.bkats-i {
	margin: -.5rem;
	width: calc(100% + 1rem);
}
.bkats-c {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.bkat {
	margin: .5rem;
	width: calc(100% - 1rem);
}
.bkat-i {
	width: 100%;
	height: 100%;
}
.bkat-c {
	width: 100%;
	height: 100%;
	position: relative;
}
.bkat-c img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
	position: relative;
}
.bkat-c h3 {
	/*position: absolute;
	background-color: rgba(255,255,255,.75);
	padding: .5rem;
	left: 1rem;
	bottom: 1rem;
	max-width: calc(100% - 2rem);*/
	margin: 0;
}
.bkat-c a {
	display: block;
}

@media only screen and (min-width: 800px) {
	.bkat {
		width: calc(100%/2 - 1rem);
	}
}
@media only screen and (min-width: 1200px) {
	.bkat {
		width: calc(100%/3 - 1rem);
	}
}

/* ---------- Modul Bild ---------- */
.modul-bild img {
	width: 100%;
	height: auto;
	display: block;
}

/* ---------- Modul Bild / Text ---------- */
@media only screen and (min-width: 800px) {
	.modul-bild-text.modul-bild-text-1 .row-c {
		flex-direction: row-reverse;
	}
}
