/* ==========================================================================
   AWO München-Land – Custom Styles (YOOtheme / WordPress)
   --------------------------------------------------------------------------
   Struktur:
   01. Farb-Variablen
   02. Überlappende Sections / Layout
   03. Section "Über uns" (einspaltig)
   04. Section "100 Jahre AWO" (mobil)
   05. Navigation / Dropbar / ARIA
   06. Suche
   07. Sonstige Utilities
   08. Ninja Forms (Panel-Herz, Felder, Checkboxen/Radio, Submit)
   09. Youtube-Container
   10. Cookie Banner
   ========================================================================== */


/* ==========================================================================
   01. FARB-VARIABLEN
   ========================================================================== */
:root {
  --awo-red: #e3000f;
  --text: #484848;
  --muted: #989898;
  --muted-bg: #f2f2f2;
  --muted-bg-2: #e6e6e6;
}


/* ==========================================================================
   02. ÜBERLAPPENDE SECTIONS / LAYOUT
   ========================================================================== */

/* Section unter überlappender Zeile */
.ueberlappen { position: relative; z-index: 1; }

@media (min-width: 960px) {
  .ueberlappen::before,
  .ueberlappen::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 50%;
    z-index: -1;
  }
  .ueberlappen::before { left: 0;  background-color: var(--muted-bg); }
  .ueberlappen::after  { right: 0; background-color: var(--muted-bg-2); }
}

/* 2 Spalten unterschiedlicher Farbe (mobile) */
@media (max-width: 959px) {
  .satzung-links  { position: relative; background-color: var(--muted-bg);   z-index: 0; }
  .satzung-rechts { position: relative; background-color: var(--muted-bg-2); z-index: 0; }
}

/* Zeile, die nach unten überlappt */
.ueberlappen-card { position: relative; z-index: 10; margin-bottom: -150px; }
@media (max-width: 959px) {
  .ueberlappen-card { margin-bottom: 0; }
  .ueberlappen > .uk-section { padding-top: 0; }
}

/* Zeile, die nach oben überlappt */
.ueberlappen-nach-oben { position: relative; z-index: 10; margin-top: -150px; }
@media (max-width: 959px) {
  .ueberlappen-nach-oben { margin-top: -90px; }
}

/* Zeile, die nach unten überlappt (Präsidium) */
.ueberlappen-nach-unten { position: relative; z-index: 10; margin-bottom: -170px; }
@media (max-width: 959px) {
  .ueberlappen-nach-unten { margin-bottom: -130px; }
}

/* ==========================================================================
   03. SECTION "ÜBER UNS" – EINSPALTIGES ÜBERLAPPEN
   ========================================================================== */
.ueberlappen-1spaltig {
  position: relative;
  z-index: 1;
  background-image: url("/wp-content/uploads/bg-grau-gesprenkelt.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-color: var(--muted-bg);
}
@media (max-width: 959px) { .spalte-ueberlappen { position: relative; z-index: 0; } }

/* Obere Grid-Spalte, die überlappt */
.ueberlappen-grid { position: relative; z-index: 10; margin-bottom: -150px; }
@media (max-width: 959px) {
  .ueberlappen-grid { margin-bottom: 0; }
  .ueberlappen-1spaltig > .uk-section { padding-top: 0; }
}


/* ==========================================================================
   04. SECTION "100 JAHRE AWO" – BOX-POSITION (MOBIL)
   ========================================================================== */
@media (max-width: 959px) {
  .jubilaeum-box {
    position: static !important;
    width: auto !important;
    margin-top: 20px !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }
}


/* ==========================================================================
   05. NAVIGATION / DROPBAR / ARIA / MOBILE MENU
   ========================================================================== */

/* ------------------------------
   Navigation Grundverhalten
   ------------------------------ */

/* Dropdown – Überschrift Hover-Farbe */
.tm-header .uk-navbar-dropdown h3 > a:hover {
  color: var(--awo-red) !important;
}

/* Dropdown – Liste, Untertitel, Marker */
.tm-header .uk-navbar-dropdown ul {
  list-style-type: square;
  padding-left: 20px;
  hyphens: none;
  word-break: keep-all;
}

.tm-header .uk-navbar-dropdown ul li .uk-nav-subtitle {
  font-weight: 400;
  color: var(--muted);
  line-height: 20px;
}

.tm-header .uk-navbar-dropdown ul li::marker {
  color: var(--awo-red) !important;
  font-size: 25px;
}

/* Hauptmenü – Worttrennungen vermeiden */
.tm-header .uk-navbar-nav {
  word-break: keep-all;
  hyphens: none;
}

/* Aktiver / Hover / Expanded */
.uk-navbar-nav > li.uk-active > a,
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li.uk-parent > a[aria-expanded="true"] {
  color: var(--awo-red);
  font-weight: 700;
}


/* ------------------------------
   Dropbar – Desktop-Optimierung
   ------------------------------ 
   Viewport = 100vh
   Headerhöhe = 150px
   Dropbar soll:
   - unter dem Header beginnen
   - nicht nach unten verschwinden
   - eigenen Scrollbereich haben
   ------------------------------ */

@media (min-width: 1200px) {

  /* Header darf nichts abschneiden */
  .tm-header,
  .tm-header .uk-navbar-container,
  .tm-header [uk-navbar] {
    overflow: visible !important;
  }

  /* Dropbar sichtbar fixieren (im Viewport verankert) */
  .uk-navbar-dropdown-dropbar.uk-open {
    position: fixed !important;
    top: 150px;       /* Header-Höhe */
    left: 0;
    right: 0;
    bottom: 0;        /* bis zur Unterkante Viewport */
    z-index: 980;     /* über dem Inhalt, unter Modals */
  }

  /* Scrollbarer Bereich innerhalb der Dropbar */
  .uk-navbar-dropdown-dropbar {
    max-height: calc(100vh - 150px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Dropdown-Panels innerhalb der Dropbar */
  .uk-navbar-dropdown-dropbar .uk-navbar-dropdown,
  .uk-navbar-dropdown-dropbar .uk-drop,
  .uk-navbar-dropdown-dropbar [class*="uk-navbar-dropdown"],
  .uk-navbar-dropdown-dropbar [class*="uk-drop"] {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* ------------------------------
   Mobile Menü
   ------------------------------ */
   
#tm-dialog-mobile .uk-accordion-title::before 
{content: "▾";background-image:none;color:#e3000f;font-size:1.5em;}

#tm-dialog-mobile .uk-open .uk-accordion-title::before 
{content: "▸";background-image:none;}

#tm-dialog-mobile .uk-accordion .el-item .uk-accordion-content .uk-accordion .uk-accordion-title::before 
{content: "▾";background-image:none;color:#e3000f;font-size:1.5em;}

#tm-dialog-mobile .uk-accordion .el-item .uk-accordion-content .uk-accordion .uk-open .uk-accordion-title::before 
{content: "▸";background-image:none;}


#tm-dialog-mobile .uk-accordion .el-item > .el-title{
    font-size: 22px;
    font-weight: 600;
	vertical-align: middle;
  	display: inline;
    color: #484848;
}

#tm-dialog-mobile .uk-accordion > :nth-child(n+2) {
 	margin-top: 20px;
}

#tm-dialog-mobile .uk-accordion > :nth-child(n+2) {
	padding-top: 20px;
	border-top: 1px solid #f2f2f2;
}

#tm-dialog-mobile .uk-accordion .el-item a{
	text-decoration: none;
	}
#tm-dialog-mobile .uk-accordion .el-item a:hover{
	color: #e3000f;
}
#tm-dialog-mobile .uk-accordion .el-item .uk-accordion-content .el-content .uk-accordion > :nth-child(n+2){
    margin-top: 10px;
    padding-top: 10px;
	border-top: none;
}

#tm-dialog-mobile .uk-accordion .el-item > .uk-accordion-content {
	margin-top: 20px;
}

#tm-dialog-mobile .uk-accordion > .uk-open > .uk-accordion-content{
	color: #e3000f;
    padding-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #f2f2f2;
}

#tm-dialog-mobile .uk-accordion .el-item .uk-accordion-content .el-content .uk-accordion .el-item .el-title{
	font-size: 1.1em;
	font-weight: 400;}

#tm-dialog-mobile .uk-accordion .el-item .uk-accordion-content .el-content .uk-accordion .el-item .uk-accordion-content .el-content li{
	font-size: 1em;
}

#tm-dialog-mobile .uk-accordion .el-item .uk-accordion-content .el-content .uk-accordion .uk-open .uk-accordion-content{
	margin-top: 10px;}

/* ==========================================================================
   06. SUCHE
   ========================================================================== */
.uk-search-navbar { width: 165px; }
.uk-search-input::placeholder { color: #cbcccc; }
#search-0 { width: 300px; }
#search-0 .uk-search-input { background-color: #ffffff; }


/* ==========================================================================
   07. SONSTIGE UTILITIES
   ========================================================================== */

/* Hinweis: #page#25 ist korrekt (YOOtheme/WordPress ID-Generierung) */
@media (min-width: 1200px) {
  #page#25 > .uk-grid { margin-left: 0 !important; }
}

/* Entfernt: ungültiges padding-left:-20px auf Links im Dropdown.
   Falls Einrückung gewünscht, ggf. text-indent nutzen. */
.tm-header .uk-navbar-dropdown ul li > a { /* Beispiel: text-indent: -4px; */ }

/* Liste, Untertitel */
.el-content ul {
  list-style-type: square;
  padding-left: 23px;
  hyphens: none;
  word-break: keep-all;
}
.el-content ul li::marker { color: var(--awo-red) !important; font-size: 20px; }

.grid-default-grau * + ul { margin-top: 10px; }
.grid-default-grau .abstand-unten { margin-bottom: 0; }
.grid-default-grau .grid-grau > div .uk-first-column .el-item { padding-left: 0; padding-right: 0; }

/* Panel darf ggf. über Container hinausragen */
.grid-default-grau .uk-card { overflow: visible; }

/* Anker für die Bleed-Fläche */
.grid-default-grau .grid-grau { position: relative; margin-bottom: 40px; }

/* Desktop ≥960px: rechte Hälfte bis an die rechte Viewport-Kante */
@media (min-width: 960px) {
  .grid-default-grau .grid-grau::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    right: calc(50% - 50vw);
    background: #f2f2f2;
    z-index: 0;
  }
  /* Inhalt über die graue Fläche legen */
  .grid-default-grau .grid-grau > .uk-grid,
  .grid-default-grau .grid-grau > .uk-grid > * { position: relative; z-index: 1; }
  /* zweite Spalte transparent (Farbe kommt vom ::after) */
  .grid-default-grau .grid-grau > .uk-grid > :nth-child(2) .el-item { background: transparent; }
}

/* Optional: Card-Padding nur in dieser Section */
.grid-default-grau .uk-card-body { --panel-pad: 32px; }

/* Mobile <960px: 2. Kachel grau + bis zum rechten Rand „ausdehnen“ */
@media (max-width: 959px) {
  .grid-default-grau .grid-grau::after { display: none; }
  .grid-default-grau .grid-grau > .uk-grid > :nth-child(2) .el-item {
    background: #f2f2f2;
    margin-right: calc(-1 * (50vw - 50%));
    padding-right: calc((50vw - 50%) + var(--panel-pad, 32px));
    padding-left: var(--panel-pad, 32px);
  }
}

/* Automatische Worttrennungen */
p, ul, li, .el-content, .el-title, .el-meta {
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

/* Responsive Tabellen nur in diesem Akkordeon-Bereich */
@media (max-width: 680px) {
  #page#8 #uk-accordion-16 .el-content .uk-table-responsive,
  .uk-table-responsive tbody,
  .uk-table-responsive td,
  .uk-table-responsive th,
  .uk-table-responsive tr { display: block; }
}

.uk-accordion-content a:not(.uk-button) { text-decoration: underline; }



/* ==========================================================================
   08. NINJA FORMS (FORMULAR-AREA)
   ========================================================================== */

/* Panel als Bezugspunkt für das Herz (Pseudo-Element) */
#anmeldeformular .uk-card { position: relative; }

/* Herz oben links am Panel – über der Kante (Werte exakt wie in deiner Datei) */
#anmeldeformular .uk-card::before {
  content: "";
  position: absolute;
  top: -69px;
  left: -151px;
  width: 300px;        /* Bildbreite passend zum Asset */
  height: 271px;       /* Bildhöhe passend zum Asset */
  background: url("/wp-content/uploads/icon-awo-herz-rot.png") no-repeat 0 0 / contain;
  pointer-events: none;
}

/* Sicherstellen, dass der Formularinhalt über dem Herz liegt */
#anmeldeformular .uk-card .nf-form-cont { position: relative; z-index: 1; }

/* Responsive Anpassung Herz */
@media (max-width: 959px) {
  #anmeldeformular .uk-card::before {
    top: -46px;
    left: -101px;
    width: 200px;
  }
}

/* --- Titel & Hinweise --- */
#nf-form-2-cont .nf-form-title h3 {
  text-transform: uppercase;
  color: #e3000f;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
#nf-form-2-cont .nf-form-layout .nf-before-form-content .nf-form-fields-required {
  font-weight: 300;
  color: #989898;
}
#nf-form-2-cont .nf-form-layout .nf-before-form-content { padding-bottom: 30px; }
#nf-form-2-cont .nf-form-layout .nf-form-content .nf-field .nf-field-label label {
  font-weight: 400; font-size: 1.1em;
}

/* Checkbox-Label rechts – neutralisieren */
#nf-form-2-cont .checkbox-container.label-right .nf-field-label { display: block !important; }
#nf-form-2-cont .checkbox-container .nf-field-description p { margin-top: 0; }

/* --- Basiselemente (Input/Select/Textarea) --- */
#nf-form-2-cont .nf-field-element input[type="text"],
#nf-form-2-cont .nf-field-element input[type="email"],
#nf-form-2-cont .nf-field-element input[type="tel"] {
  width: 100%;
  height: 45px;
  border: none;
  background: var(--muted-bg);
  padding: 10px 12px;
  font-size: 16px;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
#nf-form-2-cont .nf-field-element textarea {
  border: none;
  background: var(--muted-bg);
  padding: 10px 12px;
  font-size: 16px;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
#nf-form-2-cont .nf-field-element input:focus-visible,
#nf-form-2-cont .nf-field-element textarea:focus-visible,
#nf-form-2-cont .nf-field-element select:focus-visible {
  outline: 0;
  border-color: var(--awo-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.2);
  border-radius: 0 !important;
}

/* --- Checkboxen (global) --- */
#nf-form-2-cont { --checkbox-size: 16px; }
#nf-form-2-cont .nf-field-element input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  box-sizing: border-box;
  background-color: var(--muted-bg);
  border: none;
  border-radius: 0 !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75% auto;
  cursor: pointer;
  vertical-align: middle;
}
#nf-form-2-cont .nf-field-element input[type="checkbox"]:checked {
  border: 2px solid #e3000f;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14' fill='none'><path d='M1 7l5 5L17 1' stroke='%23e3000f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
#nf-form-2-cont .nf-error .nf-field-element input[type="checkbox"] {
  border: 2px solid #e3000f; background-color: #fff;
}
#nf-form-2-cont .nf-field-element input[type="checkbox"]:focus-visible {
  outline: 0; box-shadow: 0 0 0 3px rgba(227,0,15,.2); border-radius: 0 !important;
}

/* Feld 15 – Kästchen am Label rendern */
#nf-form-2-cont #nf-field-15-wrap .nf-field-element ul li input[type="checkbox"] {
  position: absolute; opacity: 0; pointer-events: none;
}
#nf-form-2-cont #nf-field-15-wrap .nf-field-element ul li input[type="checkbox"] + label::before {
  content: "";
  display: inline-block;
  width: 16px; height: 16px; margin-right: 8px; vertical-align: -2px;
  background-color: var(--muted-bg); border: 0; border-radius: 0;
  background-repeat: no-repeat; background-position: center; background-size: 75% auto;
}
#nf-form-2-cont #nf-field-15-wrap .nf-field-element ul li input[type="checkbox"]:checked + label::before {
  outline: 2px solid #e3000f; background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14' fill='none'><path d='M1 7l5 5L17 1' stroke='%23e3000f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
#nf-form-2-cont #nf-field-15-wrap .nf-error input[type="checkbox"] + label::before,
#nf-form-2-cont #nf-field-15-wrap.nf-error input[type="checkbox"] + label::before {
  outline: 2px solid #e3000f; background-color: #fff;
}
#nf-form-2-cont #nf-field-15-wrap .nf-field-element ul li input[type="checkbox"]:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.2);
}

/* --- Submit-Button (inkl. Hover) --- */
#nf-form-2-cont #nf-field-14-wrap input[type="submit"] {
  background-color: var(--awo-red);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 20px;
  vertical-align: middle;
  font-size: 18px;
  line-height: 45px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  transition: .1s ease-in-out;
  transition-property: color, background-color, border-color, box-shadow;
  background-origin: border-box;
}
#nf-form-2-cont #nf-field-14-wrap input[type="submit"]:hover {
  background-color: var(--muted);
  color: #fff;
  border-color: transparent;
  text-decoration: none;
  cursor: pointer;
}

/* --- Feld 26 (Radio-Buttons) – CI-konform --- */
#nf-form-2-cont #nf-field-26-wrap .nf-field-element ul li input[type="radio"] {
  position: absolute; opacity: 0;   
  width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  clip-path: inset(50%); white-space: nowrap;
}
#nf-form-2-cont #nf-field-26-wrap .nf-field-element ul li input[type="radio"] + label::before {
  content: ""; display: inline-block;
  width: 18px; height: 18px; margin-right: 8px; vertical-align: -3px;
  background-color: var(--muted-bg); border: none; border-radius: 50%; 
  box-sizing: border-box; transition: all 0.15s ease-in-out;
}

#nf-form-2-cont #nf-field-26-wrap .nf-field-element ul li input[type="radio"]:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.25);
  border: 2px solid #e3000f;
  outline: 2px solid transparent; /* für High-Contrast-User */
}
#nf-form-2-cont #nf-field-26-wrap .nf-field-element ul li input[type="radio"]:checked + label::before {
  border: 2px solid #e3000f; background-color: #fff; box-shadow: inset 0 0 0 4px #e3000f;
}
#nf-form-2-cont #nf-field-26-wrap.nf-error input[type="radio"] + label::before,
#nf-form-2-cont #nf-field-26-wrap .nf-error input[type="radio"] + label::before {
  border: 2px solid #e3000f; background-color: #fff;
}
#nf-form-2-cont #nf-field-26-wrap .nf-field-element ul { display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; list-style: none; }
#nf-form-2-cont #nf-field-26-wrap .nf-field-element ul li { display: flex; align-items: center; }
@media (max-width: 640px) {
  #nf-form-2-cont #nf-field-26-wrap .nf-field-element ul { flex-direction: column; gap: 10px; }
}

/* Klarer Fokusrahmen für Textarea & Inputs */
#nf-form-2-cont .nf-field-element textarea:focus-visible,
#nf-form-2-cont .nf-field-element input:focus-visible { border: 2px solid #e3000f; }

/* --- Felder 16/17/18: Checkbox links, Label rechts, Description darunter --- */
/* Grid auf Wrap */
#nf-form-2-cont #nf-field-16-wrap,
#nf-form-2-cont #nf-field-17-wrap,
#nf-form-2-cont #nf-field-18-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
}
/* Checkbox links über beide Zeilen */
#nf-form-2-cont #nf-field-16-wrap .nf-field-element,
#nf-form-2-cont #nf-field-17-wrap .nf-field-element,
#nf-form-2-cont #nf-field-18-wrap .nf-field-element {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0 !important;
}
/* Label rechts oben (label-right neutralisieren) */
#nf-form-2-cont #nf-field-16-container.label-right .nf-field-label,
#nf-form-2-cont #nf-field-17-container.label-right .nf-field-label,
#nf-form-2-cont #nf-field-18-container.label-right .nf-field-label,
#nf-form-2-cont #nf-field-16-wrap .nf-field-label,
#nf-form-2-cont #nf-field-17-wrap .nf-field-label,
#nf-form-2-cont #nf-field-18-wrap .nf-field-label {
  grid-column: 2 !important;
  grid-row: 1 !important;
  float: none !important;
  display: block !important;
  margin: 0 !important;
  padding-left: 0 !important;
}
/* Description unter dem Label */
#nf-form-2-cont #nf-field-16-wrap .nf-field-description,
#nf-form-2-cont #nf-field-17-wrap .nf-field-description,
#nf-form-2-cont #nf-field-18-wrap .nf-field-description {
  grid-column: 2 !important;
  grid-row: 2 !important;
  display: block !important;
  margin: 0 !important;
  color: var(--text);
  line-height: 1.4;
  font-size: 15px;
}
/* Mobile Fallback */
@media (max-width: 480px) {
  #nf-form-2-cont #nf-field-16-wrap,
  #nf-form-2-cont #nf-field-17-wrap,
  #nf-form-2-cont #nf-field-18-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  #nf-form-2-cont #nf-field-16-wrap .nf-field-element,
  #nf-form-2-cont #nf-field-17-wrap .nf-field-element,
  #nf-form-2-cont #nf-field-18-wrap .nf-field-element { grid-column: 1 !important; grid-row: 2 !important; }
  #nf-form-2-cont #nf-field-16-wrap .nf-field-label,
  #nf-form-2-cont #nf-field-17-wrap .nf-field-label,
  #nf-form-2-cont #nf-field-18-wrap .nf-field-label { grid-column: 1 !important; grid-row: 1 !important; }
  /*#nf-form-2-cont #nf-field-16-wrap .nf-field-description,
  #nf-form-2-cont #nf-field-17-wrap .nf-field-description,
  #nf-form-2-cont #nf-field-18-wrap .nf-field-description { grid-column: 1 !important; grid-row: 3 !important; }*/
}

/* Feld 15 – nebeneinander (responsive) */
#nf-form-2-cont #nf-field-15-wrap .nf-field-element ul {
  display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; list-style: none;
}
#nf-form-2-cont #nf-field-15-wrap .nf-field-element ul li { display: flex; align-items: center; }
@media (max-width: 640px) {
  #nf-form-2-cont #nf-field-15-wrap .nf-field-element ul { flex-direction: column; gap: 10px; }
}
#nf-form-2-cont #nf-field-15-wrap .nf-field-element li label { margin-left: 0; }
#nf-form-2-cont #nf-field-15-container .nf-field-label { margin-bottom: 0; }


/* ==========================================================================
   09. YOUTUBE CONTAINER (RESPONSIVE)
   ========================================================================== */
.youtube-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}
.youtube-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}


/* ==========================================================================
   10. COOKIE BANNER
   ========================================================================== */

/* ==========================================================================
   COMPLIANZ – MANAGE-CONSENT-BALKEN DAUERHAFT SICHTBAR
   ========================================================================== */

/* Offset auf 0 setzen, damit der Balken nicht „eingefahren“ wird */
:root {
  --cmplz-manage-consent-offset: 0px;
}

/* Animationen deaktivieren, damit er nicht mehr rein/raus fährt */
#cmplz-manage-consent .cmplz-manage-consent {
  bottom: 0 !important;
  animation: none !important;
}

/* Sicherheitshalber auch beim Hover/Fokus Animation & Position fixieren */
#cmplz-manage-consent .cmplz-manage-consent:hover,
#cmplz-manage-consent .cmplz-manage-consent:focus {
  bottom: 0 !important;
  animation: none !important;
}


.cmplz-cookiebanner .cmplz-message {
  font-size: 15px!important;
  line-height: 20px!important;
  font-weight: 400!important;
}

.cmplz-cookiebanner .cmplz-message > p {
  margin-bottom: 10px!important;
}


.cmplz-cookiebanner .cmplz-title {
  font-weight: 600!important;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-description {
  font-size: 14px!important;
  font-weight: 400!important;
}




[role="button"]:not([disabled]):focus, [role="heading"]:focus, [role="navigation"]:focus, button:not([disabled]):focus, form:not([disabled]):focus, h1[tabindex="-1"]:focus, h2[tabindex="-1"]:focus, h3[tabindex="-1"]:focus, h4[tabindex="-1"]:focus, h5[tabindex="-1"]:focus, h6[tabindex="-1"]:focus, img:focus, nav:focus, picture:focus, svg:focus {
  border: none!important;
}
