:root {
	--main-site-width: 1126px;
	--site-border-width: 15px;
	--main-column-gap: 20px;
	--half-column-gap: 10px;
	--main-row-gap: 40px;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	height: 100%;
	font-size: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 56px;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

*:focus {
	outline-style: none;
}

::-moz-focus-inner {
	border: 0;
}

::selection {
	background: #3e3e92;
	color: #fff;
}

::-moz-selection {
	background: #3e3e92;
	color: #fff;
}

body {
	position: relative;
	background: #fff;
	color: #434343;
	font-family: "Open Sans", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: 0.02em;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: #e6880f;
	font-weight: 600;
}

a:hover,
a:focus {
	color: #e6880f;
	text-decoration: none;
}

p a {
	color: #e6880f;
	text-decoration: none;
	font-weight: 600;
}

p a:hover,
p a:focus {
	border-bottom: 3px solid #e6880f;
	margin-bottom: -3px;
}

a:active {
	color: #000;
	text-decoration: none;
}

figure a:focus-visible img {
	outline: 5px solid #336;
	outline-offset: -5px;
}

h1,
h1 a,
h2,
h2 a {
	font-weight: 600;
}

h3,
h3 a,
.ui-accordion-header {
	font-weight: 500;
}

h1 {
	font-size: 1.875rem;
	margin-top: 1.4em;
	margin-bottom: 0.6em;
	line-height: 1.5em;
}

h2 {
	font-size: 1.75rem;
	margin-top: 1.3em;
	margin-bottom: 0.6em;
	line-height: 1.3em;
}

h3,
.ui-accordion-header {
	font-size: 1.25rem;
	margin-top: 1.3em;
	margin-bottom: 0.6em;
	line-height: 1.3em;
}

p {
	margin-bottom: 0.7em;
}

p:last-child {
	margin-bottom: 0.2em;
}

b {
	font-weight: 600;
}

div[class^="ce_"] strong {
	font-weight: 600;
}

#header .inside,
#nav-section .inside,
.content-clamp,
.footer_part1 .content-clamp {
	max-width: var(--main-site-width);
	margin: 0 auto;
	padding-left: var(--site-border-width);
	padding-right: var(--site-border-width);
}

/* Header
==============================*/

#header {
	background-image: url(../bilder/header.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	min-height: 400px;
}

/* Logo
----------------------------- */

#logo {
	display: inline-block;
	margin: 3rem 0 3rem;
	text-shadow: 2px 2px 3px #336;
}

#logo a {
	display: flex;
	flex-flow: column nowrap;
	gap: 0.7rem;
	color: #fff;
	text-decoration: none;
}

#logo .part1 {
	font-size: 2.3rem;
	line-height: 1em;
}

#logo .part2 {
	font-size: 1.3rem;
	margin-left: 0.2rem;
}

/* Main Navigation
----------------------------- */

#nav-section {
	background-color: #336;
}

#main_nav a,
#main_nav strong {
	display: inline-block;
	color: #fff;
	font-weight: 500;
	font-size: 1.125rem;
	text-decoration: none;
}

#main_nav a:hover,
#main_nav a:focus-visible {
	border-bottom: 2px solid #f90;
	margin-bottom: -2px;
}

#main_nav li.active strong {
	opacity: 0.7;
}

#main_nav > ul {
	display: flex;
	flex-flow: row nowrap;
	gap: 1.5em;
	list-style: none;
	align-items: stretch;
	margin-top: 0.6rem;
	margin-bottom: 0.8rem;
}

#main_nav li.home_button {
	margin-right: auto;
}

.home_button a::before,
.nav_button a::after {
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-size: 1.125rem;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.home_button a::before {
	font-weight: 900;
	content: "\f015";
	margin-right: 0.4em;
}

.nav_button a::after {
	font-weight: 900;
	content: "\f0c9";
	margin-left: 0.4em;
}

/* Content
==============================*/

.mod_article {
	border-bottom: 5px solid #f6f5f5;
}

.mod_article:last-child {
	border-bottom: none;
}

.article__inside {
	margin-top: 60px;
	margin-bottom: 60px;
}

.article__inside > h1.ce_headline,
.article__inside > h2.ce_headline,
.article__inside > h3.ce_headline {
	margin-top: 0.4em;
	margin-bottom: 0;
}

.article__inside > .ce_text *:first-child {
	margin-top: 0;
}

/* Spalten
----------------------------- */

.article__inside,
.footer_part1 > .content-clamp,
.dk_gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	column-gap: var(--main-column-gap);
	row-gap: var(--main-row-gap);
}

.article__inside > * {
	grid-column: span 12;
}

.dk_col_2 {
	grid-column: span 6;
}

.dk_col_3 {
	grid-column: span 4;
}

.dk_col_4 {
	grid-column: span 3;
}

.dk_col_6 {
	grid-column: span 2;
}

/* Bilder
----------------------------- */

.image_container img {
	margin: 0 auto;
}

/* Button
----------------------------- */

.dk_button {
	margin-bottom: 0.8em;
	margin-right: 0.8em;
	display: inline-block;
}

.dk_button:last-of-type {
	margin-right: 0;
}

.dk_button a,
.back a,
.mod_newsarchive .pagination ul li a,
button,
.more a,
.pagination ul li a,
.pagination ul li strong {
	color: #e6880f;
	background-color: #fff;
	padding: 0.3em 1em;
	border: 3px solid #336;
	display: inline-block;
	transition: color 0.3s ease;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	font-weight: 600;
	font-size: 0.95em;
}

.dk_button a:hover,
.dk_button a:focus,
.back a:hover,
.back a:focus,
.pagination ul li a:hover,
.pagination ul li a:focus,
button:hover,
button:focus,
.more a:hover,
.more a:focus,
.pagination ul li a:hover,
.pagination ul li a:focus,
.news_teaser .layout_latest:focus-within .more a {
	background-color: #336;
	color: #ffffff !important;
	border-color: #336;
	text-decoration: none !important;
	cursor: pointer;
	margin-bottom: 0;
}

.back {
	margin-top: 20px;
}

/* Galeri
----------------------------- */

.ce_gallery {
	overflow: visible;
}

.dk_gallery {
	list-style: none;
	overflow: visible;
	row-gap: var(--main-column-gap);
}

.dk_gallery li {
	overflow: hidden;
}

.dk_gallery a img {
	transition: transform 0.3s ease-out;
}

.dk_gallery a:hover img {
	transform: scale(1.05);
	cursor: zoom-in;
}

/* Listen
----------------------------- */

.ce_text ul,
.ce_list ul,
.ce_text ol,
.ce_list ol {
	margin-bottom: 1.35em;
	margin-left: 2px;
}

.ce_text ul:last-child,
.ce_text ol:last-child {
	margin-bottom: 0;
}

.ce_text ol,
.ce_list ol {
	list-style: decimal;
}

.ce_text ol ::marker,
.ce_list ol ::marker {
	font-weight: 500;
	color: #336;
	font-size: 0.8em;
}

.ce_text ul,
.ce_list ul {
	list-style: disc;
}

.ce_text ul ::marker,
.ce_list ul ::marker {
	font-size: 1.2em;
	color: #336;
}

.ce_text ul li,
.ce_list ul li,
.ce_text ol li,
.ce_list ol li {
	margin-bottom: 0.7em;
	margin-left: 1.2em;
}

.list_col_2 {
	column-count: 2;
	column-gap: var(--main-column-gap);
}

.list_col_2 li {
	page-break-inside: avoid;
	break-inside: avoid-column;
}

/* Footer
==============================*/

.footer_part1 {
	background-color: #f3f1f1;
}

.footer_part1 .content-clamp {
	padding-top: 10px;
	padding-bottom: 30px;
}

.footer_part2 {
	background-color: #336;
	color: #fff;
}

.footer_part2 a {
	color: #fff;
	text-decoration: none;
}

.footer_part2 a:hover,
.footer_part2 a:focus {
	border-bottom: 3px solid #fff;
	margin-bottom: -3px;
}

.footer_part2 .content-clamp {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: var(--main-column-gap);
	padding-top: 15px;
	padding-bottom: 17px;
}

.footer_nav {
	overflow: visible;
}

.footer_nav ul {
	display: flex;
	flex-flow: row nowrap;
	gap: 2em;
	margin-bottom: 0;
}
