@charset "UTF-8";/*
**********************************************
***      created by Boris Schmakowski      ***
***          www.schmakowski.de            ***
**********************************************
*/

/* ==========================================================================
   Modern Base / Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { background: #fff; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html,body {margin: 0;padding: 0;}
body {min-height: 100vh;}
body,h1, h2, h3, h4, h5, h6,p,figure,blockquote,dl,dd {margin: 0;}
ul,ol {margin: 0;padding: 0;}
img,picture,svg,video,canvas,object,iframe {display: block;max-width: 100%;}
img,picture {height: auto;}
input,button,textarea,select {font: inherit;}
textarea {resize: vertical;}
button,input,select,textarea {margin: 0;}
table {border-collapse: collapse;border-spacing: 0;}
fieldset {border: 0;}
[hidden] {display: none !important;}
:focus-visible {outline: 2px solid currentColor;outline-offset: 2px;}
iframe {
	outline: none;
	outline-offset: 0;
	border: none;
}

/*----------- some basics -----------*/
small { font-size: .875em; }
del { text-decoration: line-through; }
sub, sup { font-size: .75em; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
mark { background: #ff6; padding: 1px 3px; }
dt { font-weight: 700; }
hr { border: 0; border-top: 1px solid #880000; margin: 2.5em 0;}

.clr 	{ clear:both; }
.clearfix::after,
div[itemprop="articleBody"]::after {
	content: "";
	display: table;
	clear: both;
}

/*---- lets go ----*/

#wrapper-a,
#wrapper-b,
#wrapper-c,
#wrapper-cc,
#wrapper-d,
#foot_container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1em;
}
section#content {
	padding: 5vh 0 8vh 0;
	text-align: left;
}

/*--- Header ---*/

header {
	padding-top: 5vh;
	padding-bottom: 5vh;
}
#headtop123 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#headtop1 {
	width: 75%;
	max-width: 600px;
}
#headtop1 img {
	width: 100%;
	height: auto;
}

#headtop3 ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .4em;
	list-style: none;
	margin: 0;
	padding: 0 0 0 0.5em;
	font-size: 2em;
}
#headtop3 ul li {
	display: inline-flex;
	align-items: center;
}
#headtop3 a 			{ color: #959799; text-decoration: none; }
#headtop3 a:visited 	{ color: #959799; text-decoration: none; }
#headtop3 a:hover 		{ color: #bb1823; text-decoration: none; }
#headtop3 a:active 		{ color: #bb1823; text-decoration: none; }


/*--- Content Aufteilung ---*/
div#container {
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
}
div#container > div {
	flex-grow: 0;
	flex-basis: auto;
	align-self: stretch;
}
div#leftcolumn {
	width: 25%;
	font-size: 0.85em;
	order: 1;
}
div#rightcolumn {
	width: 25%;
	font-size: 0.85em;
	order: 3;
}
div#content_out {
	width: 100%;
	order: 1;
}
div#content_outleft {
	width: 72.5%;
	order: 2;
}
div#content_outmiddle {
	width: 45%;
	order: 2;
}
div#content_outright {
	width: 72.5%;
	order: 1;
}
@media all and (max-width: 800px) {
	div#content_outleft, div#content_outmiddle, div#content_outright {
		width: 100%;
		order: 1 !important;
	}
	div#leftcolumn {
		width: 100%;
		order: 2 !important;
	}
	
	div#rightcolumn {
		width: 100%;
		order: 3 !important;
	}
}

/*--- SPALTEN FÜR ARTIKEL Joomla 6: .masonry-2 / .masonry-3 ---*/
.masonry-2,
.masonry-3 {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 2em;
	margin: 0;
	padding: 0;
}
.masonry-2 > div {
	flex: 0 0 calc((100% - 2em) / 2);
}
.masonry-3 > div {
	flex: 0 0 calc((100% - 4em) / 3);
}
/* Tablet */
@media (max-width: 1000px) {
	.masonry-2 > div {
		flex-basis: 100%;
	}
	.masonry-3 > div {
		flex-basis: calc((100% - 2em) / 2);
	}
}
/* Smartphone */
@media (max-width: 600px) {
	.masonry-3 > div {
		flex-basis: 100%;
	}
}

/*--- Abstände ---*/

.category-desc, .blog-item {
	margin: 0 0 5vh 0;
}

/*--- Startseite - Testbeitrag ---*/

.mp-start h1,
.mp-start h2,
.mp-start h3 {
	text-align: center;
	color: #bb1823;
	font-weight: 300;
}
div.start-boxen {
	--startgap: 1em;
	--startcols: 4;
	gap: var(--startgap);
	display: flex;
	flex-wrap: wrap;
	margin: 2em 0;
}
div.start-box {
	flex: 0 0 calc((100% - (var(--startcols) - 1) * var(--startgap)) / var(--startcols));
	position: relative;
}
div.start-img {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background-color: #f5f7f9;
}
div.start-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: all .55s ease;
}
div.start-box:hover div.start-img img {
	transform: scale(1.1);
}
div.start-txt {
	text-align: center;
	background-color: #f5f7f9;
	color: #000000;
	padding: 0.5em 0.4em;
	font-size: 0.9em;
	line-height: 1.35;
	/* Platz für zwei Zeilen – identisch mit start-modul */
	min-height: calc(2 * 1.35em + 1em);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .35s ease;
}
div.start-box:hover div.start-txt {
	color: #99141d;
}
div.start-link a {
	position: absolute;
	color: transparent;
	font-size: 0;
	line-height: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

div.start-modul {}
div.start-modul ul {
	list-style: none;
	margin: 2em 0;
	padding: 0;
	--startgap: 1em;
	--startcols: 4;
	gap: var(--startgap);
	display: flex;
	flex-wrap: wrap;
}
div.start-modul ul li {
	flex: 0 0 calc((100% - (var(--startcols) - 1) * var(--startgap)) / var(--startcols));
	position: relative;
}
div.start-modul div.mod-articles-title {
	text-align: center;
	background-color: #f5f7f9;
	color: #000000;
	padding: 0.5em 0.4em;
	font-size: 0.9em;
	line-height: 1.35;
	/* Platz für zwei Zeilen */
	min-height: calc(2 * 1.55em + 1em);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .35s ease;
}
div.start-modul ul li:hover div.mod-articles-title {
	color: #99141d;
}
div.start-modul figure.mod-articles-image {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}
div.start-modul figure.mod-articles-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: all .55s ease;
}
div.start-modul ul li:hover figure.mod-articles-image img {
	transform: scale(1.1);
}
div.start-modul ul li p.readmore {
	padding: 0;
	margin: 0;
}
div.start-modul ul li p.readmore a {
	position: absolute;
	color: transparent;
	font-size: 0;
	line-height: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/*----pagenavigation mit overwright ----*/

nav.pagenavigation {
	margin: 2em 0 0 0;
}
nav.pagenavigation span.pagination {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
nav.pagenavigation span.pagination a {
	font-size: 60px;
}
nav.pagenavigation span.pagination a 			{ color: #7f7c81; text-decoration: none; border:none;}
nav.pagenavigation span.pagination a:visited 	{ color: #7f7c81; text-decoration: none; border:none;}
nav.pagenavigation span.pagination a:hover 		{ color: #99141d; text-decoration: none; border:none;}
nav.pagenavigation span.pagination a:active 	{ color: #99141d; text-decoration: none; border:none;}


/*---- pagination Seitennavigation im Bloglisting ----*/
/*---- mit overwright layouts joomla pagination ----*/

div.com-content-category-blog__navigation {}	
ul.pagination,
ul.pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 1.2em;
}
ul.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
ul.pagination > li {
	order: 1;
	flex-grow: 0;
	flex-basis: auto;
	align-self: center;
}
ul.pagination li .page-link {
	display: inline-block;
	min-width: 1em;
	margin: 0 1vw;
	text-align: center;
}
ul.pagination a {
	text-decoration: none;
	border: none;
}
ul.pagination li.disabled {
	color: #d1d2d3;
}
ul.pagination li.active a {
	color: #f29307;
}
p.readmore:before {
	content: '';
	clear: both;
	display: block;
	visibility: hidden;
	height: 0px;
	font-size: 0;
}

/*---- breadcrumb ----*/

ol.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .4em;
	list-style: none;
	margin: 0;
	padding: .5em 0;
	font-size: .8em;
}
/* ol.breadcrumb li:first-child {
	display: none;
} */
ol.breadcrumb li {
	display: inline-flex;
	align-items: center;
}
ol.breadcrumb li + li::before {
	content: "›";
	margin-right: .4em;
	color: #bb7205; /* TODO: DESIGN */
}

/*---- Language ----*/

div.mod-languages {
	
}
div.mod-languages ul {
	list-style: none outside none;
	margin: 0;
	padding: 0;
}
div.mod-languages ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
div.mod-languages ul li img {
	width: 30px;
	height: auto;
	border-radius: 200px;
}

/*---- system ----*/

div#system-message {
	font-weight:bold;
}
div#system-message .alert {
	color: red;
	background-color: #fff;
	border: 1px solid;
	padding: 5px 30px;
	margin: 0 0 10px 0;
}

/*---- Footer ----*/

footer {
	padding-top: 5vh;
	padding-bottom: 5vh;
	background-color: #a5a7a9;
}
#foot123 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
#foot1 {
	width: 75%;
	max-width: 600px;
}
#foot1 img {
	width: 100%;
	height: auto;
}
#foot3 {
	text-align: right;
}
#foot3 p {
	padding: 0 0 0.25em 0;
}
#foot3 p:last-child {
	padding: 0;
}
footer a 			{ color: #ffffff; text-decoration: none; }
footer a:visited 	{ color: #ffffff; text-decoration: none; }
footer a:hover 		{ color: #ffffff; text-decoration: underline; }
footer a:active 	{ color: #ffffff; text-decoration: underline; }

/*---- j-tooltipp wech ----*/
body div.easy-tooltip-wrapper { display: none !important; }
body div.tooltip.fade.top { display: none !important; }

