/* filename: _3_schab.css		*/
/* version for caching: 1.2.0	*/

/*-----------------------------------------------------------------------------------*/
/*	"Modern CSS Remedy" basierend auf Josh Comeau und Andy Bell (2025)
/*-----------------------------------------------------------------------------------*/
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  font-weight: 400;
}
h1 a, h2 a, h3 a {
  text-decoration: none;
}

/* 10. Create a root stacking context */
#root, #__next {
  isolation: isolate;
}

/* 11. Root-Element für Scroll-Verhalten (optional) */
html {
  scroll-behavior: smooth;
}

/* 12. Aktiviere Darkmode Unterstützung (optional) */
:root {
    /* System-Farben definieren */
    color-scheme: light dark;
}


/*-----------------------------------------------------------------------------------*/
/*	Text Flow definieren
/*-----------------------------------------------------------------------------------*/

/* Alles, was aufeinander folgt, bekommt einen Abstand oben */
/* Die "Lobotomized Owl" Selektor-Variante oder einfach: */
article > * + * {
  margin-top: 1.25em; /* Der Abstand atmet mit der Schriftgröße! */
}

h1, h2, h3 {
  margin-top: 2.5em;    /* Mehr Platz vor Überschriften für Struktur */
  margin-bottom: 1rem;  /* Kleinerer, fester Abstand zum folgenden Text */
  line-height: 1.1;
}

p, ul, ol {
  margin-bottom: 1.5em; /* Klassischer Zeilendurchschuss-Ersatz */
}

li + li {
  margin-top: 0.5em;    /* Abstände innerhalb der Liste */
}

/*-----------------------------------------------------------------------------------*/
/*	Altes Top Menü
/*-----------------------------------------------------------------------------------*/
#branding {
    display: flex;
    flex-direction: column;
    padding-bottom: 64px;
/*    background-color: light-dark(#ffffff, #1a1a1a); */
}

.menu-hauptmenue-container ul {
    display: flex;
    align-items: center;
    gap: 2rem;      /* Kontrollierter Abstand, ohne dass das letzte Element einen margin-right hat */
    list-style: none;
    color: light-dark(#333, #eee);
}

#searchform {
    margin-left: auto;    /* Die Suche wandert nach rechts */
}

/* Dein Hamburger-SVG (falls du eins nutzt) 
.hamburger path {
    fill: currentColor;   /* Wechselt automatisch zwischen schwarz und weiß! * /
}
*/


/*-----------------------------------------------------------------------------------*/
/*	Neues Top Menü
/*-----------------------------------------------------------------------------------*/
:root {
  --button-bg: #335c7f;
  --text-color: #eeeeee;
  --input-text-color: #333333;
  --placeholder-text-color: #777777;
  --input-bg: #f5f5f5;
  --btn-height: 32px; /* Einheitliche Höhe */
  --btn-font-size: 1rem;   /* Einheitliche Schriftgröße */
}

.top-menu {
  font-size: var(--btn-font-size);
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Gemeinsame Basis für alle Buttons/Links */
.menu-item a, .search-button {
  height: var(--btn-height);
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* WordPress Container & Liste */
.menu-hauptmenue-container {
  display: flex;
}

ul.menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  
    align-items: center;

}

/* Spezifischer Fix für Listen außerhalb von Fließtext */
ul.bub-buttons li,
ul.menu li {
  margin-top: 0;
}

/* Die li-Elemente selbst brauchen kein Styling, wir stylen das <a> */
.menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 16px;
  text-decoration: none;
  color: var(--text-color);
  background-color: var(--button-bg);
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  
  line-height:1;
}

/* Hover & Focus Zustände für Nav-Links */
.menu-item a:hover {
  color: var(--text-color); /* Textfarbe bleibt gleich */
  background-color: #3d6e97; 
  background-color: #4d8e9c7; 
}

/* WordPress Active-Klassen (current-menu-item oder current_page_parent) 
.menu-item.current-menu-item a,
.menu-item.current_page_parent a,
.menu-item.current-menu-ancestor a {
  background-color: var(--active-bg);
  color: #333333;
}
*/
/* Suchbereich */
.search-container {
  display: flex;
  align-items: center;
  position: relative;
  height: var(--btn-height);
}

.search-button {
  position: relative;
  z-index: 3;
  padding: 0 16px;
  background-color: var(--button-bg);
  color: var(--text-color);
  border: none;
  cursor: pointer;
  gap: 8px;
}

.search-input {
  position: absolute;
  right: 0;
  width: 0;
  height: var(--btn-height);
  border: none;
  border-radius: 6px;
  background-color: var(--input-bg);
  color: var(--input-text-color);
  padding: 0;
  opacity: 0;
  outline: none;
  z-index: 2;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}

.search-input::placeholder {
  color: var(--placeholder-text-color); /* Kontrastreicherer Placeholder */
}

/* Animation */
.search-container:hover .search-input,
.search-container:focus-within .search-input {
  width: 300px;
  opacity: 1;
  padding: 0 15px 0 42px; /* Platz für Lupe links */
}

.search-container:hover .search-button,
.search-container:focus-within .search-button {
  background-color: transparent;
  color: var(--input-text-color);
  /* Schiebt den Button/Lupe exakt an den Anfang des Inputs */
  transform: translateX(-252px); 
}

.search-container:hover .search-text,
.search-container:focus-within .search-text {
  display: none;
}

.search-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/*-----------------------------------------------------------------------------------*/
/*	Lists
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Header
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Posts
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Post Header
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Post Meta
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Typography
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Images / Video
/*-----------------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------------*/
/*	Tables
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Layout Options
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Single Posts
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Comments
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Post Formats
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Shortcodes
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Archives / Search Results / 404
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Pages
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Previous / Next Pagination
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/* Sidebar
/*-----------------------------------------------------------------------------------*/
/* ---  Sidebar Widgets --- */
/* --- Text Widget --- */
/* --- Pages, Custem Menu, Categories Widget --- */
/* --- Search Widget --- */
/* --- Calendar Widget --- */
/* --- Flickr Photo Widget --- */

/*-----------------------------------------------------------------------------------*/
/*	Footer
/*-----------------------------------------------------------------------------------*/
#footer {
	padding:0 20px;
	font-size:.92em;
}
#footer ul li {
	font-size: .92em;
	list-style:none;
}
#site-info {
	position:relative;
	padding:60px 0 75px;
	color:#909090;
}
#site-info ul li {
	margin:0;
	padding:0;
}
#site-info a {
	color:#909090;
	text-decoration:underline;
}
#site-info a:hover {
	color:#333;
	text-decoration:none;
}
#site-info .footer-nav {
	display:block;
	padding:30px 0 0;
	margin:0;
	line-height:2.2;
}
#site-info a.top {
	position:absolute;
	bottom:57px;
	right:0;
}

/*-----------------------------------------------------------------------------------*/
/*	Styles for external WP-Plugins
/*-----------------------------------------------------------------------------------*/
/* --- Jetpack Subscription Widget --- */
/* ---  Jetpack Image Widget --- */
/* ---  Jetpack Twitter Widget --- */
/* --- WP-PageNavi --- */


/*-----------------------------------------------------------------------------------*/
/*	CSS3 Media Queries for Responsiveness (mobile-first, from small to big)
/*-----------------------------------------------------------------------------------*/


/* --- smartphones in landscape mode --- */
@media screen and (min-width: 480px) {
::placeholder {color: rgba(255, 255, 255, 0.75);}
}

/* --- tablets in portrait mode --- */
@media screen and (min-width: 783px) {
/* --- General Structure --- */

/* --- Site Nav Search --- */
::placeholder {
	color: rgba(255, 255, 255, 0.75);
}
.placeholder {
	color: rgba(255, 255, 255, 0.75);
}
#site-nav-container #searchform div {
	margin: 0;
}
#site-nav-container #s {
	position:relative;
	width: 58px;
	height: 35px;
	padding:0 0 0 33px;
	background:#cccc99 url(../waipoua/images/search-white.png) 10px 10px no-repeat;
	border:none;
	font-size:1.05em;
	color: rgba(255, 255, 255, 0.75);
	transition: all 0.4s ease;
}
#site-nav-container #s:focus {
	width: 210px;
	background:#fff url(../waipoua/images/search-lightgrey.png) 10px 10px no-repeat;
	color:#afafaf !important;
}
/* --- Posts --- */
.entry-header h1.entry-title {
	font-size:1.6em;
	line-height:1.6em;
}
.entry-header h2.entry-title {
	font-size:2em;
	line-height:1.4em;
}
.entry-content,
.entry-summary {
	padding-bottom:30px;
}
img.wp-post-image {
	width:auto;
}
.entry-details ul li.entry-edit  {
	display: inline;
}
.entry-meta ul li.entry-cats,
.entry-meta ul li.entry-tags {
	width:85%;
}
.entry-meta ul li.entry-cats span {
	display:inline-block;
}
/* --- Single Post --- */
.single-post .entry-meta .author-info {
	padding:40px 30px;
}
.post .author-description {
	padding:0 0 0 95px;
}
.single-post .entry-meta .author-info img {
	display:inline-block;
	border-radius: 42px;
}
/* --- Comments --- */
/* --- Post Formats --- */
/* --- Shortcodes --- */
/* --- Footer --- */
#site-info .footer-nav {
	margin:0;
	line-height:1.5;
}
#site-info .footer-nav ul.menu li {
	margin:0 2px;
}
#site-info .footer-nav ul.menu li:after {
	content: " \00b7 \0020";
}
#site-info .footer-nav ul.menu li:last-child::after {
	content: "";
}
#footer #site-info ul li {
	line-height:1.5;
}
#footer #site-info .footer-nav ul li {
	list-style:inline-block;
}
/* --- Plugins --- */
.wp-pagenavi span.pages {
	display:inline;
}
}

/* tablets in landscape mode */
@media screen and (min-width: 1024px) {
/* --- General Structure --- */
body {
	font-size: 100%;
}
#branding,
.post,
.page #content,
.search-results .page,
.type-attachment,
#comments,
.page-header,
.wp-pagenavi,
#footer {
	padding-left:0;
	padding-right:0;
}
#sidebar .widget {
	padding-left:20px;
	padding-right:20px;
}
/* --- Header --- */
/* --- Posts --- */
.entry-meta a.share-btn,
.entry-meta a.share-btn:hover {
	background-position:7px -76px;
}
/* --- Comments Reply --- */
#commentform p.comment-form-author, 
#commentform p.comment-form-email,
#commentform p.comment-form-url {
	width: 33.3%;
	display: block;
	margin: 0;
	padding:15px 0 0;
}
#commentform input#author, 
#commentform input#email, 
#commentform input#url {
	width: 88%;
}
#commentform p.comment-form-comment {
	width: 100%;
	display: block;
	padding:15px 0 0;
}
}

/* standard laptop + desktop screens */
@media screen and (min-width: 1024px) {
/* --- General Structure --- */
/* --- Header --- */
/* --- Posts --- */
/* --- Sidebar --- */
/* --- Footer --- */
/* --- Shortcodes --- */
}





/*-----------------------------------------------------------------------------------*/
/*	Retina Display optimized Images
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*	Print
/*-----------------------------------------------------------------------------------*/


/* ------- Buttons ------- */

/* tablets in landscape mode */
@media screen and (min-width: 1024px) {
/* --- General Structure ---
#site-nav-container {
	max-width: 964px;
	margin:0 auto;
} */
}

/* =Layout
-------------------------------------------------------------- */


/* -----------*/



/* tablets in landscape mode */
@media screen and (min-width: 783px) {
/* --- Nav Menu -- */

#site-nav li a {
	background: none repeat scroll 0 0 #A4A471;
	border-radius: 6px 6px 6px 6px;
	transition: all 0.2s ease-in-out 0s;
	padding: 3px 16px 0;
	margin-top: 12px;
}
#site-nav li a:hover {
	background: none repeat scroll 0 0 #C0C090;
}

}



/* popup widget area */

#popup-box{position:fixed;top:10px;right:10px;width:100%;max-width:260px;border:1px solid #666;box-shadow:5px 5px 5px rgba(0,0,0,0.5);padding:0;z-index:9999;background:#fff;}


#mask {
	background-color:#000;
	display:none;
	left:0;
	position:absolute;
	top:0;
	z-index:9000;
} 
#boxes {
	font-size: 16px;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing:0;
} 
#boxes .window {
	display:none;
	height:auto;
	left:0;
	padding:20px;
	position:absolute;
	top:0;
	width:440px;
	z-index:9999;
}
/* 
#boxes #popup {
  width:375px;
  height:203px;
  padding:10px;
  background-color:#ffffff;
}
*/
#x-mybox-content {
	border-color: #FFFFFF;border-width: 10px;
	box-shadow: 0 0 20px #000000;
	height: auto;
	outline: medium none;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 421px;
	z-index: 110002;
}
#mybox-close {
	background: url(img/mybox.png) repeat scroll -40px 0 transparent;
	cursor: pointer;
	height: 30px;
	position: absolute;
	width: 30px;
	z-index: 110003;
	right: -15px;
	top: -15px;
}


.page .post-date { font-size: 75%; color: #666; }
.page .post-date::before { content: '('; }
.page .post-date::after { content: ')'; }

.issuuembed {width:100%;}

#footer {
	background-color: var(--cs-bg-blue-4);
	margin-top:40px;
}
#site-info {
	padding: 20px 0 75px;
	color: #909090;
	max-width: 964px;
	margin: 0 auto;
}



/* --------------------------------------------------------------------------
 * Navigation below content
 * -------------------------------------------------------------------------- */

/*
<nav id="nav-below">
	<div class="nav-previous"><a href="#" rel="prev">← Vorheriger Beitrag</a></div>
	<div class="nav-back"><a href="#">↑ Zurück zur Übersicht</a></div>
	<div class="nav-next"><a href="#" rel="next">Nächster Beitrag →</a></div>
</nav>
*/


#nav-below {
	color: light-dark(#30455a,#dde5ed);
	border-top: 1px solid currentColor;
	font-size: 1rem;
	display: flex;
	justify-content: space-between;
	margin: 2em 0 0;
	overflow: hidden;
	padding: 2em 3vw;
	text-align: center;
}

#nav-below a {
	background-color: inherit;
	border: 1px solid currentColor;
	border-radius: 6px;
	display: block;
	color: inherit;
	min-width: 7.5em;
	padding: 7px 12px;
	text-decoration: none;
}

#nav-below a:hover {
	background-color: light-dark(#dde5ed,#30455a); /* Pantone 656 C #dde5ed */
	color: light-dark(#30455a,#dde5ed);
}

/*

#nav-below a:hover {
}

.single-post #nav-below {
    margin: 0;
    border-top: 1px solid #ececec
}

.single-post #nav-below {
    padding-left: 3vw;
    padding-right: 3vw
}

#nav-below .nav-back {
    display: inline-block
}

#nav-below .nav-back a {
}
/* --------------------------------------------------- */

.next-image a,.previous-image a {
    display: inline-block;
    padding: 7px 12px;
    background: #909090;
    border-radius: 6px
}

/* --------------------------------------------------- */


/*
.back-to-top{opacity:0;position:fixed;right:24px;bottom:0;z-index:1;width:48px;height:48px;cursor:pointer;background-image:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2248%22%20height%3D%2248%22%20fill%3D%22none%22%20viewBox%3D%220%200%2048%2048%22%3E%3Crect%20width%3D%2248%22%20height%3D%2248%22%20fill%3D%22%230050AA%22%20rx%3D%2224%22%2F%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222.087%22%20d%3D%22M23.9986%2014V34M29.216%2019.2174L23.9986%2014L29.216%2019.2174ZM23.9986%2014L18.7812%2019.2174L23.9986%2014Z%22%2F%3E%3C%2Fsvg%3E);background-repeat:no-repeat}
@media screen and (max-width:63.99875em){.back-to-top{right:20px;bottom:0}}.back-to-top-enter{opacity:0}.back-to-top-enter-done,.back-to-top-enter-active{opacity:1;bottom:24px}
@media screen and (max-width:63.99875em){.back-to-top-enter-done,.back-to-top-enter-active{bottom:20px}}.back-to-top-enter-active{transition:opacity 300ms,bottom 300ms}.back-to-top-exit{opacity:1}
@media screen and (max-width:63.99875em){.back-to-top-exit{bottom:0}}.back-to-top-exit-active-done,.back-to-top-exit-active{opacity:0;bottom:0}.back-to-top-exit-active{transition:bottom 300ms}
*/
.back-to-top{
	opacity:0;
	position:fixed;
	right:24px;
	bottom:0;
	z-index:1;
	width:48px;
	height:48px;
	cursor:pointer;
	background-image:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2248%22%20height%3D%2248%22%20fill%3D%22none%22%20viewBox%3D%220%200%2048%2048%22%3E%3Crect%20width%3D%2248%22%20height%3D%2248%22%20fill%3D%22%230050AA%22%20rx%3D%2224%22%2F%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222.087%22%20d%3D%22M23.9986%2014V34M29.216%2019.2174L23.9986%2014L29.216%2019.2174ZM23.9986%2014L18.7812%2019.2174L23.9986%2014Z%22%2F%3E%3C%2Fsvg%3E);
	background-repeat:no-repeat
}
 @media screen and (max-width:63.99875em){
	.back-to-top{
		right:20px;
		bottom:0
	}
}
.back-to-top-enter{
	opacity:0
}
.back-to-top-enter-done,.back-to-top-enter-active{
	opacity:1;
	bottom:24px
}
 @media screen and (max-width:63.99875em){
	.back-to-top-enter-done,.back-to-top-enter-active{
		bottom:20px
	}
}
.back-to-top-enter-active{
	transition:opacity 300ms,bottom 300ms
}
.back-to-top-exit{
	opacity:1
}
 @media screen and (max-width:63.99875em){
	.back-to-top-exit{
		bottom:0
	}
}
.back-to-top-exit-active-done,.back-to-top-exit-active{
	opacity:0;
	bottom:0
}
.back-to-top-exit-active{
	transition:bottom 300ms
}


/* --------------------------------------------------- */
.vcover-block {
	display:block;
	width: 450px;
	height: 600px;
	z-index:-1;
	object-fit: cover;
	position: absolute; 
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	margin: auto; 
	min-width: 50%;
	min-height: 50%;
}


/* ---------------------------------------------------
 * partnerlink Block 
 */
.partnerlink {
	font-size: 1rem;
	display: grid;
	/* Vertauschte Werte korrigiert: 0.5em vertikaler, 1.5em horizontaler Abstand */
	gap: 0.5em 1.5em;
	grid-template-columns: auto 1fr;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 1em;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 1em;
	line-height: 1.5;
	background-color: var(--cs-background-color-3);
}

.partnerlink figure {
	grid-column: 1;
	grid-row: 1 / span 2;
	margin: 0;
}

.partnerlink img {
	margin:0 !important;
}

.partnerlink .plstrong {
	grid-column: 2;
	grid-row: 1;
	font-weight: bold;
	/* Hier überschreiben wir den Inline-Style */
	margin-bottom: 0 !important;
}

.partnerlink p {
	grid-column: 2;
	grid-row: 2;
	margin: 0;
	hyphens: manual;
}

.partnerlink .plimg {
	display: none;
}
/* partnerlink Block Ende */



/* accordion */

/* gridcard */
.gridcard {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}


/* --------------------------------------------------------------------------
 * Style für inc_function_create_category_navigation.php
 * -------------------------------------------------------------------------- */
.category-navigation ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-navigation li {
    flex: 1;
    text-align: center;
}

.category-navigation a {
    text-decoration: none;
    color: #333;
    display: inline-block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.category-navigation .nav-label {
    display: block;
    font-size: 0.9em;
    color: #666;
}

.category-navigation .nav-title {
    display: block;
    font-weight: bold;
}

.category-navigation .nav-up a {
    background-color: #f5f5f5;
    font-weight: bold;
}

.category-navigation li:first-child a {
    border-radius: 4px 0 0 4px;
}

.category-navigation li:last-child a {
    border-radius: 0 4px 4px 0;
}

/* --------------------------------------------------------------------------
 * Plugin: cookie-notice
 * -------------------------------------------------------------------------- */
 
#cookie-notice .cn-button {
	font-family: 'Roboto Condensed',sans-serif;
} 
 
/* Accept Button Styling */
#cn-accept-cookie {
    color: white !important;
    border: 1px solid currentColor !important;
    background-color: green !important;
}

#cn-accept-cookie:hover {
    background-color: #006700 !important; /* Dunkleres Grün (ca. 50% Schwarz überlagert) */
}

/* More Info Button Styling */
#cn-more-info {
    color: white !important;
    border: 1px solid currentColor !important;
    background-color: transparent !important;
}

#cn-more-info:hover {
    background-color: rgb(0 0 0 / .25) !important;
}

/* Close Button korrigiert - exakte Zentrierung */
#cn-close-notice,
.cn-close-icon {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important; /* Exakte vertikale Zentrierung */
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important; /* Padding entfernt, da es die Positionierung stört */
    margin: 0 !important; /* Margin zurücksetzen */
    border: 1px solid white !important;
    background-color: transparent !important;
    color: white !important;
    opacity: 0.8 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* X-Symbole (Striche) korrigieren */
#cn-close-notice:before,
#cn-close-notice:after,
.cn-close-icon:before,
.cn-close-icon:after {
    content: '' !important;
    position: absolute !important;
    height: 20px !important;
    width: 2px !important;
    background-color: white !important;
    top: 50% !important;
    left: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform-origin: center center !important;
}

#cn-close-notice:before,
.cn-close-icon:before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

#cn-close-notice:after,
.cn-close-icon:after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

/* Hover-Effekt */
#cn-close-notice:hover,
.cn-close-icon:hover {
    opacity: 1 !important;
}

/* --------------------------------------------------------------------------
 * styles für die index.php mit grid layout
 * -------------------------------------------------------------------------- */
.blog-grid-layout {
	/* Den Browser-Standard (User Agent) gezielt töten */
	padding-inline-start: 0 !important; 
	padding: 0 !important;
	margin: 0;
	list-style: none;

	/* Dein Grid-Setup */
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

/* Wichtig für alte Themes: Margin-Reset für die List-Items */
.blog-grid-layout li {
	margin: 0;
	padding: 0;
}



/* --------------------------------------------------------------------------
 * Print
 * -------------------------------------------------------------------------- */
@media print {
body {background: none !important; font-size: 14pt;}
#header { background:none !important;}
#branding { color:#000 !important;}
#content { margin: 0; width: auto; }
.header-image, #header #site-nav, #sidebar {display:none;}
#site-title h1 {font-size:28pt;}
h1,h2,h3,h4,h5,h6{page-break-after:avoid;page-break-inside:avoid;font-weight:bold;}
a{font-weight:bold;color:#000 !important;text-decoration:underline !important;}
blockquote,table,pre{page-break-inside:avoid;}
ul,ol,dl{page-break-before:avoid;}
img.aligncentered{display:block;margin-left:auto;margin-right:auto;}
img.alignright{display:inline;margin:0 0 2px 7px;padding:4px;}
img.alignleft{display:inline;margin:0 7px 2px 0;padding:4px;}
img{page-break-inside:avoid;page-break-after:avoid;}
}


/* =End of File
-------------------------------------------------------------- */