@-ms-viewport{width:device-width}
@-o-viewport{width:device-width}
@viewport{width:device-width}


*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}


html {
	font-size: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	}


@media screen and (min-width: 920px) {
	html {
		font-size: 105%;
		}
}


@media screen and (min-width: 1280px) {
	html {
		font-size: 110%;
		}
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
img,
main,
menu,
nav,
section,
summary,
pre,
div {
	display: block;
	}


code,
kbd,
pre,
samp {
	font-family: monospace;
	}


pre {
	overflow: auto;
	}


html, body {
	padding: 0;
	margin: 0;
	width: 100%;
	min-width: 320px;
	height: 100%;
	font-family: sans-serif;
	font-size: 1.1rem;
	}


small {
	font-size: 0.8rem;
	}


figcaption {
	font-size: 0.7rem !important;
	}


h1 {
/*	font-size: 2.4rem; */
	font-size: 2rem;
	font-weight: bolder;
	}


h2 {
/*	font-size: 2rem; */
	font-size: 1.6rem;
	font-weight: bolder;
	}


h3 {
/*	font-size: 1.6rem; */
	font-size: 1.4rem;
	font-weight: bolder;
	}


h4 {
/*	font-size: 1.4rem; */
	font-size: 1.2rem;
	font-weight: bolder;
	}


h5 {
/*	font-size: 1.2rem; */
	font-size: 1rem;
	font-weight: bolder;
	}


h6 {
	font-size: 1rem;
	font-weight: bolder;
	}


a {
	text-decoration: none;
	font-weight: bold;
	}


a:focus,
a:hover {
	text-decoration: underline;
	}


.justify {
	text-align: justify;
	}




/* ************************************************************************************************
 * Clearfix
 * ********************************************************************************************* */
.clearfix {
	overflow: auto;
	*zoom: 1; /* Für den IE6 und IE7 */
	}


.clearfix::before,
.clearfix::after {
	content: " ";
	display: table;
	} 


.clearfix::after {
	clear: both;
	}




/* ************************************************************************************************
 * smooth scrolling
 * ********************************************************************************************* */
html {
	scroll-behavior: smooth;
	}




/* ************************************************************************************************
 * Immer 100% Seitenhöhe und Footer immer unten
 * ********************************************************************************************* */

/*
https://www.gutefrage.net/frage/footer-in-html-nach-ganz-unten-setzen

<body class="Site">
  <header>…</header>
  <main class="Site-content">…</main>
  <footer>…</footer>
</body>

CSS
.Site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.Site-content {
  flex: 1;
}

*/




/* ************************************************************************************************
 * Seite
 * ********************************************************************************************* */
#site {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	}















/* ************************************************************************************************
 * Header
 * ********************************************************************************************* */
#site-header {
	padding: 0.5rem 0;
	margin: 0;
	height: 7rem;
	border-bottom: 1px solid #e6e6e6;
	}


/* ********************************* Navigation ********************************* */

/* The Overlay (background) */
.overlay {
	/* Height & width depends on how you want to reveal the overlay (see JS below) */
	height: 100%;
	width: 0;
	position: fixed; /* Stay in place */
	z-index: 99; /* Sit on top */
	left: 0;
	top: 0;
	background-color: rgb(0,0,0); /* Black fallback color */
	background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
	overflow-x: hidden; /* Disable horizontal scroll */
	transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
	}

/* Position the content inside the overlay */
.overlay-content {
	position: relative;
	z-index: 99;
	top: 25%; /* 25% from the top */
	width: 100%; /* 100% width */
	text-align: center; /* Centered text/links */
	margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
	}

/* The navigation links inside the overlay */
.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: #818181;
	display: block; /* Display block instead of inline */
	transition: 0.5s; /* Transition effects on hover (color) */
	}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
	}

/* Position the close button (top right corner) */
.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
	}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
/*
@media screen and (max-height: 450px) {
	.overlay a {
		font-size: 20px;
		}

	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
		}
}
*/


/* ********************************* Navigation Button ********************************* */
.site-header-nav {
	float: left;
	width: 24.9%;
	height: 6rem;
	display: flex;
	padding-top: 2rem;
	}

.site-header-nav-button {
	display: block;
	width: 100%;
	font-size: 2rem;
	}

.site-header-nav-button .dashicons {
	font-size: 2rem;
	width: 2rem;
	height: 2rem;
	}


/* ********************************* Branding ********************************* */
.site-branding {
	width: 50%;
	max-width: 50%;
	float: left;
	text-align: center;
	height: 6rem;
	margin: auto;
	}

.site-logo {
	height: 6rem;
	margin: auto;
	}

.custom-logo {
	display: block;
	margin: auto;
	padding: auto 0;
	width: auto;
	max-width: 100% !important;
	height: auto;
	max-height: 100%;
	}

.site-contact {
	width: 24.9%;
	float: right;
	text-align: right;
	padding-top: 2rem;
	}

.site-contact a {
	text-decoration: none;
	}

.site-contact .dashicons {
	display: inline-block;
	font-size: 2rem;
	width: 2rem;
	height: 2rem;
	}


@media screen and (max-width: 680px) {
	#site-header,
	.site-header-nav,
	.site-branding,
	.site-logo {
		height: 4rem;
		}

	.site-header-nav {
		padding-top: .8rem;
		}
	.site-header-nav-button {
		font-size: 1.4rem;
		}

	.custom-logo {
		max-height: 3rem;
		}

	.site-contact {
		padding-top: 1rem;
		}

	.site-header-nav-button .dashicons,
	.site-contact .dashicons {
		font-size: 1.4rem;
		width: 1.4rem;
		height: 1.4rem;
		}
}


nav.site-header-navigation {
	text-align: center;
	}




nav.site-header-navigation ul,
nav.site-header-navigation ul li {
	list-style-type: none;
	padding: 0;
	}

.overlay a {
	padding: .8rem;
	font-size: 1.6rem;
	color: #818181;
	}

.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
	}

.overlay .closebtn {
	top: 1.5rem;
	right: 1.5rem;
	font-size: 3rem;
	}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
/*
@media screen and (max-height: 450px) {
	.overlay a {
		font-size: 1.5rem;
		}

	.overlay .closebtn {
		font-size: 2.5rem;
		top: 1rem;
		right: 1rem;
		}
}
*/


/* ********************************* Branding: Text statt Logo ********************************* */
.site-branding .site-title {
	font-size: 2rem;
	padding: 0 0;
	margin: 0 0;
	padding-top: 1.9rem;
	}

.site-branding .site-description {
	display: none;
	}

@media screen and (max-width: 680px) {
	.site-branding .site-title {
		font-size: 1.4rem;
		padding-top: .8rem;
		}
}































/* ************************************************************************************************
 * Content
 * ********************************************************************************************* */
#site-content {
	margin-top: 7rem;
	width: 100%;
	flex: 1;
	}


@media screen and (max-width: 680px) {
	#site-content {
		margin-top: 4rem;
		}
}


article {
	width: 100%;
	}


.entry-image {
	width: 100%;
	}


.entry-image-link {
	display: block;
	width: 100%;
	}


.entry-image img,
.entry-image-link img {
	width: 100% !important;
	max-width: 100% !important;
	height: auto;
/*	flex: 1 0 0%; */
	}


/* ********************************* Post Navi ********************************* */
.post-nav-links .post-page-numbers {
	padding: 0 0.3rem;
	}


.post-nav-links .post-page-numbers.current {
	text-decoration: underline;
	}


.post-navigation {
	padding-bottom: 0.7rem;
	}


.post-navigation .nav-previous {
	float: left;
	}


.post-navigation .nav-next {
	float: right;
	}


/* ********************************* Pagination ********************************* */
.pagination {
	padding: 0.5rem;
	}


.pagination .nav-links {
	text-align: center;
	}


.pagination .nav-links .prev {
	float: left;
	}


.pagination .nav-links .next {
	float: right;
	}








































/* ********************************* Kommentare ********************************* */
.commentlist li.comment {
	list-style-type: none;
	padding-top: 0.5rem;
	padding-bottom: 1rem;
	}


.commentlist .comment-author img {
	border-radius: 50%;
	float: left;
	margin-right: 1rem;
	}


#respond #reply-title {
	text-align: center;
	}


#respond #commentform {
	display: block;
	width: 480px;
	max-width: 100%;
	margin: 0 auto;
	}


#respond p label {
	display: block;
	}


#respond #commentform #comment,
#respond #commentform #author,
#respond #commentform #email,
#respond #commentform #url {
	width: 100%;
	}


#respond #commentform #wp-comment-cookies-consent {
	float: left;
	margin-right: 0.5rem;
	}


#respond #commentform .form-submit {
	display: block;
	text-align: center;
	}

















/* ************************************************************************************************
 * Footer
 * ********************************************************************************************* */
#site-footer {
	padding: 0.6rem 0;
	margin: 0;
	}


.site-footer-navigation {
	text-align: center;
	font-size: 0.9rem;
	}


.site-footer-navigation ul {
	margin: 1rem 0 0 0;
	padding: 0;
	display: inline-block;
	text-align: center;
	}


.site-footer-navigation ul li {
	display: inline-table;
	position: relative;
	}


.site-footer-navigation a {
	display: block;
	padding: 0.3rem;
	margin: 0;
	font-weight: normal;
	}


.site-info {
	text-align: center;
	}
























