/* =========================================================================
   Campingplatz Waldeck – Stylesheet (Kirby)
   1:1 nach camping-waldeck.de (Elementor-Vorlage)
   ========================================================================= */

/* ---------- 1. Variablen ---------- */
:root {
  /* Defaults — werden vom Header zur Laufzeit überschrieben (Site-Einstellungen) */
  --color-cream:      #FFF8F0;
  --color-cream-warm: #FFF3E6;
  --color-darkgreen:  #006633;
  --color-green:      #2E7D32;
  --color-lightgreen: #4CAF50;
  --color-lightblue:  #C8DEF0;
  --color-gold:       #C49A2A;
  --color-text:       #2C2C2C;
  --color-text-light: #5A5A5A;
  --color-white:      #FFFFFF;

  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-headline: "Playfair Display", Georgia, serif;

  --container: 1200px;
  --size-h1:   44px;
  --size-h2:   32px;
  --size-h3:   18px;
  --size-body: 16px;

  --shadow-card:       0 4px 18px rgba(0,0,0,.11);
  --shadow-card-hover: 0 14px 36px rgba(0,0,0,.20);
  --card-hover-y:      -7px;
}

/* ---------- 2. Skip-Link (Barrierefreiheit) ---------- */
.wd-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-darkgreen);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top .15s;
}
.wd-skip-link:focus { top: 0; }

/* ---------- 3. Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { font-size: var(--size-body, 16px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--size-body, 16px);
  color: var(--color-text);
  background: #aaaaaa;  /* wird im Header inline überschrieben */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* boxed-Layout (Container-Breite via Site-Einstellungen) */
.wd-site {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  background: var(--color-cream);
  box-shadow: 0 0 30px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;  /* Wellen werden am Rand gekappt */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-darkgreen); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-gold); }
ul { list-style: none; }

/* ---------- Fließtext-Links: fett + goldene Unterstreichung ---------- */
/* Nur reine Markdown-/Kirbytext-Links (ohne Klasse, keine tel/mailto). */
.wd-main :is(p, li, td, blockquote, dd, dt) > a:not([class]):not([href^="tel:"]):not([href^="mailto:"]),
.wd-main :is(p, li, td, blockquote, dd, dt) strong > a:not([class]):not([href^="tel:"]):not([href^="mailto:"]),
.wd-main :is(p, li, td, blockquote, dd, dt) em > a:not([class]):not([href^="tel:"]):not([href^="mailto:"]) {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.wd-main :is(p, li, td, blockquote, dd, dt) > a:not([class]):not([href^="tel:"]):not([href^="mailto:"]):hover,
.wd-main :is(p, li, td, blockquote, dd, dt) strong > a:not([class]):not([href^="tel:"]):not([href^="mailto:"]):hover,
.wd-main :is(p, li, td, blockquote, dd, dt) em > a:not([class]):not([href^="tel:"]):not([href^="mailto:"]):hover {
  color: var(--color-gold-dark);
  text-decoration-color: var(--color-gold-dark);
}
/* Komponente: Hero-/Home-Teaser-Listen, Pill-Buttons, Post-Navigation */
.wd-hero-teaser a, .wd-hero-teaser a:hover,
.wd-hero-teaser-list a, .wd-hero-teaser-list a:hover,
.wd-hero-teaser-head-link, .wd-hero-teaser-head-link:hover,
.wd-home-teaser-list a, .wd-home-teaser-list a:hover,
.wd-home-teaser-more a, .wd-home-teaser-more a:hover,
.wd-post-back a, .wd-post-back a:hover,
.wd-post-back-pill a, .wd-post-back-pill a:hover,
.wd-post-nav a, .wd-post-nav a:hover,
.wd-latest-cta a, .wd-latest-cta a:hover,
.wd-post-link, .wd-post-link:hover,
.wd-post-more, .wd-post-more:hover {
  font-weight: inherit !important;
  text-decoration: none !important;
}
h1, h2, h3, h4 { font-family: var(--font-headline); font-weight: 700; line-height: 1.2; color: var(--color-darkgreen); }

/* ---------- 3. Hintergrund-Klassen ---------- */
.bg-cream      { --bg: var(--color-cream); }
.bg-cream-warm { --bg: var(--color-cream-warm); }
.bg-darkgreen  { --bg: var(--color-darkgreen); }
.bg-green      { --bg: var(--color-green); }
.bg-lightblue  { --bg: var(--color-lightblue); }
.bg-white      { --bg: var(--color-white); }

/* Auf dunklem Hintergrund Headlines/Text invertieren */
.bg-darkgreen, .bg-green {
  color: var(--color-cream);
}
.bg-darkgreen h1, .bg-darkgreen h2, .bg-darkgreen h3,
.bg-green h1, .bg-green h2, .bg-green h3 {
  color: var(--color-white);
}

/* ---------- 4. Wave (Schwung-SVG) ---------- */
.section-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--wave-h, 50px);
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.section-wave svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.section-wave.wave-wide svg { width: calc(105% + 1.3px); }
.section-wave.wave-flip svg { transform: translateX(-50%) scaleX(-1); }
.section-wave.wave-wide.wave-flip svg { transform: translateX(-50%) scaleX(-1); }
.wave-top    { top: -1px; }     /* 1px Bleed eliminiert Sub-Pixel-Gap */
.wave-bottom { bottom: -1px; }

/* ---------- 5. Section-Block ---------- */
.wd-section {
  position: relative;
  background: var(--bg, var(--color-cream));
  padding-top: var(--pad-t, 60px);
  padding-bottom: var(--pad-b, 80px);
  padding-left: var(--section-pad-x, 30px);
  padding-right: var(--section-pad-x, 30px);
}
.wd-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.wd-section-inner > * + * { margin-top: 1.25rem; }
.wd-section-inner h2 {
  font-size: var(--size-h2, 32px);
  text-align: center;
  margin-bottom: .5rem;
}
.wd-section-inner h3 { font-size: var(--size-h3, 22px); }
.wd-section-inner h2 + p,
.wd-section-inner h3 + p { margin-top: .5rem; }
.wd-section-inner p { color: inherit; }
.bg-cream .wd-section-inner p,
.bg-cream-warm .wd-section-inner p,
.bg-white .wd-section-inner p { color: var(--color-text-light); }

/* ---------- 6. Trenner-Block ---------- */
.wd-trenner {
  position: relative;
  background: var(--bg, var(--color-darkgreen));
  min-height: var(--min-h, 67px);
  width: 100%;
}

/* ---------- 7. Hero-Block ---------- */
.wd-hero {
  position: relative;
  padding-top: var(--pad-t, 80px);
  padding-bottom: var(--pad-b, 100px);
  padding-left: var(--section-pad-x, 30px);
  padding-right: var(--section-pad-x, 30px);
  background: var(--color-darkgreen);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: var(--color-white);
}
.wd-hero-slideshow {
  position: absolute; inset: 0; z-index: 0;
}

/* === Hero-Navigation: Pfeile + Dots, dezent ========================= */
.wd-hero-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0.6;
  transition: opacity .25s, background .25s;
}
.wd-hero-nav:hover { opacity: 1; background: rgba(0,0,0,0.4); }
.wd-hero-nav-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .15s, transform .15s;
}
.wd-hero-nav-arrow:hover { background: rgba(255,255,255,0.28); transform: scale(1.06); }
.wd-hero-nav-arrow svg { width: 18px; height: 18px; }
.wd-hero-nav-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wd-hero-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.wd-hero-nav-dot:hover { background: rgba(255,255,255,0.7); }
.wd-hero-nav-dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}
/* Schmalere Ansichten (Handy + eine Stufe größer): Navigation nach unten,
   damit sie die gestapelten Slide-Texte oben nicht überdeckt.
   Bei Hero MIT Teaser bleibt Nav oben, weil unten der Teaser sitzt. */
@media (max-width: 900px) {
  .wd-hero:not(.has-teaser) .wd-hero-nav {
    top: auto;
    bottom: 18px;
  }
}
@media (max-width: 600px) {
  .wd-hero-nav { gap: 10px; padding: 6px 10px; }
  .wd-hero:not(.has-teaser) .wd-hero-nav { top: auto; bottom: 14px; }
  .wd-hero-nav-arrow { width: 24px; height: 24px; }
  .wd-hero-nav-arrow svg { width: 14px; height: 14px; }
  .wd-hero-nav-dot { width: 6px; height: 6px; }
  .wd-hero-nav-dot.is-active { width: 18px; }
}
.wd-hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  isolation: isolate;
}
.wd-hero-slide.is-active { opacity: 1; }
/* Pro Slide eigenes Overlay als Pseudo-Element — Slide-Text liegt DARÜBER */
.wd-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* RGBA von Dunkelgrün mit konfigurierbarer Alpha — keine Multiplikation mit Slide-Opacity */
  background: rgba(0, 102, 51, var(--overlay, .4));
  z-index: 0;
  pointer-events: none;
}
.wd-hero-slide-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--pad-t, 80px) var(--section-pad-x, 30px) var(--pad-b, 100px);
  text-align: center;
  pointer-events: none;
  z-index: 1;
}
.wd-hero-slide-head {
  font-family: var(--font-headline);
  font-size: clamp(28px, 5vw, var(--size-h1, 44px));
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  max-width: 880px;
}
.wd-hero-slide-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  max-width: 720px;
  line-height: 1.5;
}
/* Leerer Hero-Text-Wrapper bleibt als Grid-Platzhalter, sodass Teaser in der zweiten Spalte landet */
.wd-hero-text:empty { visibility: hidden; }

/* Bei aktivem Teaser: Slide-Text nur in der linken Hälfte, damit er die Teaser-Box rechts nicht überlagert */
@media (min-width: 901px) {
  .wd-hero.has-teaser .wd-hero-slide-text {
    align-items: flex-start;
    padding-right: calc(420px + 4vw);
  }
  .wd-hero.has-teaser .wd-hero-slide-text-inner { text-align: left; }
}

/* Text-Backdrop Varianten — pro Slide */
.wd-hero-slide.wd-hero-bd-none .wd-hero-slide-head,
.wd-hero-slide.wd-hero-bd-none .wd-hero-slide-sub { text-shadow: none; }

.wd-hero-slide.wd-hero-bd-shadow-strong .wd-hero-slide-head {
  text-shadow: 0 2px 6px rgba(0,0,0,.65), 0 4px 20px rgba(0,0,0,.55);
}
.wd-hero-slide.wd-hero-bd-shadow-strong .wd-hero-slide-sub {
  text-shadow: 0 1px 4px rgba(0,0,0,.7), 0 2px 14px rgba(0,0,0,.55);
}

/* Dunkler Verlauf von unten — pro Slide */
.wd-hero-slide.wd-hero-bd-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Halbtransparente Glas-Box hinter Text — pro Slide */
.wd-hero-slide.wd-hero-bd-glass .wd-hero-slide-text-inner {
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 22px 32px;
  border-radius: 14px;
  max-width: 880px;
}
/* (Globales .wd-hero-overlay entfernt — Overlay liegt jetzt pro Slide als ::before) */
.wd-hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
}
.wd-hero-headline {
  font-family: var(--font-headline);
  font-size: var(--size-h1, 44px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: .75rem;
}
.wd-hero-subline {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

/* Hero mit Teaser: zweispaltiges Layout */
.wd-hero.has-teaser .wd-hero-content {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1fr minmax(0, 380px);
  gap: 40px;
  align-items: center;
  text-align: left;
}
.wd-hero.has-teaser .wd-hero-text { text-align: left; }
.wd-hero.has-teaser .wd-hero-subline {
  margin-left: 0; margin-right: 0;
}
.wd-hero-teaser {
  background: rgba(255,255,255,var(--teaser-bg-opacity, 0.92));
  color: var(--color-text);
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(2px);
  text-align: left;
}
.wd-hero-teaser-col h3.wd-hero-teaser-head {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--color-darkgreen);
  margin: 0 0 .35rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,102,51,.15);
  padding-bottom: 3px;
  white-space: nowrap;
  hyphens: none;
  word-break: keep-all;
  transition: color .15s, border-color .15s;
}
.wd-hero-teaser-head-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.wd-hero-teaser-head-link:hover h3.wd-hero-teaser-head {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}
.wd-hero-teaser-col ul { list-style: none; padding: 0; margin: 0; }
.wd-hero-teaser-col li + li { border-top: 1px dashed rgba(0,0,0,.08); }
.wd-hero-teaser-col a {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 8px;
  padding: 4px 4px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 13px;
  border-radius: 4px;
  transition: background-color .15s, color .15s;
}
.wd-hero-teaser-col a:hover { background: var(--color-cream-warm); color: var(--color-darkgreen); }
.wd-hero-teaser-col time {
  font-size: 11px;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: .3px;
  white-space: nowrap;
  align-self: baseline;
  padding-top: 2px;
}
.wd-hero-teaser-title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
}
.wd-hero-teaser-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-darkgreen);
  text-decoration: none;
  letter-spacing: .3px;
  display: inline-block;
  transition: color .15s;
}
.wd-hero-teaser-more:hover { color: var(--color-gold); }
@media (max-width: 900px) {
  .wd-hero.has-teaser .wd-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wd-hero.has-teaser .wd-hero-text { text-align: center; }
  .wd-hero.has-teaser .wd-hero-subline { margin-left: auto; margin-right: auto; }
  /* Auf Handy: Hero mindestens hoch genug für Text oben + Teaser unten */
  .wd-hero.has-teaser {
    min-height: 500px;
    display: flex;
    flex-direction: column;
  }
  .wd-hero.has-teaser .wd-hero-text:empty { display: none; }
  .wd-hero.has-teaser .wd-hero-slide-text {
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(var(--pad-t, 80px) - 30px);
    padding-bottom: 0;
  }
  /* Teaser ans untere Ende — über Flex */
  .wd-hero.has-teaser .wd-hero-content {
    margin-top: auto;
    padding: 0 12px;
  }
  .wd-hero.has-teaser .wd-hero-teaser {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
    max-width: 480px;
    margin: 0 auto;
  }
  .wd-hero.has-teaser .wd-hero-teaser-col h3.wd-hero-teaser-head {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .wd-hero.has-teaser .wd-hero-teaser-col a {
    grid-template-columns: 65px 1fr;
    padding: 3px 4px;
    font-size: 12px;
  }
  .wd-hero.has-teaser .wd-hero-teaser-col time { font-size: 10px; }
}

/* ---------- 8. Buttons ---------- */
.wd-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 46px;
  text-decoration: none;
  transition: background-color .2s, color .2s, transform .15s;
  cursor: pointer;
  border: none;
  letter-spacing: .3px;
}
.wd-btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
}
.wd-btn-gold:hover { background: #a47e1c; color: var(--color-white); }
.wd-btn-darkgreen {
  background: var(--color-darkgreen);
  color: var(--color-cream);
}
.wd-btn-darkgreen:hover { background: var(--color-gold); color: var(--color-white); }

/* ---------- 9. Header ---------- */
.wd-header {
  position: relative;
  z-index: 50;
}
.wd-header-top {
  background: var(--color-darkgreen);
  color: var(--color-cream);
  font-size: 13px;
}
.wd-header-top-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.wd-header-top-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-cream);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.wd-header-top-link:hover { color: var(--color-gold); }
.wd-header-top-link svg { flex-shrink: 0; }
@media (max-width: 600px) {
  .wd-header-top-inner {
    justify-content: center;
    gap: 14px;
    padding: 5px 12px;
    font-size: 12px;
  }
}
.wd-header-bar {
  position: relative;
  background: var(--color-cream-warm);
  padding: var(--header-pad-t, 12px) var(--header-pad-x, 30px) var(--header-pad-b, 30px) var(--header-pad-x, 30px);
  min-height: var(--header-min-h, 180px);
}
.wd-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 24px;
  row-gap: 12px;
  max-width: 1140px;
  margin: 0 auto;
}
.wd-logo       { grid-row: 1; grid-column: 1; }
.wd-header-cta { grid-row: 1; grid-column: 3; justify-self: end; }
.wd-nav        { grid-row: 1; grid-column: 2; justify-self: center; min-width: 0; }
.wd-logo img { max-height: var(--header-logo-h, 140px); width: auto; border-radius: 0; }

.wd-nav-list {
  display: flex; flex-direction: row;
  flex-wrap: wrap;
  gap: 6px var(--header-nav-gap, 22px);
  align-items: center;
  justify-content: center;
}
.wd-nav-list a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-darkgreen);
  letter-spacing: .2px;
  padding: 4px 0 6px;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.wd-nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width .3s ease;
}
.wd-nav-list a:hover,
.wd-nav-list a[aria-current="page"] {
  color: var(--color-gold);
}
.wd-nav-list a:hover::after,
.wd-nav-list a[aria-current="page"]::after {
  width: 100%;
}
.wd-header-cta {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
}
.wd-nav-toggle { display: none; }

/* Hellblau-Streifen unter Header */
.wd-header-stripe {
  position: relative;
  background: var(--color-lightblue);
  height: 8px;
}

/* ---------- 10. Footer ---------- */
.wd-footer {
  position: relative;
  background: var(--color-darkgreen);
  color: var(--color-cream);
  padding: var(--footer-pad-t, 80px) var(--footer-pad-x, 30px) var(--footer-pad-b, 30px);
  margin-top: 0;
}
.wd-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.wd-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "nav recht camp"
    "nav reviews reviews"
    "nav weather weather";
  gap: var(--footer-col-gap, 30px);
  margin-bottom: var(--footer-copy-gap, 30px);
}
.wd-footer-col-nav   { grid-area: nav; }
.wd-footer-col-recht { grid-area: recht; }
.wd-footer-col-camp  { grid-area: camp; }
.wd-footer-grid > .wd-reviews { grid-area: reviews; align-self: stretch; margin: 0; }
.wd-footer-grid > .wd-weather { grid-area: weather; align-self: stretch; margin: 0; }
.wd-footer-col { min-width: 0; }
.wd-footer-col h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-lightblue);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid rgba(200,222,240,0.35);
}
.wd-footer-col p { color: var(--color-cream); margin-bottom: .5rem; font-size: 15px; }
.wd-footer-col a { color: var(--color-cream); }
.wd-footer-col a:hover { color: var(--color-gold); }
.wd-footer-col ul li { margin-bottom: .35rem; font-size: 15px; }
.wd-footer-copy {
  text-align: center;
  font-size: 13px;
  color: var(--color-lightblue);
  margin-top: var(--footer-copy-gap, 30px);
  padding-top: 20px;
  border-top: 1px solid rgba(200,222,240,0.2);
}

/* ---------- 11. Feature-Karten ---------- */
.wd-section-inner > .feature,
.wd-section-inner > .features { /* noop */ }
.wd-feature {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.wd-feature:hover { transform: translateY(var(--card-hover-y)); box-shadow: var(--shadow-card-hover); }
.wd-feature-clickable { cursor: pointer; }
.wd-feature-clickable:hover .wd-feature-heading { color: var(--color-gold); }
.wd-feature-link { color: inherit; display: contents; }
.wd-feature-image { aspect-ratio: 4 / 3; overflow: hidden; }
.wd-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.wd-feature-body { padding: 25px 20px; flex: 1; text-align: center; }
.wd-feature-heading {
  font-family: var(--font-headline);
  font-size: var(--size-h3, 18px);
  color: var(--color-darkgreen);
  margin-bottom: .5rem;
  text-align: center;
}
.wd-feature-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  text-align: center;
}

/* Feature-Karten gruppiert nebeneinander; bei < voller Reihe zentriert */
.wd-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin: 1.5rem 0;
}
.wd-features .wd-feature {
  flex: 0 1 280px;
  max-width: 320px;
}
@media (max-width: 700px) {
  .wd-features .wd-feature { flex-basis: 100%; max-width: 100%; }
}

/* ---------- 11b. Ausrichtungs-Hilfsklassen ---------- */
/* !important damit User-Wahl höher-spezifische Defaults wie .wd-section-inner h2 schlägt */
.text-left    { text-align: left   !important; }
.text-center  { text-align: center !important; }
.text-right   { text-align: right  !important; }
.text-justify { text-align: justify !important; }
.wd-text { line-height: 1.7; }
.wd-text > * + * { margin-top: 1rem; }
.wd-h { font-family: var(--font-headline); font-weight: 700; line-height: 1.2; overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
/* Flüssige Überschriften — skaliert automatisch von Handy bis Desktop, kein abrupter Umbruch */
.wd-h:is(h1) { font-size: clamp(26px, 6vw, var(--size-h1, 44px)); }
.wd-h:is(h2) { font-size: clamp(22px, 4.5vw, var(--size-h2, 32px)); margin-bottom: .5rem; }
.wd-h:is(h3) { font-size: clamp(16px, 2.4vw, var(--size-h3, 20px)); }
.wd-h:is(h4) { font-size: clamp(14px, 2vw, calc(var(--size-h3, 18px) * 0.85)); }

/* ---------- 12. Standard-Block-Inhalte ---------- */
.kt-text p, .wd-section-inner p { line-height: 1.7; margin-bottom: 1rem; }

/* Tabellen (z.B. Preisliste, Rechenbeispiel) */
.wd-text table, .wd-section-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem auto;
  font-size: 15px;
  max-width: 700px;
}
.wd-text table td, .wd-section-inner table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  vertical-align: top;
}
.wd-text table tr:nth-child(even) td,
.wd-section-inner table tr:nth-child(even) td {
  background: var(--color-cream-warm);
}
.wd-text table td:last-child,
.wd-section-inner table td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
  width: 30%;
}
.wd-text table tfoot td,
.wd-section-inner table tfoot td {
  font-style: italic;
  color: var(--color-text-light);
  font-size: 13px;
  background: transparent !important;
  border-bottom: 0;
  font-weight: 400;
}
@media (max-width: 700px) {
  .wd-text table td { padding: 10px 8px; font-size: 14px; }
}

/* Kontakt-Extras: Rezeptionszeiten + WhatsApp-Button */
.wd-contact-extras { max-width: 720px; margin: 0 auto; }
.wd-hours { margin-bottom: 1.5rem; }
.wd-hours h3 { margin-bottom: .75rem; font-size: var(--size-h3, 18px); color: var(--color-darkgreen); }
.wd-hours-list { list-style: none; padding: 0; margin: 0 auto; max-width: 460px; }
.wd-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 8px 14px;
  border-bottom: 1px dashed rgba(0,0,0,.1);
  font-size: 15px;
}
.wd-hours-list li:last-child { border-bottom: 0; }
.wd-hours-day { font-weight: 600; color: var(--color-text); }
.wd-hours-time { color: var(--color-text-light); }

.wd-whatsapp-wrap { text-align: center; margin: .25rem 0 0; }
.wd-btn-whatsapp {
  background: var(--color-darkgreen);
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.wd-btn-whatsapp:hover { background: var(--color-gold); color: var(--color-white); }
.wd-btn-whatsapp::before {
  content: "";
  display: inline-block;
  width: 18px; height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.149-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.71.306 1.263.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347zM12 2C6.477 2 2 6.477 2 12c0 1.892.525 3.66 1.438 5.168L2 22l4.962-1.413A9.96 9.96 0 0012 22c5.523 0 10-4.477 10-10S17.523 2 12 2z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.149-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.71.306 1.263.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347zM12 2C6.477 2 2 6.477 2 12c0 1.892.525 3.66 1.438 5.168L2 22l4.962-1.413A9.96 9.96 0 0012 22c5.523 0 10-4.477 10-10S17.523 2 12 2z'/></svg>") no-repeat center / contain;
}

/* Kontakt-Formular */
.wd-contact-form { max-width: 720px; margin: 0 auto; }
.wd-form { display: flex; flex-direction: column; gap: 1rem; }
.wd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wd-form label { display: flex; flex-direction: column; gap: .35rem; font-size: 14px; color: var(--color-text); }
.wd-form label > span { font-weight: 600; }
.wd-form input[type=text],
.wd-form input[type=email],
.wd-form input[type=tel],
.wd-form input[type=number],
.wd-form input[type=file],
.wd-form select,
.wd-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color .15s, box-shadow .15s;
}
.wd-form input:focus, .wd-form select:focus, .wd-form textarea:focus {
  outline: 0;
  border-color: var(--color-darkgreen);
  box-shadow: 0 0 0 3px rgba(0,102,51,0.15);
}
.wd-form-consent { flex-direction: row !important; align-items: flex-start; gap: .6rem; font-size: 13px; line-height: 1.45; }
.wd-form-consent input { margin-top: 4px; }
.wd-form button { align-self: center; min-width: 220px; margin-top: .5rem; }
.wd-form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
}
.wd-formmsg {
  padding: 14px 18px;
  border-radius: 12px;
  margin: 0 auto 1.5rem;
  max-width: 720px;
  font-size: 15px;
  text-align: center;
}
.wd-formmsg-ok  { background: #e3f2e7; color: #1a4d2e; border: 1px solid #a8d5b4; }
.wd-formmsg-err { background: #fdecea; color: #6b1a14; border: 1px solid #f0a8a0; }
@media (max-width: 700px) {
  .wd-form-row { grid-template-columns: 1fr; }
}

/* === Bewertungs-Widget (Footer rechts) ================================ */
.wd-reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-body);
}
.wd-reviews-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.wd-reviews-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold, #C49A2A);
}
.wd-star {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 0;
}
.wd-star svg { width: 100%; height: 100%; display: block; }
.wd-star-empty { color: rgba(255, 255, 255, 0.18); }
.wd-reviews-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-left: auto;
}
.wd-reviews-rating {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
}
.wd-reviews-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-variant-numeric: tabular-nums;
}
.wd-reviews-quote {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wd-reviews-quote p {
  margin: 0;
  font-style: italic;
  quotes: "„" "" "‚" "";
}
.wd-reviews-quote p::before { content: open-quote; }
.wd-reviews-quote p::after  { content: close-quote; }
.wd-reviews-quote footer {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}
.wd-reviews-author { font-weight: 600; color: rgba(255, 255, 255, 0.7); }
.wd-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-gold, #C49A2A) !important;
  font-size: 11px;
  text-decoration: none;
  letter-spacing: 0.3px;
  margin-top: 2px;
  align-self: flex-start;
}
.wd-reviews-link:hover { color: #fff !important; }
.wd-reviews-link svg { width: 12px; height: 12px; }

@media (max-width: 800px) {
  .wd-reviews { padding: 10px 14px; gap: 6px; }
  .wd-reviews-header { gap: 10px; }
  .wd-star { width: 16px; height: 16px; }
  .wd-reviews-rating { font-size: 16px; }
  .wd-reviews-count { font-size: 10px; }
  .wd-reviews-quote { font-size: 12px; }
}

/* === Wetter-Widget (Footer rechts unten) =============================== */
.wd-weather {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-body);
}
.wd-weather-now {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wd-weather-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-gold, #C49A2A);
}
.wd-weather-icon svg { width: 100%; height: 100%; display: block; }
.wd-weather-now-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wd-weather-temp {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.wd-weather-condition {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
}
.wd-weather-place {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
  line-height: 1.3;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 12px;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.wd-weather-forecast {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 8px;
}
.wd-weather-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  cursor: default;
}
.wd-weather-day-name {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}
.wd-weather-day-icon {
  width: 22px;
  height: 22px;
  color: var(--color-gold, #C49A2A);
}
.wd-weather-day-icon svg { width: 100%; height: 100%; display: block; }
.wd-weather-day-temps {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 600;
  color: #fff;
  font-size: 11px;
}
.wd-weather.is-error { display: none; }
@media (max-width: 800px) {
  .wd-weather { padding: 10px 14px; gap: 8px; }
  .wd-weather-now { flex-wrap: wrap; gap: 10px; }
  .wd-weather-icon { width: 30px; height: 30px; }
  .wd-weather-temp { font-size: 20px; }
  .wd-weather-condition { font-size: 11px; }
  .wd-weather-place {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
    text-align: left;
    width: 100%;
    margin-top: 2px;
    font-size: 10px;
  }
  .wd-weather-forecast { gap: 6px; padding-top: 6px; }
  .wd-weather-day-icon { width: 18px; height: 18px; }
  .wd-weather-day-name { font-size: 9px; }
  .wd-weather-day-temps { font-size: 10px; }
}

/* === 404 Fehlerseite ================================================== */
.wd-error {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.wd-error-code {
  font-family: var(--font-headline);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-darkgreen);
  opacity: 0.18;
  letter-spacing: -4px;
  margin-bottom: 0.3rem;
}
.wd-error-headline {
  font-family: var(--font-headline);
  font-size: 36px;
  color: var(--color-darkgreen);
  margin: 0 0 1.5rem;
  line-height: 1.15;
}
.wd-error-msg {
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.wd-error-suggestions {
  margin: 0 auto 2.5rem;
  max-width: 460px;
  text-align: left;
}
.wd-error-suggestions-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 1rem;
}
.wd-error-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wd-error-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  color: var(--color-darkgreen);
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, color .15s;
}
.wd-error-list a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  color: var(--color-gold);
}
.wd-error-list-arrow {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.wd-error-list-arrow svg { width: 100%; height: 100%; }
.wd-error-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 102, 51, 0.18);
}
.wd-error-cta p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) {
  .wd-error-code { font-size: 90px; }
  .wd-error-headline { font-size: 28px; }
  .wd-error-msg { font-size: 15px; }
}

/* === Newsletter-Seite ================================================== */
.wd-nl-page { max-width: 980px; padding: 0 1rem; }
.wd-nl-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.wd-nl-logo img {
  max-width: 110px;
  height: auto;
  display: inline-block;
}
.wd-nl-title {
  margin-bottom: 0.5rem;
}

.wd-nl-status {
  background: var(--color-white);
  border-radius: 14px;
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  max-width: 600px;
  margin: 2rem auto 0;
}
.wd-nl-status h2 {
  color: var(--color-darkgreen);
  margin-bottom: 1rem;
}

.wd-nl-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.wd-nl-info h3 {
  font-family: var(--font-headline);
  color: var(--color-darkgreen);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 22px;
}
.wd-nl-info h3:first-child { margin-top: 0; }
.wd-nl-info > .wd-text,
.wd-nl-info > div { font-size: 15.5px; line-height: 1.65; color: var(--color-text); }

.wd-nl-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.wd-nl-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--color-text);
  line-height: 1.5;
  font-size: 15.5px;
}
.wd-nl-list li::before {
  content: "✓";
  color: var(--color-darkgreen);
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 8px;
}

.wd-nl-formcard {
  background: var(--color-white);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.wd-nl-form { display: flex; flex-direction: column; gap: 1.4rem; }
.wd-nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wd-nl-label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--color-darkgreen);
  font-size: 14.5px;
}
.wd-nl-label em { color: #c0392b; font-style: normal; }
.wd-nl-label input[type="text"],
.wd-nl-label input[type="email"] {
  padding: 13px 15px;
  border: 1px solid var(--color-border, #d4c69e);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.wd-nl-label input[type="text"]:focus,
.wd-nl-label input[type="email"]:focus {
  outline: none;
  border-color: var(--color-darkgreen);
  box-shadow: 0 0 0 3px rgba(0,102,51,.12);
}
.wd-nl-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--color-text-light);
  line-height: 1.55;
  background: rgba(0, 102, 51, 0.04);
  padding: 14px 16px;
  border-radius: 8px;
}
.wd-nl-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.wd-nl-consent span { padding-top: 1px; }
.wd-nl-consent a { color: var(--color-darkgreen); font-weight: 600; }
.wd-nl-submit {
  margin-top: 0.5rem;
  padding: 14px 28px;
  font-size: 16px;
}
.wd-nl-hint {
  font-size: 12.5px;
  color: var(--color-text-light);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}
.wd-nl-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Mobile-Optimierung */
@media (max-width: 820px) {
  .wd-nl-grid { grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
  .wd-nl-formcard { padding: 1.75rem; order: -1; }
  .wd-nl-formcard + .wd-nl-info { display: none; }
  .wd-nl-info { padding-top: 0.5rem; }
}
@media (max-width: 520px) {
  .wd-nl-page { padding: 0; }
  .wd-nl-logo img { max-width: 80px; }
  .wd-nl-formcard { padding: 1.25rem; border-radius: 10px; }
  .wd-nl-row { grid-template-columns: 1fr; gap: 1rem; }
  .wd-nl-label input[type="text"],
  .wd-nl-label input[type="email"] { font-size: 16px; padding: 12px 14px; }
  .wd-nl-consent { font-size: 12.5px; padding: 12px 14px; gap: 10px; }
}

/* === FAQ-Seite ======================================================== */
.wd-faq {
  max-width: 760px;
  margin: 0 auto;
}
.wd-faq-cat {
  font-family: var(--font-headline);
  color: var(--color-darkgreen);
  margin: 2.5rem 0 1rem;
  font-size: 24px;
  border-bottom: 2px solid var(--color-darkgreen);
  padding-bottom: 8px;
}
.wd-faq-cat:first-child { margin-top: 0; }
.wd-faq-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wd-faq-item {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow .2s;
}
.wd-faq-item[open] {
  box-shadow: var(--shadow-card-hover);
}
.wd-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-weight: 600;
  color: var(--color-darkgreen);
  font-size: 16px;
  line-height: 1.4;
  transition: background .15s;
}
.wd-faq-q::-webkit-details-marker { display: none; }
.wd-faq-q:hover { background: rgba(0,102,51,.04); }
.wd-faq-q-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-darkgreen);
  transition: transform .25s;
}
.wd-faq-item[open] .wd-faq-q-icon { transform: rotate(180deg); }
.wd-faq-a {
  padding: 0 22px 18px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
}
.wd-faq-a p:first-child { margin-top: 0; }
.wd-faq-a p:last-child { margin-bottom: 0; }
.wd-faq-a a {
  color: var(--color-darkgreen);
  text-decoration: underline;
  text-decoration-color: rgba(0,102,51,.4);
  text-underline-offset: 3px;
}
.wd-faq-a a:hover { text-decoration-color: var(--color-darkgreen); }
@media (max-width: 600px) {
  .wd-faq-q { padding: 14px 16px; font-size: 15px; }
  .wd-faq-a { padding: 0 16px 14px; font-size: 14px; }
  .wd-faq-cat { font-size: 20px; margin-top: 2rem; }
}

/* Preise — Tabellen-Optik */
.wd-price-block {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.wd-price-block h2 {
  margin-bottom: 1.25rem;
}
.wd-price-table-wrap {
  border-radius: 14px;
  overflow: hidden;
}
.wd-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white, #fff);
  font-family: var(--font-body);
  font-size: 15px;
}
.wd-price-table thead th {
  background: var(--color-darkgreen);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 18px;
  text-align: left;
}
.wd-price-table thead th:last-child { text-align: right; }
.wd-price-table tr.is-alt td { background: transparent; }
.wd-price-table tbody tr:hover td { background: rgba(0,102,51,.04); }
.wd-price-table tbody td {
  padding: 12px 18px;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-darkgreen);
  color: var(--color-text);
}
.wd-price-table tbody tr:last-child td { border-bottom: 0; }
.wd-price-table td:first-child {
  text-align: left;
  width: 70%;
}
.wd-price-amount {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-darkgreen);
  font-variant-numeric: tabular-nums;
}
.wd-price-table tfoot td {
  font-size: 11px;
  font-style: italic;
  color: var(--color-text-light);
  padding: 7px 18px 10px;
  border-bottom: 0;
  border-top: 1px solid rgba(0,102,51,.12);
  background: rgba(0,102,51,.03);
}
.wd-price-table tfoot td:last-child { text-align: right; }
.wd-price-total td {
  border-top: 2px solid var(--color-darkgreen) !important;
  border-bottom: 0 !important;
  background: rgba(0,102,51,.06) !important;
  font-size: 16px;
}
.wd-price-note {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 1.5rem auto 0;
  padding: 12px 28px;
  background: rgba(0, 102, 51, 0.08);
  color: var(--color-darkgreen);
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  border-radius: 999px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
@media (max-width: 600px) {
  .wd-price-table { font-size: 14px; }
  .wd-price-table td { padding: 10px 12px; }
  .wd-price-table thead th { padding: 7px 12px; }
  .wd-price-note { font-size: 14px; padding: 10px 20px; }
}

/* Kleinanzeigen: Listing + Detail */
.wd-ads {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  justify-content: center;
}
.wd-ads .wd-ad { flex: 0 1 320px; min-width: 280px; }
.wd-ad {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.wd-ad:hover { transform: translateY(var(--card-hover-y)); box-shadow: var(--shadow-card-hover); }
.wd-ad-img { aspect-ratio: 4/3; overflow: hidden; background: var(--color-cream-warm); position: relative; }

/* Demo-Banner: horizontales Goldband unten am Bild */
.wd-ad-demo-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(196,152,52,0.85), rgba(164,126,28,0.95));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
/* Detail-Ansicht: größeres Band */
.wd-ad-demo-banner-large {
  font-size: 22px;
  padding: 22px 20px;
  letter-spacing: 3px;
}
.wd-news-card-cover-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100% - 48px);
  overflow: hidden;
  border-radius: 6px;
  line-height: 0;
}
.wd-news-card-cover-wrap img {
  max-height: 360px !important;
  max-width: 100% !important;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
}
.wd-ad-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wd-ad-img-empty {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-cream-warm), var(--color-cream));
  font-family: var(--font-headline); font-size: 18px; color: var(--color-darkgreen);
  letter-spacing: .5px;
}
.wd-ad-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; text-align: center; }
.wd-ad-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: 13px;
}
.wd-ad-meta time { color: var(--color-text-light); }
.wd-ad-topic {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.wd-ad-topic-verkauf     { background: var(--color-darkgreen); color: var(--color-cream); }
.wd-ad-topic-verschenken { background: var(--color-gold); color: var(--color-cream); }
.wd-ad-topic-suche       { background: var(--color-lightblue); color: var(--color-darkgreen); }
.wd-ad-topic-tausch      { background: #4CAF50; color: var(--color-cream); }
.wd-ad-title { font-family: var(--font-headline); font-size: 20px; color: var(--color-darkgreen); margin: 4px 0 8px; }
.wd-ad-price { font-weight: 700; color: var(--color-gold); font-size: 17px; margin: 0 0 8px; }
.wd-ad-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.55;
  flex: 1;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Detail */
.wd-ad-detail { max-width: 820px; }
.wd-ad-meta-large { justify-content: center; gap: 1rem; margin: 1rem 0; font-size: 14px; }
.wd-ad-price-large {
  text-align: center;
  font-size: 28px;
  color: var(--color-gold);
  font-weight: 700;
  margin: .5rem 0 1rem;
}
.wd-ad-contact {
  margin: 2rem auto 0;
  max-width: 540px;
  background: var(--color-cream-warm);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  font-size: 16px;
}

/* News-Beiträge: Übersicht + Detail + Teaser */
.wd-news-teaser { max-width: 880px; margin: 0 auto; }
.wd-news-teaser h2 { margin-bottom: 1.5rem; }
.wd-posts {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  justify-content: center;
}
.wd-posts .wd-post { flex: 0 1 320px; min-width: 280px; max-width: 100%; display: flex; }
.wd-post {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform .2s, box-shadow .2s;
}
.wd-post:hover { transform: translateY(var(--card-hover-y)); box-shadow: var(--shadow-card-hover); }
.wd-post-link { color: inherit; display: flex; flex-direction: column; height: 100%; flex: 1; }
.wd-post-body { flex: 1; }
.wd-post-cover { margin: 16px 0 0; text-align: center; }
.wd-post-cover img { max-height: 175px; max-width: calc(100% - 32px); height: auto; width: auto; display: inline-block; border: 1px solid var(--color-darkgreen); border-radius: 6px; }
/* PDF-Cover in Listing-Kachel — selbe Höhe wie JPG-Cover (175px),  */
/* plus grüner Rahmen + weißes Innen-Padding für den getrimmten PDF.*/
.wd-post-cover.is-pdf {
  margin: 16px 0 0;
  text-align: center;
  background: transparent;
}
.wd-post-cover.is-pdf img {
  max-height: 175px;
  max-width: calc(100% - 32px);
  height: auto;
  width: auto;
  display: inline-block;
  border: 1px solid var(--color-darkgreen);
  border-radius: 6px;
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
  object-fit: contain;
}
.wd-post-body { padding: 14px 26px 22px; display: flex; flex-direction: column; text-align: center; align-items: center; }
.wd-post-cover + .wd-post-body,
.wd-post-cover.is-pdf + .wd-post-body { padding-top: 10px; }
.wd-post-date {
  font-size: 13px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.wd-post-title,
.wd-posts .wd-post-title,
.wd-section-inner .wd-post-title {
  font-family: var(--font-headline) !important;
  color: var(--color-darkgreen) !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  margin: 6px 0 10px !important;
  text-align: center !important;
}
.wd-post-excerpt {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
.wd-post-extra {
  display: none;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.55;
  flex: 1;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  line-clamp: 7;
  overflow: hidden;
}
.wd-post--row-has-cover .wd-post-excerpt { display: none; }
.wd-post--row-has-cover .wd-post-extra { display: -webkit-box; }
.wd-post-more { color: var(--color-darkgreen); font-weight: 600; margin-top: auto; padding-top: 14px; font-size: 14px; }
.wd-post:hover .wd-post-more { color: var(--color-gold); }

/* News-Detail */
.wd-news-detail { max-width: 820px; }

/* Archiv-Toggle unter der Aktuelles-Liste */
.wd-archiv-toggle { text-align: center; margin: 2.5rem 0 0; }
.wd-posts .wd-post.is-hidden { display: none; }
/* Aufslide-Animation für neu enthüllte Beiträge */
.wd-posts .wd-post {
  transition: opacity 1.6s ease, transform 1.6s ease;
}
.wd-posts .wd-post.is-revealing {
  opacity: 0;
  transform: translateY(40px);
}

/* Toolbar oberhalb des Beitrags: Zurück-Pill links, Vor/Zurück-Pfeile rechts */
.wd-post-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 1.5rem;
}
.wd-post-toolbar .wd-post-back-pill { max-width: none; margin: 0; }
.wd-post-pn { display: inline-flex; gap: 8px; }
.wd-post-pn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--color-darkgreen);
  color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color .2s, transform .15s, box-shadow .2s;
}
.wd-post-pn-pill:hover {
  background: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.wd-post-pn-pill svg { width: 18px; height: 18px; display: block; }

/* Zurück-Pill */
.wd-post-back-pill {
  max-width: 920px;
  margin: 0 auto 1.5rem;
}
.wd-post-back-pill a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 14px;
  background: var(--color-darkgreen);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  color: var(--color-cream);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background-color .2s, color .2s, transform .15s, box-shadow .2s;
}
.wd-post-back-pill a:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateX(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.wd-post-back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.22);
  color: inherit;
  border-radius: 50%;
  flex-shrink: 0;
}
.wd-post-back-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}
/* Alte Version (legacy) — nur für Elemente die NICHT die Pill-Variante nutzen */
.wd-post-back:not(.wd-post-back-pill) a { font-size: 14px; color: var(--color-text-light); }
.wd-post-back:not(.wd-post-back-pill) a:hover { color: var(--color-darkgreen); }

/* News-Detail-Karte */
.wd-news-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.wd-news-card-cover {
  margin: 24px 0 0;
  text-align: center;
}
.wd-news-card-cover a {
  display: inline-block;
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wd-news-card-cover a:hover,
.wd-news-card-cover a:focus {
  transform: translateY(-2px);
}
.wd-news-card-cover a:hover img,
.wd-news-card-cover a:focus img {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.wd-news-card-cover img {
  max-height: 360px;
  max-width: calc(100% - 48px);
  height: auto;
  width: auto;
  display: inline-block;
  border: 1px solid var(--color-darkgreen);
  border-radius: 6px;
}
/* PDF als Titelbild im Detail — eigene Container-Klasse */
.wd-news-card-pdf-cover {
  max-width: 240px;
  margin: 24px auto 0;
  text-align: center;
}
.wd-news-card-pdf-cover a {
  display: block;
  border: 1px solid var(--color-darkgreen);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  padding: 12px;
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wd-news-card-pdf-cover a:hover,
.wd-news-card-pdf-cover a:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.wd-news-card-pdf-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.wd-news-card-body {
  padding: 32px 48px 44px;
}
.wd-news-card-body .wd-post-date-large {
  margin-top: 0;
  margin-bottom: .25rem;
}
.wd-news-card-title {
  font-size: clamp(18px, 3vw, 24px) !important;
  margin: .25rem 0 1.5rem !important;
}
@media (max-width: 700px) {
  .wd-news-card-body { padding: 24px 22px 32px; }
}
.wd-post-date-large {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 15px;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.wd-news-cover {
  margin: 1.5rem 0 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
}
.wd-news-cover img { width: 100%; height: auto; max-height: 480px; object-fit: cover; display: block; }
.wd-news-body { font-size: 16px; line-height: 1.7; }
.wd-news-body-align-center,
.wd-news-body-align-center p,
.wd-news-body-align-center ul,
.wd-news-body-align-center ol,
.wd-news-body-align-center h2,
.wd-news-body-align-center h3,
.wd-news-body-align-center h4 { text-align: center; }
.wd-news-body-align-center ul,
.wd-news-body-align-center ol { list-style-position: inside; padding-left: 0; }
.wd-news-body-align-left,
.wd-news-body-align-left p,
.wd-news-body-align-left h2,
.wd-news-body-align-left h3,
.wd-news-body-align-left h4 { text-align: left; }
.wd-news-body-align-left ul,
.wd-news-body-align-left ol {
  text-align: left;
  list-style-position: outside;
  padding-left: 1.6em;
  margin-left: 0;
}
.wd-news-body-align-left ul { list-style-type: disc; }
.wd-news-body-align-left ol { list-style-type: decimal; }
.wd-news-body-align-left li { padding-left: .25em; margin-bottom: .25em; }
.wd-news-body-align-left li > ul,
.wd-news-body-align-left li > ol { margin-top: .25em; }

.wd-news-body-align-right,
.wd-news-body-align-right p,
.wd-news-body-align-right h2,
.wd-news-body-align-right h3,
.wd-news-body-align-right h4 { text-align: right; }
.wd-news-body-align-right ul,
.wd-news-body-align-right ol {
  text-align: right;
  list-style-position: inside;
  padding-right: 0;
  padding-left: 0;
}

/* Mini-Galerie unter dem Beitrag */
.wd-news-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.wd-news-gallery a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--color-darkgreen);
  border-radius: 6px;
  transition: transform .2s, box-shadow .2s;
}
.wd-news-gallery a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
}
.wd-news-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* PDF-Kachel mit Badge */
.wd-news-pdf-tile {
  position: relative;
  background: var(--color-cream-warm);
}
.wd-news-pdf-tile img,
.wd-news-pdf-tile svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
}
.wd-news-pdf-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(192, 57, 43, .9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 4px;
  pointer-events: none;
}

/* Home-Teaser: Aktuelles + Kleinanzeigen-Vorschau */
.wd-home-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .wd-home-teaser { grid-template-columns: 1fr; gap: 24px; }
}
.wd-home-teaser-col {
  background: var(--color-white);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
}
.wd-home-teaser-head {
  font-family: var(--font-headline);
  color: var(--color-darkgreen);
  font-size: 20px;
  margin: 0 0 .75rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,102,51,.12);
  padding-bottom: .5rem;
}
.wd-home-teaser-list { list-style: none; padding: 0; margin: 0 0 1rem; flex: 1; }
.wd-home-teaser-list li + li { border-top: 1px dashed rgba(0,0,0,.08); }
.wd-home-teaser-list a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 10px 4px;
  color: var(--color-text);
  text-decoration: none;
  transition: color .15s, background-color .15s;
  font-size: 14px;
  border-radius: 6px;
}
.wd-home-teaser-list a:hover {
  background: var(--color-cream-warm);
  color: var(--color-darkgreen);
}
.wd-home-teaser-list time {
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: .3px;
  white-space: nowrap;
}
.wd-home-teaser-title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
}
.wd-home-teaser-arrow {
  color: var(--color-darkgreen);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform .15s;
}
.wd-home-teaser-list a:hover .wd-home-teaser-arrow {
  transform: translateX(3px);
  color: var(--color-gold);
}
.wd-home-teaser-more { text-align: center; margin: 0; }
.wd-home-teaser-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--color-darkgreen);
  color: var(--color-cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background-color .2s, color .2s, transform .15s;
}
.wd-home-teaser-pill:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateX(2px);
}
.wd-home-teaser-pill svg { width: 14px; height: 14px; }

/* Latest-News-Teaser auf Home */
.wd-latest-news { max-width: 1100px; margin: 0 auto; }
.wd-latest-news h2 { margin-bottom: 1.5rem; text-align: center; }
.wd-latest-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.wd-latest-grid.is-multi { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.wd-latest-item {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.wd-latest-item:hover { transform: translateY(var(--card-hover-y)); box-shadow: var(--shadow-card-hover); }
.wd-latest-grid:not(.is-multi) .wd-post-link { display: grid; grid-template-columns: 320px 1fr; }
@media (max-width: 700px) {
  .wd-latest-grid:not(.is-multi) .wd-post-link { grid-template-columns: 1fr; }
}
.wd-latest-cta { text-align: center; margin-top: 1.5rem; }

/* Karten-Block (Leaflet/OpenStreetMap) */
.wd-map-wrap { clear: both; margin: 1.5rem 0; }
.wd-map {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.10);
  background: linear-gradient(135deg, var(--color-lightblue), var(--color-cream));
  position: relative;
}

/* Consent-Overlay vor Karten-Aktivierung */
.wd-map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  gap: .75rem;
  color: var(--color-text);
}
.wd-map-consent h3 {
  margin: 0;
  font-family: var(--font-headline);
  color: var(--color-darkgreen);
  font-size: var(--size-h3, 18px);
}
.wd-map-consent p { max-width: 460px; margin: 0; line-height: 1.55; font-size: 14px; }
.wd-map-consent .wd-btn { margin-top: .25rem; }
.wd-map-consent-info { font-size: 13px !important; color: var(--color-text-light); }
.wd-map-consent-info a { color: var(--color-darkgreen); text-decoration: underline; }
.wd-routes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.wd-routes-label { font-weight: 600; margin-right: .5rem; color: var(--color-text); }
.wd-routes .wd-btn { padding: 8px 16px; font-size: 13px; }

/* Standalone Routenplaner-Block (mit eigener Box) */
.wd-routes-standalone {
  clear: both;
  margin: 1.5rem auto;
  max-width: 720px;
  text-align: center;
}
.wd-routes-standalone h3 { margin-bottom: 1rem; color: var(--color-darkgreen); }
.wd-routes-standalone .wd-routes-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* Leaflet-Popup an Site-Stil anpassen */
.leaflet-popup-content-wrapper { border-radius: 10px !important; }
.leaflet-popup-content { font-family: var(--font-body); font-size: 14px; line-height: 1.55; }

/* Download-Liste */
.wd-downloads { list-style: none; padding: 0; margin: 1.5rem auto; max-width: 760px; }
.wd-downloads li {
  background: var(--color-white);
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .15s, box-shadow .15s;
  overflow: hidden;
}
.wd-downloads li:hover { transform: translateY(var(--card-hover-y)); box-shadow: var(--shadow-card-hover); }
.wd-download-link {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 20px;
  color: inherit;
  text-decoration: none;
}
.wd-download-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 80px;
  background: var(--color-cream-warm);
  border: 1px solid var(--color-darkgreen);
  border-radius: 6px;
  overflow: hidden;
}
.wd-download-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wd-download-thumb svg { width: 40px; height: 50px; }
.wd-download-text { color: var(--color-text); line-height: 1.4; }
.wd-download-text strong { font-size: 17px; color: var(--color-darkgreen); font-family: var(--font-headline); font-weight: 700; }
.wd-download-desc { font-size: 14px; color: var(--color-text-light); }
.wd-download-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-darkgreen);
  font-weight: 600;
  white-space: nowrap;
  transition: color .15s, transform .15s;
}
.wd-download-cta svg {
  width: 14px !important;
  height: 14px !important;
  flex: 0 0 14px;
  display: inline-block;
}
.wd-downloads li:hover .wd-download-cta { color: var(--color-gold); transform: translateX(2px); }
@media (max-width: 600px) {
  .wd-download-link { grid-template-columns: 56px 1fr; gap: 14px; padding: 12px 14px; }
  .wd-download-thumb { width: 56px; height: 70px; }
  .wd-download-cta { grid-column: 1 / -1; text-align: right; padding-top: 4px; border-top: 1px solid rgba(0,0,0,.06); }
}

/* Liste (Custom-Block) — startet unter Float-Bildern, zentriert 2-spaltig */
.wd-list {
  clear: both;
  line-height: 1.8;
  margin: 1.75rem auto;
  max-width: 640px;
}
.wd-list ul, .wd-list ol { padding-left: 1.5rem; margin: 0; }
.wd-list li { margin-bottom: .35rem; }
.wd-list a { color: var(--color-darkgreen); border-bottom: 1px dotted currentColor; }
.wd-list a:hover { color: var(--color-gold); }

/* Zentrierte Listen: 2 Spalten, gold-Bullet, Items linksbündig in der Spalte */
.wd-list.text-center ul,
.wd-list.text-center ol {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 2.5rem;
  text-align: left;
}
.wd-list.text-center li {
  break-inside: avoid;
  padding-left: 1.1em;
  position: relative;
  margin-bottom: .4rem;
}
.wd-list.text-center li::before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}
@media (max-width: 900px) {
  .wd-list.text-center ul,
  .wd-list.text-center ol { columns: 1; }
  .wd-list.text-center li { text-align: center; padding-left: 0; }
  .wd-list.text-center li::before { display: none; }
}

/* Features-Container ebenfalls clear damit er unter Floats startet */
.wd-features { clear: both; }

/* Galerie (Bilderreihe mit Lightbox) */
.wd-gallery {
  clear: both;
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: 14px;
  margin: 2rem 0;
}
.wd-gallery-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: var(--ratio, 4 / 3);
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.wd-gallery-item:hover { transform: translateY(var(--card-hover-y)); box-shadow: var(--shadow-card-hover); }
.wd-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .wd-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.kt-quote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1rem;
  font-style: italic;
  color: var(--color-text-light);
  margin: 1.25rem 0;
}

/* WaldeckImage als weiße Karte (Optik wie Feature-Karte) */
.content-figure {
  margin: 1.5rem 0 2rem;
  background: var(--color-white);
  padding: 0;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: block;
  transition: transform .25s, box-shadow .25s;
}
.content-figure:hover { transform: translateY(var(--card-hover-y)); box-shadow: var(--shadow-card-hover); }
.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}
.content-figure figcaption {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-light);
  padding: 18px 20px;
  font-style: normal;
  text-align: center;
  line-height: 1.55;
}
.content-figure.is-left  { float: left;  max-width: 280px; margin: .5rem 2rem 1.5rem 0; }
.content-figure.is-right { float: right; max-width: 280px; margin: .5rem 0 1.5rem 2rem; }
.content-figure.is-left img,
.content-figure.is-right img {
  max-height: 200px;
  object-fit: cover;
}
.wd-main h2, .wd-section-inner h2 { clear: both; }

/* ---------- Umfeld-Sektionen: Bild + Text als Flex-Reihe, vertikal mittig ---------- */
.wd-umfeld-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 0;
}
.wd-umfeld-row.is-right { flex-direction: row-reverse; }
.wd-umfeld-row figure {
  flex: 0 0 300px;
  margin: 0;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.wd-umfeld-row figure img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.wd-umfeld-row figure figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.45;
}
.wd-umfeld-row .wd-umfeld-body {
  flex: 1;
  text-align: left;
}
.wd-umfeld-row.is-right .wd-umfeld-body,
.wd-umfeld-row.is-right .wd-umfeld-body h2,
.wd-umfeld-row.is-right .wd-umfeld-body p,
.wd-umfeld-row.is-right .wd-umfeld-body ul {
  text-align: right;
}
.wd-umfeld-row .wd-umfeld-body h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-headline);
  color: var(--color-darkgreen);
  text-align: inherit;
}
.wd-umfeld-row.is-right .wd-umfeld-body h2 { text-align: right; }
.wd-umfeld-row .wd-umfeld-body p {
  margin: 0 0 0.75rem;
}
.wd-umfeld-row .wd-umfeld-body ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}
.wd-umfeld-row.is-right .wd-umfeld-body ul {
  padding-left: 0;
  padding-right: 1.5rem;
  list-style-position: inside;
}
@media (max-width: 760px) {
  .wd-umfeld-row, .wd-umfeld-row.is-right { flex-direction: column; }
  .wd-umfeld-row figure { flex: 0 0 auto; max-width: 320px; margin: 0 auto; }
  /* Mobile: alles zentriert */
  .wd-umfeld-row .wd-umfeld-body,
  .wd-umfeld-row .wd-umfeld-body h2,
  .wd-umfeld-row .wd-umfeld-body p,
  .wd-umfeld-row .wd-umfeld-body ul,
  .wd-umfeld-row.is-right .wd-umfeld-body,
  .wd-umfeld-row.is-right .wd-umfeld-body h2,
  .wd-umfeld-row.is-right .wd-umfeld-body p,
  .wd-umfeld-row.is-right .wd-umfeld-body ul {
    text-align: center;
  }
  .wd-umfeld-row .wd-umfeld-body ul {
    list-style-position: inside;
    padding-left: 0;
    padding-right: 0;
  }
}
.content-figure.is-center { max-width: 600px; margin: 2rem auto; }
.content-figure.is-full  { max-width: 100%; margin: 2rem 0; }

/* ---------- 12c. Cookie-Banner ---------- */
.wd-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  background: var(--color-cream);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
}
.wd-consent[hidden] { display: none; }
.wd-consent-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  padding: 14px 18px;
}
.wd-consent-msg { flex: 1; color: var(--color-text); margin: 0; }
.wd-consent-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.wd-consent-link {
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: underline;
}
.wd-consent-link:hover { color: var(--color-darkgreen); }
.wd-consent-accept,
.wd-consent-deny {
  padding: 8px 18px;
  font-size: 13px;
  white-space: nowrap;
}
.wd-consent-deny {
  background: transparent;
  color: var(--color-darkgreen);
  border: 2px solid var(--color-darkgreen);
}
.wd-consent-deny:hover {
  background: var(--color-darkgreen);
  color: var(--color-cream);
}
@media (max-width: 700px) {
  .wd-consent-inner { flex-direction: column; align-items: stretch; gap: .75rem; padding: 12px 14px; }
  .wd-consent-actions { justify-content: space-between; }
}

/* Zwischen-Breakpoint: Nav etwas kompakter, damit weniger Zeilen entstehen */
@media (max-width: 1100px) {
  .wd-header-bar  { min-height: var(--header-tab-min-h, 150px); }
  .wd-header-inner { column-gap: 16px; }
  .wd-nav-list { gap: 4px 14px; }
  .wd-nav-list a { font-size: 13px; letter-spacing: .2px; }
  .wd-logo img { max-height: var(--header-tab-logo-h, 110px); }
}
@media (max-width: 860px) {
  .wd-header-bar  { min-height: var(--header-sm-min-h, 120px); }
  .wd-header-inner { column-gap: 12px; }
  .wd-nav-list { gap: 4px 10px; }
  .wd-nav-list a { font-size: 12px; }
  .wd-logo img { max-height: var(--header-sm-logo-h, 90px); }
  .wd-header-cta { padding: 8px 14px; font-size: 12px; }
}

/* ---------- 13. Responsive (Hamburger erst bei sehr schmalem Viewport) ---------- */
@media (max-width: 640px) {
  /* Header */
  .wd-header-bar {
    padding: var(--header-mob-pad-t, 12px)
             var(--header-mob-pad-x, 16px)
             var(--header-mob-pad-b, 20px);
    min-height: var(--header-mob-min-h, 0);
  }
  .wd-header-inner {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
    column-gap: 0;
    row-gap: 0;
  }
  /* Grid-Positions vom Desktop zurücksetzen */
  .wd-logo, .wd-header-cta, .wd-nav {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
  }
  /* Reihenfolge auf Mobile: Logo | CTA | Burger */
  .wd-logo       { order: 1; }
  .wd-header-cta { order: 2; }
  .wd-nav        { order: 3; }
  .wd-logo img { max-height: var(--header-mob-logo-h, 70px); }

  /* Burger-Toggle: prominenter Pill mit dunkelgrünem Hintergrund */
  .wd-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--color-darkgreen);
    border: 0;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    transition: background-color .2s, transform .2s, box-shadow .2s;
    position: relative;
    z-index: 110;
  }
  .wd-nav-toggle:hover { background: var(--color-gold); transform: scale(1.05); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
  .wd-nav-toggle:active { transform: scale(.96); }
  .wd-nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--color-cream);
    border-radius: 2px;
    transition: transform .3s cubic-bezier(.65,.05,.36,1), opacity .2s;
    transform-origin: center;
  }
  /* Beim Öffnen: oberer und unterer Strich kreuzen sich, mittlerer fadet */
  .wd-nav.is-open .wd-nav-toggle { background: var(--color-gold); }
  .wd-nav.is-open .wd-nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .wd-nav.is-open .wd-nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .wd-nav.is-open .wd-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Schwebendes Mini-Menü: kompaktes Panel rechts oben unterhalb des Burgers */
  .wd-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: calc(var(--header-mob-pad-t, 12px) + 60px);
    right: var(--header-mob-pad-x, 16px);
    width: min(78vw, 280px);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: var(--color-darkgreen);
    border-radius: 16px;
    padding: 8px 0;
    margin: 0;
    z-index: 105;
    box-shadow: 0 12px 40px rgba(0,0,0,.30);
    transform: translateY(-12px) scale(.96);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .25s, visibility 0s linear .25s;
  }
  .wd-nav.is-open .wd-nav-list {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .25s, visibility 0s linear 0s;
  }

  /* Backdrop hinter dem Menü — dezent */
  .wd-nav.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.25);
    z-index: 100;
    animation: wd-fade-in .25s ease forwards;
  }
  @keyframes wd-fade-in { from { opacity: 0; } to { opacity: 1; } }

  /* Items kompakt */
  .wd-nav-list li { width: 100%; }
  .wd-nav-list a {
    display: block;
    padding: 11px 18px;
    color: var(--color-cream);
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .2px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color .15s, background-color .15s, padding-left .15s;
  }
  .wd-nav-list li:last-child a { border-bottom: 0; }
  .wd-nav-list a:hover {
    color: var(--color-gold);
    background: rgba(0,0,0,.18);
    padding-left: 22px;
  }
  .wd-nav-list a[aria-current="page"] {
    color: var(--color-gold);
    background: rgba(0,0,0,.18);
  }
  /* Body-Scroll deaktivieren wenn Menü offen (Klasse via JS) */
  body.wd-no-scroll { overflow: hidden; }

  /* CTA-Button in der Mitte zwischen Logo und Burger */
  .wd-header-cta {
    padding: 10px 18px;
    font-size: 13px;
    margin: 0 auto;
  }

  /* Sektionen + Hero: schmaleres Padding seitlich */
  .wd-section { padding-left: 16px; padding-right: 16px; padding-top: 40px; padding-bottom: 40px; }
  .wd-hero    { padding-left: 16px; padding-right: 16px; }

  /* Schriftgrößen auf Mobile */
  .wd-hero-headline   { font-size: calc(var(--size-h1, 44px) * 0.7); }
  .wd-hero-subline    { font-size: 15px; }
  /* h2-Größe wird global per clamp() geregelt — keine Mobile-Override mehr nötig */

  /* Footer auf Mobile: Padding-Override + Spalten untereinander mit eigenem Gap */
  .wd-footer {
    padding: var(--footer-mob-pad-t, 50px)
             var(--footer-mob-pad-x, 20px)
             var(--footer-mob-pad-b, 24px);
  }
  .wd-footer-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-areas: none;
    gap: var(--footer-mob-col-gap, 16px);
  }
  .wd-footer-col,
  .wd-footer-grid > .wd-weather,
  .wd-footer-grid > .wd-reviews {
    flex: 0 0 auto;
    min-width: 0;
    align-self: stretch;
  }
  .section-wave   { height: calc(var(--wave-h, 50px) * 0.65); }

  /* Bilder zentriert, kein Float */
  .content-figure.is-left,
  .content-figure.is-right,
  .content-figure.is-center,
  .content-figure.is-full {
    float: none !important;
    max-width: 92% !important;
    margin: 1.5rem auto !important;
    display: block;
  }
  /* Auf Mobile NICHT mehr alles zwingend zentrieren — die text-* Klassen entscheiden */
  .wd-text:not([class*="text-"]) { text-align: center; }
  .wd-h:not([class*="text-"])    { text-align: center; }
}

/* ============================================================
   Bild-Credit-Overlays für Fremdbilder (Source-Feld)
   Nur bei Hover sichtbar. Klickbare Quellen-Links gibt es auf
   der Bildnachweise-Seite. Hier ist es ein reiner Hinweis.
   ============================================================ */
.wd-img-wrap {
  position: relative;
}
.wd-img-credit {
  position: absolute;
  bottom: 4px;
  right: 4px;
  z-index: 2;
  max-width: calc(100% - 8px);
  padding: 1px 5px;
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 9px;
  line-height: 1.3;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 2px;
  letter-spacing: 0.2px;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.4;
  transition: opacity 0.2s ease, background 0.2s ease;
}
/* Bei Hover über dem ELTERN-Container voll sichtbar */
.wd-img-wrap:hover .wd-img-credit,
.content-figure:hover .wd-img-credit,
.wd-feature-image:hover .wd-img-credit,
.wd-gallery-cell:hover .wd-img-credit {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}
/* Bei content-figure (waldeckImage) und feature-image positionieren */
.content-figure,
.wd-feature-image,
.wd-gallery-cell {
  position: relative;
}
.content-figure .wd-img-credit,
.wd-feature-image .wd-img-credit,
.wd-gallery-cell .wd-img-credit {
  font-size: 8px;
  bottom: 3px;
  right: 3px;
}
/* Auf Touch-Geräten ohne Hover: dezent permanent eingeblendet */
@media (hover: none) {
  .wd-img-credit { opacity: 0.5; }
}

/* ============================================================
   Bildnachweise-Seite — automatische Tabelle
   ============================================================ */
.wd-bildnachweise {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.wd-bildnachweise h1 { margin-bottom: 1rem; }
.wd-bn-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-light);
}
.wd-h-sub {
  font-family: var(--font-headline);
  color: var(--color-darkgreen);
  font-size: clamp(15px, 2.5vw, 26px);
  margin: 2.5rem 0 1.25rem;
}
@media (max-width: 600px) {
  .wd-h-sub {
    font-size: 16px;
    margin: 1.75rem 0 1rem;
  }
}
.wd-bn-table-wrap {
  overflow-x: auto;
  margin: 0 auto 2.5rem;
}
.wd-bn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}
.wd-bn-table thead th {
  background: var(--color-cream-warm);
  color: var(--color-darkgreen);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 10px 12px;
  border-bottom: 2px solid var(--color-darkgreen);
  white-space: nowrap;
}
.wd-bn-table .wd-bn-th-link,
.wd-bn-table .wd-bn-td-link { text-align: right; }
.wd-bn-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-darkgreen);
  vertical-align: middle;
}
.wd-bn-table tbody tr:last-child td { border-bottom: 0; }
.wd-bn-table tbody tr:hover { background: rgba(0, 102, 51, 0.04); }
.wd-bn-td-img img {
  display: block;
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-border, rgba(0,0,0,0.1));
}
.wd-bn-td-desc {
  color: var(--color-text);
  font-size: 12px;
  max-width: 240px;
}
.wd-bn-td-page a,
.wd-bn-td-link a,
.wd-bn-lic-link {
  color: var(--color-darkgreen);
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  font-size: 12px;
  white-space: nowrap;
}
.wd-bn-td-page a:hover,
.wd-bn-td-link a:hover,
.wd-bn-lic-link:hover { color: var(--color-gold); }
.wd-bn-td-credit { font-size: 12px; color: var(--color-text-light); }
.wd-bn-td-credit .wd-bn-lic-link {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--color-text-light);
}
.wd-bn-empty { color: rgba(0,0,0,0.25); }
.wd-bn-own,
.wd-bn-footnote {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
}
.wd-bn-footnote {
  margin-top: 2rem;
  font-size: 13px;
  font-style: italic;
}
@media (max-width: 700px) {
  .wd-bn-table {
    font-size: 12px;
  }
  .wd-bn-table thead th {
    font-size: 11px;
    padding: 8px 8px;
  }
  .wd-bn-table tbody td {
    padding: 8px 8px;
  }
  .wd-bn-td-img img {
    width: 64px;
    height: 44px;
  }
  .wd-bn-td-desc { max-width: 160px; }
}

/* Print-Footer: Kontakt-Block — nur sichtbar beim Drucken */
.wd-print-footer { display: none; }

/* === Druck-Stylesheet ================================================== */
/* Sauberes A4-Layout ohne dekorative Banner, Hero, Header-Nav. Voller    */
/* Inhalt, dunkler Text auf Weiß. URLs hinter Links sichtbar machen.      */
@media print {
  /* Reset auf Weiß-Schwarz, kein Schatten */
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }

  body { font-size: 11pt; line-height: 1.4; font-family: Georgia, "Times New Roman", serif; }

  /* Verstecken: Header-Navigation, Footer, dekorative Banner, Buttons, Cookie-Banner */
  .wd-header,
  .wd-footer,
  .wd-banner,
  .page-banner,
  .wd-trenner,
  .wd-trenner svg,
  .wd-hero,
  .wd-hero-slide,
  .wd-consent-banner,
  .wd-back-to-top,
  .wd-nav-toggle,
  .wd-nav,
  nav,
  .wd-btn,
  .wd-cta,
  .header-cta,
  form,
  .wd-form,
  .wd-formmsg,
  .wd-post-toolbar,
  .wd-post-back,
  .wd-post-pn,
  .wd-img-credit,
  iframe,
  video,
  audio,
  .wd-map,
  #map { display: none !important; }

  /* Volle Breite für Inhalt */
  .wd-main, .wd-section, .wd-section-inner, main, article {
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Headlines schwarz und klar */
  h1, h2, h3, h4, .wd-h {
    color: #000 !important;
    page-break-after: avoid;
    margin-top: 1em;
    margin-bottom: 0.3em;
  }
  h1 { font-size: 22pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 13pt; }

  /* URLs hinter Links sichtbar machen — wichtig für Print-Outs */
  a[href]:not([href^="#"]):not([href^="javascript"]):after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
    word-break: break-all;
  }
  /* Aber nur für externe/navigierbare Links — nicht für Bilder */
  a[href^="mailto:"]:after, a[href^="tel:"]:after { content: ""; }

  /* Bilder sauber einbetten, nicht zu groß */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }

  /* Tabellen — Preise, FAQ etc. */
  table { width: 100% !important; border-collapse: collapse !important; page-break-inside: auto; }
  thead { display: table-header-group; }
  tr, td, th { page-break-inside: avoid; }
  th, td { padding: 6px 10px !important; border: 1px solid #888 !important; }
  thead th { background: #eee !important; }

  /* FAQ — alle Antworten ausgeklappt zeigen */
  .wd-faq-item, details { box-shadow: none !important; border: 1px solid #ccc !important; margin-bottom: 8pt; }
  details > summary { list-style: none; pointer-events: none; }
  details[open] > * { display: block !important; }
  details:not([open]) > *:not(summary) { display: block !important; }
  .wd-faq-q-icon { display: none !important; }
  .wd-faq-q { font-weight: 700; }
  .wd-faq-a { padding-top: 4pt !important; }

  /* Preis-Tabellen prominent */
  .wd-price-table-wrap { margin: 6pt 0; }
  .wd-price-table thead th { background: #ddd !important; color: #000 !important; }
  .wd-price-amount { font-weight: 700; }
  .wd-price-note { font-style: italic; background: none !important; padding: 4pt 0 !important; }

  /* Vermeidet abgeschnittene Absätze über Seitenwechsel */
  p, li, blockquote { orphans: 3; widows: 3; }

  /* Print-Footer: Kontakt-Block am Seitenende, fix unten */
  .wd-print-footer {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6pt 1.5cm;
    border-top: 1pt solid #006633 !important;
    color: #000 !important;
    background: #fff !important;
    font-size: 9pt;
    font-family: Georgia, "Times New Roman", serif;
    text-align: center;
    line-height: 1.4;
  }
  .wd-print-footer strong {
    color: #006633 !important;
    font-weight: 700;
  }
  /* Platz freilassen damit Inhalt nicht unter dem Print-Footer endet */
  @page { margin: 1.5cm 1.5cm 2.5cm; }
}
/* === Newsletter-CTA (Footer-Variante + Inline-Block) ============== */
/* Footer-Variante: gleiche Optik wie Bewertungs-/Wetter-Widget       */
.wd-nl-cta--footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.25rem;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-body);
}
.wd-nl-cta--footer .wd-nl-cta__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.wd-nl-cta--footer .wd-nl-cta__btn {
  display: inline-block;
  align-self: flex-start;
  padding: 0.55rem 1.15rem;
  font-size: 14px;
  background: var(--color-gold, #C49A2A);
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.wd-nl-cta--footer .wd-nl-cta__btn:hover,
.wd-nl-cta--footer .wd-nl-cta__btn:focus {
  background: #ffffff;
  color: var(--color-darkgreen, #006633) !important;
}

.wd-nl-cta--block {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem 1.5rem;
  background: var(--color-cream-warm, #efe4c8);
  border: 1px solid var(--color-border, #d4c69e);
  border-radius: 10px;
  text-align: center;
}
.wd-nl-cta--block .wd-nl-cta__title {
  font-family: var(--font-headline, 'Playfair Display', Georgia, serif);
  color: var(--color-darkgreen, #006633);
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.wd-nl-cta--block .wd-nl-cta__text {
  color: var(--color-text, #1a1a1a);
  margin: 0 auto 1.2rem;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .wd-nl-cta--block {
    margin: 2rem 0 0;
    padding: 1.5rem 1rem;
  }
  .wd-nl-cta--block .wd-nl-cta__title { font-size: 1.3rem; }
}

/* === GLightbox: weiße Padding-Box um Inhalte ====================== */
/* Fix für getrimmte PDF-Vorschauen (ohne Rand) — gibt ihnen wieder   */
/* Atemraum. Fotos bekommen einen dezenten weißen Rahmen.             */
.gslide-image img,
.gslide-image picture > img {
  background: #ffffff !important;
  padding: clamp(6px, 1.2vw, 14px) !important;
  border-radius: 4px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25) !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
/* Lightbox-Bildunterschrift — direkt unter dem Bild, ohne Kasten */
.gslide-title {
  text-align: center !important;
  font-size: 15px !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  font-family: var(--font-body, Arial, sans-serif) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.gslide-description {
  background: transparent !important;
  padding: 10px 16px 0 !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
}
.gslide-inner-content {
  padding-bottom: max(20px, env(safe-area-inset-bottom)) !important;
}
/* GLightbox setzt auf Touch-Geräten (Handy/Tablet) die Klasse .glightbox-mobile
   und positioniert die Description absolut an bottom:0 mit dunklem Gradient —
   landet hinter der Adressleiste. Override damit Description im normalen
   Slide-Fluss direkt unter dem Bild erscheint. */
.glightbox-mobile .glightbox-container .gslide-description {
  position: relative !important;
  bottom: auto !important;
  background: transparent !important;
  padding: 8px 16px 24px !important;
  max-height: none !important;
  overflow: visible !important;
  width: auto !important;
  /* WICHTIG: ohne diesen Override hat GLightbox flex:1 0 100% gesetzt — die
     Description wächst dann und drückt das Bild oben an die Kante. */
  flex: 0 0 auto !important;
}
/* Inneren Slide-Container vertikal zentrieren — sonst klebt das Bild oben
   und der Rest ist leere schwarze Fläche, wenn das Bild kleiner als der
   Viewport ist (z.B. Querformat-Foto auf Hochkant-Handy). */
.glightbox-mobile .glightbox-container .ginner-container,
.glightbox-mobile .glightbox-container .ginner-container.desc-bottom {
  justify-content: center !important;
  align-items: center !important;
  height: 100vh !important;
  height: 100svh !important;
}
.glightbox-mobile .gslide-image img,
.glightbox-mobile .gslide-image picture > img {
  max-height: 80vh !important;
  max-height: 80svh !important;
}
@media (max-width: 700px) {
  .gslide-title { font-size: 13px !important; }
  .glightbox-mobile .gslide-image img,
  .glightbox-mobile .gslide-image picture > img {
    max-height: 75vh !important;
    max-height: 75svh !important;
  }
}
