/* Laiha & Veta – klares, modernes Layout */

:root {
  --color-bg: #f4f2ec;
  --color-surface: #ffffff;
  --color-text: #1c1917;
  --color-muted: #57534e;
  --color-accent: #2d6a4f;
  --color-accent-hover: #1b4332;
  --color-focus: #047857;
  --color-border: rgba(28, 25, 23, 0.1);
  --color-header-bg: rgba(255, 253, 248, 0.88);
  --color-footer-bg: #141c19;
  --color-footer-text: #e7e5e4;
  --radius: 12px;
  --radius-pill: 9999px;
  --shadow: 0 1px 3px rgba(28, 25, 23, 0.06);
  --shadow-card: 0 8px 30px rgba(28, 25, 23, 0.07);
  --shadow-nav: 0 20px 50px rgba(28, 25, 23, 0.12);
  --font-sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --max-width: 72rem;
  --header-h: 4.25rem;
  --space: 1rem;
  --prose-wide: min(100%, 44rem);
  --bp-nav: 960px;
  --accent-rgb: 45, 106, 79;
  /* Typografie: harmonisch auf Desktop, mobil per Media Query angepasst */
  --fs-body: 1.0625rem;
  --fs-h1: clamp(1.55rem, 3.2vw, 2.1rem);
  --fs-h2: clamp(1.3rem, 2.6vw, 1.7rem);
}

@media (max-width: 639px) {
  :root {
    --fs-body: 1.03rem;
    --fs-h1: clamp(1.45rem, 5.8vw, 1.85rem);
    --fs-h2: clamp(1.22rem, 4.6vw, 1.5rem);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
}

.skip-link:focus {
  left: 0;
}

.site-header a:focus-visible,
.site-footer a:focus-visible {
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem var(--space);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.site-header__brand-row {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.75rem;
}

.site-logo {
  display: inline-block;
  text-align: center;
}

.site-logo:focus-visible {
  border-radius: var(--radius);
}

.site-logo img {
  display: block;
  height: auto;
  max-height: 3rem;
  width: auto;
  max-width: min(200px, 52vw);
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.nav-toggle:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
}

.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
  border-radius: 1px;
}

.site-nav {
  width: 100%;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
  align-items: center;
  justify-content: center;
}

.site-nav__item {
  position: relative;
}

.site-nav a,
.site-nav__label {
  display: inline-block;
  padding: 0.4rem 0.55rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-pill);
}

.site-nav__label {
  color: var(--color-muted);
  cursor: default;
}

.site-nav a:hover {
  color: var(--color-accent-hover);
  background: rgba(var(--accent-rgb), 0.16);
}

.site-nav a:focus-visible {
  color: var(--color-accent-hover);
  background: rgba(var(--accent-rgb), 0.1);
  outline: none;
  box-shadow: 0 0 0 2px var(--color-surface), 0 0 0 4px var(--color-focus);
}

.site-nav a[aria-current="page"] {
  color: var(--color-accent-hover);
  background: rgba(var(--accent-rgb), 0.14);
  font-weight: 700;
}

.site-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0;
  min-width: 13rem;
}

.site-nav__sub--nested {
  padding-left: 0.75rem;
  border-left: 2px solid rgba(var(--accent-rgb), 0.25);
  margin-top: 0.2rem;
}

/* Nur für Hover-Geräte (Maus): Zeilen einblenden; keyframes global wegen Parser-Kompatibilität */
@keyframes navFlyoutRowReveal {
  from {
    opacity: 0;
    transform: translate3d(0, -0.38rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 960px) {
  .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.75rem;
    padding: 0.55rem var(--space);
  }

  .site-header__brand-row {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
    min-height: 0;
  }

  .site-logo img {
    max-height: 2.85rem;
  }

  .site-nav {
    width: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
  }

  .site-nav__list {
    justify-content: flex-end;
  }

  /* top: 100%: oben zusätzliches Padding statt Außenabstand — Maus bleibt „im“ Flyout (Hover bricht nicht ab) */
  .site-nav__item--has-sub > .site-nav__sub {
    position: absolute;
    left: 50%;
    right: auto;
    top: 100%;
    padding: calc(0.45rem + 0.35rem) 0.55rem 0.45rem 0.55rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-nav);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -6px);
    /* Geschlossene Flyouts fangen kein Touch/Wischen ab (safari/chrome unterhalb der Leiste) */
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 50;
  }

  .site-nav__item--has-sub:hover > .site-nav__sub,
  .site-nav__item--has-sub:focus-within > .site-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  /*
   * Haupt-Flyout: keine Flex-Gaps zwischen Top-Level-li — sonst „lückige“ Zonen ohne :hover auf dem li,
   * innere Untermenüs klappen zu und Einträge springen (nicht erreichbar).
   * Stattdessen: Abstand nur per li-Padding (alles noch innerhalb eines li-Kastens).
   */
  .site-nav__item--has-sub > .site-nav__sub {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .site-nav__item--has-sub > .site-nav__sub > li {
    margin: 0;
    /* Etwas dichter: weniger „Leerraum“, über den die Maus die Zeile verlassen kann */
    padding: 0.06rem 0 0.22rem;
  }

  .site-nav__item--has-sub > .site-nav__sub > li:first-child {
    padding-top: 0;
  }

  .site-nav__item--has-sub > .site-nav__sub > li:last-child {
    padding-bottom: 0;
  }

  .site-nav__sub a {
    display: block;
    padding: 0.4rem 0.5rem;
    border-radius: calc(var(--radius) - 4px);
    font-weight: 500;
  }

  .site-nav__sub a:hover {
    background: rgba(var(--accent-rgb), 0.14);
  }

  .site-nav__sub .site-nav__label {
    padding: 0.35rem 0.5rem;
    border-radius: 0;
    font-size: 0.875rem;
  }
}

/*
 * Touch-Breitbild: voller Baum sichtbar, keine Staffel-Animation.
 */
@media (min-width: 960px) and (hover: none) {
  .site-nav__item--has-sub > .site-nav__sub .site-nav__sub--nested {
    display: block;
    position: static;
    visibility: visible;
    box-shadow: none;
    border: 0;
    padding: 0.35rem 0 0.15rem 0.75rem;
    margin: 0.15rem 0 0;
    min-width: 0;
    border-left: 2px solid rgba(var(--accent-rgb), 0.22);
  }

  .site-nav__item--has-sub > .site-nav__sub > li {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/*
 * Maus: Untermenüs per JS-Klasse (mehrere Zweige gleichzeitig offen); :hover allein reicht nicht.
 * Tastatur: :focus-within. Niemals opacity:0 auf .site-nav__sub--nested li — verhindert Lücken.
 */
@media (min-width: 960px) and (hover: hover) {
  .site-nav__item--has-sub > .site-nav__sub li > .site-nav__sub--nested {
    display: none;
  }

  .site-nav__item--has-sub > .site-nav__sub li.site-nav__li--nested-open > .site-nav__sub--nested,
  .site-nav__item--has-sub > .site-nav__sub li:focus-within > .site-nav__sub--nested {
    display: block;
    position: static;
    visibility: visible;
    box-shadow: none;
    border: 0;
    padding: 0.35rem 0 0.15rem 0.75rem;
    margin: 0.15rem 0 0;
    min-width: 0;
    border-left: 2px solid rgba(var(--accent-rgb), 0.22);
  }

  .site-nav__item--has-sub > .site-nav__sub > li {
    opacity: 0;
    transform: translate3d(0, -0.3rem, 0);
    animation: none;
  }

  .site-nav__item--has-sub > .site-nav__sub > li.nav-flyout-row--visible {
    animation: navFlyoutRowReveal 0.44s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .site-nav__item--has-sub > .site-nav__sub .site-nav__sub--nested li {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (min-width: 960px) and (hover: hover) and (prefers-reduced-motion: reduce) {
  .site-nav__item--has-sub > .site-nav__sub {
    transition-duration: 0.06s;
  }

  .site-nav__item--has-sub > .site-nav__sub > li {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .site-nav__item--has-sub > .site-nav__sub > li.nav-flyout-row--visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 959px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav__item--has-sub > .site-nav__label::after,
  .site-nav__item--has-sub > a:first-child::after {
    content: "▾";
    margin-left: 0.3em;
    font-size: 0.72em;
    opacity: 0.45;
    font-weight: 700;
  }

  .site-nav__item--has-sub:hover .site-nav__sub,
  .site-nav__item--has-sub:focus-within .site-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    max-height: min(78vh, 960px);
    overflow: auto;
    padding-bottom: 0.25rem;
    border-top: 1px solid var(--color-border);
    margin-top: 0.35rem;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 0 0.75rem;
    gap: 0.15rem;
  }

  .site-nav__item > a,
  .site-nav__item > .site-nav__label {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.55rem 0.65rem;
    border-radius: var(--radius);
  }

  .site-nav__sub {
    padding-left: 0.5rem;
    margin-top: 0.15rem;
    border-left: 2px solid rgba(var(--accent-rgb), 0.2);
  }

  .site-nav__sub--nested {
    padding-left: 0.65rem;
    border-left-width: 2px;
  }

  .site-nav__sub a {
    font-weight: 500;
    font-size: 0.9rem;
  }
}

/* Hauptinhalt */
.site-main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--space) 4rem;
  min-height: 50vh;
}

/* ----- Startseite: übersichtliche Blöcke ----- */
.page-home article.content.prose > section:not(.home-tagline) {
  margin-top: 2.5rem;
  padding-top: 0;
  border-top: 0;
}

.page-home article.content.prose > section.home-cta {
  padding-top: 1.65rem;
}

.page-home .home-tagline {
  margin-bottom: 0.25rem;
}

.page-home .home-tagline h1 {
  /* Startseite: Slogan ist der Seitentitel und soll deutlich größer als H2 wirken */
  font-size: var(--fs-h1);
  line-height: 1.15;
  margin-bottom: 0.35em;
  text-align: center;
}

.page-home .home-intro {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: 0;
}

/* Clearfix: Float-Inhalte werden sauber eingeschlossen */
.home-intro::after {
  content: "";
  display: table;
  clear: both;
}

/* H2 direkt in der Sektion: kein großer Abstand nach oben */
#home-welcome-heading {
  margin-top: 0 !important;
}

.page-home #home-welcome-heading::after {
  /* Unter dieser H2 keinen Trennstrich */
  display: none;
}

/* Foto floatet links, Events rechts – beide gleich breit, gleicher Zwischenraum */
.home-intro__figure {
  float: left;
  width: calc(50% - 0.75rem);
  margin: 0 0 1.5rem 0;
}

.home-intro__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.home-intro__aside {
  float: right;
  width: calc(50% - 0.75rem);
  margin: 0 0 1.5rem 1.5rem;
}

.home-intro__aside::after {
  content: "";
  display: block;
  height: 1px;
  margin: 1.05rem 0 0;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.22), transparent);
}

/* Text startet unter dem linken Foto, fließt ggf. neben dem Events-Block */
.home-intro__text {
  clear: left;
  min-width: 0;
}

@media (max-width: 639px) {
  .home-intro__figure {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem;
  }

  .home-intro__aside {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem;
  }
}

.home-events-card {
  font-size: 1.0625rem;
  line-height: 1.68;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, #1b4332 0%, #2d6a4f 42%, #1b4332 100%);
  color: #ecfdf5;
  padding: 1.4rem 1.4rem 1.55rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.35);
  margin: 0;
  border: 1px solid rgba(167, 243, 208, 0.15);
  height: auto;
  min-height: 0;
  max-height: none;
}

.page-home article.content.prose .home-events-card h2 {
  color: #ecfdf5;
  margin: 0 0 0.65rem;
  padding: 0;
  display: flex;
  align-items: center;
  border: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-home article.content.prose .home-events-card h2::before {
  /* Gleiches Grün wie beim Button-Hover */
  background: #2d6a4f !important;
}

.page-home article.content.prose .home-events-card h2::after {
  display: none;
}

.home-events-card__cta {
  margin-top: auto;
  text-align: center;
}

.home-events-card__sep {
  display: block;
  width: 100%;
  border: 0;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin: 0.9rem 0 1rem;
  background: none;
}

/* Build entfernt bei <hr> die class → daher im Eventblock direkt das Element stylen */
.home-events-card hr {
  display: block !important;
  width: 100% !important;
  border: 0 !important;
  height: 1px !important;
  margin: 0.9rem 0 1rem !important;
  background: linear-gradient(90deg, transparent, rgba(236, 253, 245, 0.35), transparent) !important;
}

.home-events-card p {
  margin-bottom: 0.85rem;
}

.home-events-card p + p {
  margin-top: 0.15rem;
}

.home-events-card p + p::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0.85rem 0 0.95rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

@media (min-width: 960px) {
  .home-events-card {
    font-size: 1.09rem;
    line-height: 1.72;
    padding: 1.5rem 1.55rem 1.65rem;
    min-width: 0;
  }
}

.page-home article.content.prose .home-events-card a {
  color: #bfe8df;
}

.page-home article.content.prose .home-events-card a:hover,
.page-home article.content.prose .home-events-card a:focus-visible {
  color: #fff;
}

.page-home article.content.prose .home-events-card p,
.page-home article.content.prose .home-events-card span,
.page-home article.content.prose .home-events-card strong {
  color: #ecfdf5;
}

.home-events-card__cta a {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.7rem 1.45rem;
  background: #ffffff;
  color: #0b2e1e !important;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-events-card__cta a span {
  color: inherit !important;
}

.home-events-card__cta a:hover,
.home-events-card__cta a:focus-visible {
  background: #2d6a4f;
  color: #ecfdf5 !important;
  border-color: rgba(236, 253, 245, 0.55);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.page-home article.content.prose .home-events-card__cta a {
  color: #0b2e1e !important;
}

.page-home article.content.prose .home-events-card__cta a:hover,
.page-home article.content.prose .home-events-card__cta a:focus-visible {
  color: #ecfdf5 !important;
}

.home-contact-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.home-contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1 1 9rem;
  min-width: 9rem;
  max-width: 14rem;
  padding: 1.3rem 1.25rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: #ecfdf5;
  background: linear-gradient(155deg, #1b4332 0%, #2d6a4f 42%, #1b4332 100%);
  border: 1px solid rgba(167, 243, 208, 0.15);
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-contact-tile:hover,
.home-contact-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(27, 67, 50, 0.42);
  color: #ecfdf5;
  text-decoration: none;
}

.home-contact-tile__label {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #ecfdf5;
}

.home-contact-tile__value {
  font-size: 0.82rem;
  color: rgba(236, 253, 245, 0.82);
  line-height: 1.3;
}

.home-about__layout {
  display: block;
}

.home-about__layout::after {
  content: "";
  display: table;
  clear: both;
}

.home-about__figure {
  margin: 0 0 1.25rem;
}

.home-about__figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: block;
}

@media (min-width: 720px) {
  .home-about__figure {
    float: left;
    width: min(100%, 30rem);
    max-width: calc(50% - 0.75rem);
    margin: 0 1.35rem 1.35rem 0;
  }

  .home-about__figure img {
    width: 100%;
  }

  .home-about__text {
    min-width: 0;
  }
}

.page-home .home-about__text h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: none;
  border-left: 0;
  padding-left: 0;
}

/* Nur eine Linie unter der H2: der neue Balken reicht */
.page-home .home-about__text h2::after {
  display: none;
}

.home-cta {
  background: rgba(var(--accent-rgb), 0.07);
  border-radius: var(--radius);
  padding: 1.65rem 1.4rem 1.65rem;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
}

.home-cta h2 {
  margin-top: 0;
}

.home-cta__lead {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.home-cta__lead strong {
  color: var(--color-text);
}

.home-cta__contact-intro {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.home-social-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.home-social-bottom h2 {
  border-left: 0;
  padding-left: 0;
  margin: 0;
  flex: 1;
}

.home-social-bottom__nav {
  justify-content: flex-end !important;
  margin-bottom: 0 !important;
  flex-shrink: 0;
}


.prose {
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: var(--prose-wide);
  margin-left: auto;
  margin-right: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--color-muted);
  margin: 0 0 1.15em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose-align-center {
  text-align: center;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: clamp(1.92rem, 4vw, 2.48rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 0.5em;
}

.prose h1::after {
  content: "";
  display: block;
  height: 1px;
  margin: 1.15rem auto 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.28), transparent);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--color-text);
  margin: 2.25rem 0 0.7em;
  display: flex;
  align-items: center;
  padding: 0 0 0.45em;
  border-bottom: none;
  border-left: 0;
  padding-left: 0;
}

.prose h2::before {
  content: "";
  display: block;
  width: 8px;
  height: 1.625em;
  background: var(--color-accent);
  border-radius: 9999px;
  flex: 0 0 auto;
  margin-right: 1.05rem;
  align-self: center;
}

.page-home .prose h2::after {
  content: "";
  display: block;
  height: 1px;
  margin: 0.9rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.22), transparent);
}

.page-home .home-cta h2,
.page-home .home-social-bottom h2 {
  border-left: 0;
  padding-left: 0;
  margin-top: 0;
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 1.5rem 0 0.5em;
}

.prose ul,
.prose ol {
  margin: 0 0 1.15em;
  padding-left: 1.35rem;
  color: var(--color-muted);
}

.prose li {
  margin-bottom: 0.35em;
}

.prose strong {
  color: var(--color-text);
  font-weight: 600;
}

.prose blockquote {
  margin: 1.25rem 0;
  padding: 0.85rem 1.1rem;
  border-left: 4px solid var(--color-accent);
  background: rgba(var(--accent-rgb), 0.07);
  color: var(--color-muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.prose a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.prose a:hover,
.prose a:focus-visible {
  color: var(--color-accent-hover);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Blog: Bild links (30%), Text fließt rechts */
.prose .lv-postimg {
  float: left;
  width: 32%;
  max-width: 32%;
  height: auto;
  max-height: 12.5rem;
  object-fit: cover;
  display: block;
  margin: 0.2rem 1rem 0.5em 0;
}

.prose .lv-post::after {
  content: "";
  display: block;
  clear: both;
}

.prose .lv-blog-index h1 {
  text-align: center;
}

/* Blog: Datum und Autor in eine Zeile */
.prose .lv-postmeta {
  margin: 0.35rem 0 0.5em;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Blog: dünne Trennlinie unter Datum/Autor (links → rechts auslaufend) */
.prose hr.lv-meta-divider {
  border: 0;
  height: 1px;
  margin: 0.5em 0 0.5em;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.22), transparent);
}

/* Blog: Trenner unter H1 und zwischen Posts (wie unter H1) */
.prose .lv-blog-index h1 {
  position: relative;
}

.prose .lv-blog-index h1::after {
  content: "";
  display: block;
  height: 1px;
  margin: 0.9rem auto 0;
  width: min(32rem, 70%);
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.22), transparent);
}

.prose hr.lv-post-divider {
  border: 0;
  height: 1px;
  margin: 1.1rem auto 1.35rem;
  width: min(32rem, 70%);
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.22), transparent);
}

/* Blog: Themen/Tags */
.prose .lv-tags {
  margin: 0 0 0.5em;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.prose .lv-tags strong {
  color: var(--color-text);
  font-weight: 600;
}

.prose a.lv-tag {
  display: inline-block;
  padding: 0.12rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(var(--accent-rgb), 0.06);
  text-decoration: none;
  margin: 0.15rem 0.25rem 0 0;
}

.prose a.lv-tag:hover,
.prose a.lv-tag:focus-visible {
  background: rgba(var(--accent-rgb), 0.1);
}

/* Blog: Weiterlesen über Trennstrich, mit Abstand */
.prose .lv-readmore {
  margin: 0 0 0.5em;
  text-align: right;
}

.prose .lv-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.22), transparent);
  margin: 0.85em auto 1.35em;
  width: min(32rem, 70%);
  display: block;
}

/* alter Weiterlesen-Trenner (Weebly) ist abgeschaltet – wir nutzen lv-post-divider */
.prose hr.lv-divider {
  display: none;
}

/* Blog: Abstände innerhalb der Posts wirklich überschreiben */
.prose .lv-post p {
  margin: 0 0 0.5em;
}

.prose .lv-post .lv-readmore + hr.lv-divider {
  margin-top: 0.5em;
}

@media (max-width: 639px) {
  .prose .lv-postimg {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0.65rem 0 0.9rem;
  }
}

/* Licht-Kristall-Pyramide: Fließtext und Bild nebeneinander */
.licht-pyramide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12.5rem, 22rem);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  margin: 0.5rem 0 1.75rem;
}

/* Erste Spalte: vom Build aus div.paragraph erzeugtes <p> */
.licht-pyramide-intro > p {
  margin: 0;
  min-width: 0;
}

.licht-pyramide-intro__img {
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  line-height: 0;
}

.licht-pyramide-intro__img img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  box-shadow: none;
  border-radius: inherit;
}

@media (max-width: 719px) {
  .licht-pyramide-intro {
    grid-template-columns: 1fr;
  }

  .licht-pyramide-intro__img {
    order: -1;
    max-width: 22rem;
    margin-inline: auto;
  }
}

.prose hr {
  border: 0;
  height: 1px;
  margin: 1.25rem 0 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.28), transparent);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95em;
}

.prose td,
.prose th {
  padding: 0.65rem 0.85rem;
  vertical-align: top;
}

.prose th {
  text-align: left;
  font-weight: 600;
}

/* Echte Datentabellen explizit auszeichnen */
.prose table.data-table td,
.prose table.data-table th {
  border: 1px solid #e2e2e2;
}

.prose table.data-table th {
  background: #f0eeea;
}

.prose iframe[title="Karte"] {
  display: block;
  border-radius: var(--radius);
  max-width: 100%;
}

/* Social: klare Kacheln / Textlinks */
.prose-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.prose-social span:empty {
  display: none;
}

.prose-social a[aria-label]:not([href^="mailto"])::after {
  content: attr(aria-label);
  font-weight: 600;
}

.prose-social a[aria-label] span {
  display: none;
}

/* Contact-Ersatz */
.contact-alt {
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-alt h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  border-left: 0;
  padding-left: 0;
}

.contact-alt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent-hover);
  border: 2px solid var(--color-accent);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(var(--accent-rgb), 0.06);
}

/* Buttons im Fließtext: .prose a ist spezifischer als .btn--primary und erzeugte grün-auf-grün */
.prose a.btn {
  text-decoration: none;
}

.prose a.btn--primary,
.prose a.btn--primary:visited {
  color: #fff;
}

.prose a.btn--primary:hover,
.prose a.btn--primary:focus-visible {
  color: #fff;
}

.prose a.btn--outline,
.prose a.btn--outline:visited {
  color: var(--color-accent-hover);
}

.prose a.btn--outline:hover,
.prose a.btn--outline:focus-visible {
  color: var(--color-accent-hover);
}

.mailto-form label {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.mailto-form input,
.mailto-form textarea {
  width: 100%;
  max-width: 36rem;
  padding: 0.5rem 0.65rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

.mailto-form button[type="submit"] {
  margin-top: 1rem;
}

.contact-alt__hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ----- EMDR-Fachausbildung (Landing) ----- */
.page-emdr-fach {
  max-width: var(--prose-wide);
  margin: 0 auto;
}

.page-emdr-fach__hero {
  padding: 0.25rem 0 2rem;
}

.page-emdr-fach__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.page-emdr-fach__hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-text);
  border-left: 0;
  padding-left: 0;
}

.page-emdr-fach__lead {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.page-emdr-fach__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.35rem;
  margin-bottom: 0.25rem;
}

.page-emdr-fach__cta-row--final {
  margin-top: 1.75rem;
}

.page-emdr-fach__photo-placeholder {
  margin-top: 2rem;
  min-height: 12rem;
  border-radius: var(--radius);
  border: 2px dashed rgba(var(--accent-rgb), 0.28);
  background: linear-gradient(
    145deg,
    rgba(var(--accent-rgb), 0.06) 0%,
    rgba(var(--accent-rgb), 0.02) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.page-emdr-fach__photo-placeholder--sm {
  min-height: 7rem;
  margin-top: 1.5rem;
}

.page-emdr-fach__section {
  padding: 1.75rem 0 0.25rem;
}

.page-emdr-fach__section h2 {
  margin-top: 0;
}

.page-emdr-fach__section--card {
  padding: 1.5rem 1.35rem 1.65rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.page-emdr-fach__section--closing {
  padding-bottom: 1rem;
}

.page-emdr-fach__rule {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 2.5rem var(--space) 2.75rem;
  margin-top: auto;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__intro {
  text-align: center;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.site-footer p {
  margin: 0.35rem 0;
  font-size: 0.92rem;
  color: rgba(231, 229, 228, 0.88);
}

.site-footer__phone {
  margin-top: 0.65rem !important;
  font-size: 0.88rem !important;
  color: rgba(231, 229, 228, 0.82) !important;
}

.site-footer__phone a {
  font-weight: 700;
  text-decoration: none;
  color: #fff !important;
}

.site-footer__phone a:hover,
.site-footer__phone a:focus-visible {
  text-decoration: underline;
}

.site-footer__legal {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.15rem;
  justify-content: center;
}

.site-footer__legal a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.site-footer__web a {
  font-weight: 600;
  color: #a7f3d0 !important;
  text-decoration: none;
}

.site-footer__web a:hover,
.site-footer__web a:focus-visible {
  text-decoration: underline;
}

.site-footer__sitemap {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 1.5rem 1.75rem;
  text-align: left;
}

.site-footer__col {
  margin: 0;
}

.site-footer__col-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.95);
}

.site-footer__col-title a {
  color: inherit;
  text-decoration: none;
}

.site-footer__col-title a:hover,
.site-footer__col-title a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer__links > li + li {
  margin-top: 0.3rem;
}

.site-footer__links a {
  color: rgba(231, 229, 228, 0.9);
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.site-footer__links a[aria-current="page"] {
  font-weight: 700;
  color: #fff;
}

.site-footer__sub-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.85rem;
  color: rgba(231, 229, 228, 0.95);
}

.site-footer__links--nested {
  margin-top: 0.25rem;
  margin-left: 0.5rem;
  padding-left: 0.65rem;
  border-left: 2px solid rgba(167, 243, 208, 0.35);
}

.site-footer__links--nested > li + li {
  margin-top: 0.2rem;
}

@media (max-width: 959px) {
  .site-footer__intro {
    text-align: left;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }
}

@media (max-width: 959px) {
  .prose > table > tbody > tr {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .prose > table > tbody > tr > td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
  }

  .prose table table > tbody > tr {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .prose table table > tbody > tr > td {
    display: block;
    width: 100% !important;
  }
}

.prose > table:first-of-type {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0;
  margin: 0.5rem 0 2rem;
  font-size: 1rem;
}

.prose > table:first-of-type > tbody > tr > td:first-child h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 0;
  margin-bottom: 0.75rem;
}

.prose > table:first-of-type > tbody > tr > td:first-child {
  padding-right: min(2.5rem, 4vw);
  padding-left: 0;
  vertical-align: top;
}

.prose > table:first-of-type > tbody > tr > td:last-child {
  vertical-align: top;
  min-width: 0;
  padding-right: 0;
}

@media (min-width: 960px) {
  .prose > table:first-of-type > tbody > tr > td:last-child {
    padding-left: min(2rem, 3vw);
    border-left: 1px solid rgba(var(--accent-rgb), 0.16);
  }
}

.prose span > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 1.25rem auto;
}

/* Span-Wrapper für große Fotos als Block */
.prose span:has(> img) {
  display: block;
}

.prose-social {
  justify-content: flex-start;
  gap: 0.65rem 1rem;
}

.prose-social a[aria-label]:not([href^="mailto"]) {
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  align-items: center;
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  text-decoration: none !important;
  color: var(--color-accent-hover) !important;
}

.prose-social a[aria-label]:not([href^="mailto"])::after {
  font-size: 0.9rem;
}

.prose-social a[href^="mailto"] {
  font-weight: 600;
}

article.prose > div:last-of-type table td hr {
  display: none;
}

article.prose > div:last-of-type table tbody tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

article.prose > div:last-of-type table tbody tr td {
  display: block;
  width: auto !important;
  padding: 0 !important;
  text-align: center;
}

/* Hero-Foto: volle Breite, mehr Höhe für schärfere Darstellung auf Retina */
article.content.prose > div > span:has(> img) > img {
  max-height: min(72vh, 720px);
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  margin: 0 auto 1rem;
}

/* Kontaktzeile (Telefon im grünen Bereich) */
.page-home article.content.prose .home-events-card table {
  margin: 0.5rem 0 0;
}

.page-home article.content.prose .home-events-card td {
  padding: 0.4rem 0.5rem 0 0;
}

.home-events-card p {
  font-weight: 400;
  letter-spacing: 0;
  font-size: inherit;
}

/* Startseite: quadratische goldene Social-Kacheln (Logo-Gold), Icon in Logo-Teal */
.page-home {
  --social-tile-gold-1: #e8c978;
  --social-tile-gold-2: #d4a84b;
  --social-tile-gold-3: #b8892e;
  --social-tile-border: #9a7220;
  --social-icon-logo: #1b4332;
}

.page-home .prose-social {
  justify-content: center;
}

.page-home .home-social-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  min-height: unset !important;
  padding: 0 !important;
  margin: 0.2rem;
  border-radius: 6px;
  border: 2px solid var(--social-tile-border);
  background: linear-gradient(148deg, var(--social-tile-gold-1) 0%, var(--social-tile-gold-2) 48%, var(--social-tile-gold-3) 100%);
  box-shadow: 0 4px 14px rgba(90, 70, 20, 0.2);
  text-decoration: none !important;
  color: transparent !important;
  position: relative;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-social-tile:hover,
.page-home .home-social-tile:focus-visible {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(90, 70, 20, 0.28);
  outline: none;
}

.page-home .home-social-tile::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 58%;
  background-color: var(--social-icon-logo);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  font-size: unset;
  font-weight: unset;
}

.page-home .home-social-tile--youtube::after {
  -webkit-mask-image: url(/assets/img/social-youtube.svg);
  mask-image: url(/assets/img/social-youtube.svg);
}

.page-home .home-social-tile--instagram::after {
  -webkit-mask-image: url(/assets/img/social-instagram.svg);
  mask-image: url(/assets/img/social-instagram.svg);
}

.page-home .home-social-tile--facebook::after {
  -webkit-mask-image: url(/assets/img/social-facebook.svg);
  mask-image: url(/assets/img/social-facebook.svg);
}

.page-home article.prose > div:last-of-type table tbody tr {
  gap: 0.85rem 1.25rem;
}

/* Terminseite (dynamisch per PHP) */
.termine-page__kopf {
  text-align: center;
  margin-bottom: 2rem;
}

.termine-page__kopf-linie {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), transparent);
  max-width: 24rem;
  margin-inline: auto;
}

.termine-page__kopf h1,
.termine-page__h1 {
  font-family: var(--font-display);
  font-size: clamp(1.92rem, 4vw, 2.48rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.termine-monatsgruppe {
  margin-bottom: 2.75rem;
  padding-bottom: 0.25rem;
}

.termine-monatsgruppe--getrennt {
  margin-top: 2.5rem;
  padding-top: 2.25rem;
}

.termine-monatsgruppe--getrennt::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 auto 2.25rem;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.28), transparent);
}

.termine-monatsgruppe__titel {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(155deg, #1b4332 0%, #2d6a4f 42%, #1b4332 100%);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  margin: 0 0 1.25rem;
  text-align: center;
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.35);
  border: 1px solid rgba(167, 243, 208, 0.15);
}

/* .prose h2 würde sonst Farbe, Randstrich, Padding und Margin überschreiben */
.prose .termine-monatsgruppe__titel {
  color: #fff;
  border-left: none;
  padding: 0.6rem 1rem;
  margin: 0 0 1.25rem;
}

.termine-eintrag {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.15rem 1.25rem 1.25rem;
  margin-bottom: 1.1rem;
  color: var(--color-text);
  border: 1px solid rgba(28, 25, 23, 0.06);
}

.termine-eintrag:last-child {
  margin-bottom: 0;
}

/* Honorar & Preise (Karten wie Termine, ohne Monats-Balken) */
.honorar-preise__intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  text-align: center;
  color: var(--color-text);
  margin: 0 0 1.15rem;
}

.honorar-preise__section-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  text-align: center;
  margin: 2rem 0 1.15rem;
  color: var(--color-text);
}

.honorar-preise__liste {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.honorar-preise__liste .termine-eintrag {
  margin-bottom: 0;
}

.prose .honorar-preis-karte h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: var(--color-text);
}

.honorar-preis-karte__body {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .honorar-preis-karte__body {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 1.5rem;
  }
}

.honorar-preis-karte__text p {
  margin: 0;
}

.honorar-preis-karte__preis {
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
}

@media (min-width: 640px) {
  .honorar-preis-karte__preis {
    text-align: right;
    min-width: 8rem;
  }
}

/* Seite „Wer ist Laiha“: Text um Porträt */
.page-laiha__kopf {
  text-align: center;
  margin-bottom: 0.25rem;
}

.page-laiha__kopf h1 {
  font-family: var(--font-display);
  font-size: clamp(1.92rem, 4vw, 2.48rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 0.35rem;
}

.page-laiha__flow::after {
  content: "";
  display: table;
  clear: both;
}

.page-laiha__figure {
  float: right;
  width: auto;
  margin: 0 0 1rem 1.35rem;
}

.page-laiha__figure a {
  display: block;
}

.page-laiha__figure img,
.page-laiha__img {
  display: block;
  width: min(100%, 30rem);
  height: auto;
  max-width: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(28, 25, 23, 0.12);
  padding: 3px;
  box-sizing: border-box;
}

.page-laiha__prose {
  min-width: 0;
}

.page-laiha__prose ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.35rem;
}

.page-laiha__ueber {
  margin-top: 2rem;
}

.page-laiha__ueber > h2 {
  font-family: var(--font-display);
  text-align: left;
  margin-top: 0;
}

.page-laiha__ueber-inner {
  margin-top: 0.75rem;
}

/* Links-Float-Variante (z. B. EMDR, Psychotherapie, OP-Begleitung, Rauchfrei) */
.page-laiha__figure--left {
  float: left;
  margin: 0 1.35rem 1rem 0;
}

.page-laiha__figure--half {
  width: calc(50% - 0.75rem);
}

/* Seiten „Wer ist Veta“ / „Wer ist Laiha”: Foto wie Startseite (ca. 50 % Breite), Text fließt herum */
.page-veta-kietzmann .page-veta-intro__wrap::after,
.page-wer-ist-laiha .page-laiha-person-intro__wrap::after {
  content: "";
  display: table;
  clear: both;
}

.page-veta-kietzmann .page-veta-intro__figure,
.page-wer-ist-laiha .page-laiha-person-intro__figure {
  float: left;
  width: calc(50% - 0.75rem);
  margin: 0 1.5rem 1.5rem 0;
}

.page-veta-kietzmann .page-veta-intro__figure img,
.page-veta-kietzmann .page-veta-intro__img,
.page-wer-ist-laiha .page-laiha-person-intro__figure img,
.page-wer-ist-laiha .page-laiha-person-intro__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.page-veta-kietzmann .page-veta-intro__text,
.page-wer-ist-laiha .page-laiha-person-intro__text {
  min-width: 0;
}

.page-veta-kietzmann .page-veta-intro > h2:first-of-type,
.page-wer-ist-laiha .page-laiha-person-intro > h2:first-of-type {
  margin-top: 0.85rem;
}

@media (max-width: 639px) {
  .page-veta-kietzmann .page-veta-intro__figure,
  .page-wer-ist-laiha .page-laiha-person-intro__figure {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem;
  }

  .page-laiha__figure {
    float: none;
    max-width: 100%;
    margin: 0 auto 1.25rem;
    text-align: center;
  }

  .page-laiha__figure--left {
    float: none;
    margin: 0 auto 1.25rem;
    text-align: center;
  }

  .page-laiha__figure img,
  .page-laiha__img {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Heilaufstellungen: H2-Überschrift direkt über dem Float, minimaler Abstand */
#heilauf-einleitung {
  margin-top: 0.15rem !important;
  margin-bottom: 0.5rem !important;
}

/* Heilaufstellungen: Bild floatet rechts, Text fließt daneben und darunter durch */
.page-heilauf__flow .page-heilauf__figure {
  float: right;
  clear: right;
  width: min(100%, 21rem);
  margin: 0 0 1rem 1.35rem;
}

.page-heilauf__flow .page-heilauf__figure img,
.page-heilauf__flow .page-laiha__img {
  width: 100%;
}

.page-heilauf__flow .page-laiha__prose {
  text-align: left;
}

.page-heilauf__cta {
  clear: both;
  margin: 1.75rem 0 0.5rem;
}

.page-heilauf__cta-band {
  background: #2d667f;
  padding: 1.35rem 1.25rem;
  margin: 1.75rem 0 0;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(45, 102, 127, 0.25);
}

.page-heilauf__cta-band-inner {
  margin: 0;
}

.page-heilauf__btn-on-teal {
  border-color: rgba(255, 255, 255, 0.92) !important;
  color: #fff !important;
}

.page-heilauf__btn-on-teal:hover,
.page-heilauf__btn-on-teal:focus-visible {
  background: rgba(255, 255, 255, 0.14) !important;
}

.termine-eintrag a {
  color: var(--color-accent-hover);
  font-weight: 600;
}

.termine-eintrag a:hover,
.termine-eintrag a:focus-visible {
  text-decoration: underline;
}

.termine-eintrag__lead {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.termine-eintrag__links {
  margin: 0.75rem 0 0;
}

.termine-eintrag__sep {
  color: var(--color-muted);
  margin: 0 0.2rem;
}

.termine-abschluss {
  margin-top: 3rem;
  text-align: center;
}

.termine-abschluss__h {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.termine-abschluss__fig {
  margin: 0;
}

.termine-abschluss__fig img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* Anmeldung */
.mailto-form select {
  width: 100%;
  max-width: 36rem;
  padding: 0.5rem 0.65rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
  background: var(--color-surface);
}

.anmeldung-seite {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.anmeldung-seite__inner {
  width: 100%;
  max-width: 29rem;
  margin-inline: auto;
  padding-block: 0.5rem 2rem;
  padding-inline: var(--space);
  box-sizing: border-box;
}

.anmeldung-seite__kopf {
  text-align: center;
  margin-bottom: 1.35rem;
}

.anmeldung-seite__kopf h1,
.anmeldung-seite__titel {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  color: var(--color-text);
}

.anmeldung-seite__einleitung {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.anmeldung-seite__karte {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.1rem 1.15rem 1.25rem;
  margin-inline: auto;
}

.anmeldung-seite .mailto-form.anmeldung-form label,
.kontakt-seite .mailto-form.anmeldung-form label {
  display: block;
  margin-top: 0.55rem;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: left;
}

.anmeldung-seite .mailto-form.anmeldung-form > label:first-of-type,
.kontakt-seite .mailto-form.anmeldung-form > label:first-of-type {
  margin-top: 0;
}

.anmeldung-seite .mailto-form.anmeldung-form input,
.anmeldung-seite .mailto-form.anmeldung-form select,
.anmeldung-seite .mailto-form.anmeldung-form textarea,
.kontakt-seite .mailto-form.anmeldung-form input,
.kontakt-seite .mailto-form.anmeldung-form select,
.kontakt-seite .mailto-form.anmeldung-form textarea {
  width: 100%;
  max-width: none;
  margin-top: 0.2rem;
  padding: 0.38rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  border: 1px solid rgba(28, 25, 23, 0.14);
  border-radius: 8px;
  background: var(--color-bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
  font-family: inherit;
  /* Dropdown-Höhe auf Desktop wie Textfelder */
  min-height: calc(0.38rem * 2 + 0.875rem * 1.4 + 2px);
  -webkit-appearance: none;
  appearance: none;
}

.anmeldung-seite .mailto-form.anmeldung-form select,
.kontakt-seite .mailto-form.anmeldung-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2357534e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  padding-right: 2rem;
  cursor: pointer;
  color: var(--color-text);
}

.anmeldung-seite .mailto-form.anmeldung-form select option,
.kontakt-seite .mailto-form.anmeldung-form select option {
  color: var(--color-text);
}

.anmeldung-seite .mailto-form.anmeldung-form abbr,
.kontakt-seite .mailto-form.anmeldung-form abbr {
  text-decoration: none;
  cursor: default;
}

.anmeldung-seite .mailto-form.anmeldung-form textarea {
  resize: vertical;
  min-height: 5.5rem;
  -webkit-appearance: none;
  appearance: auto;
}

.anmeldung-seite .mailto-form.anmeldung-form input:focus,
.anmeldung-seite .mailto-form.anmeldung-form select:focus,
.anmeldung-seite .mailto-form.anmeldung-form textarea:focus,
.kontakt-seite .mailto-form.anmeldung-form input:focus,
.kontakt-seite .mailto-form.anmeldung-form select:focus,
.kontakt-seite .mailto-form.anmeldung-form textarea:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.anmeldung-form__zeile {
  display: grid;
  grid-template-columns: minmax(0, 5.5rem) minmax(0, 1fr);
  gap: 0.5rem 0.65rem;
  margin-top: 0.55rem;
  align-items: end;
}

.anmeldung-form__feld label {
  margin-top: 0 !important;
}

.anmeldung-form__submit {
  width: 100%;
  margin-top: 1.1rem !important;
  padding-block: 0.55rem !important;
  font-size: 0.88rem !important;
}

.anmeldung-form__sektion--veranstaltung {
  margin-bottom: 0;
}

.anmeldung-form__sektion--veranstaltung label {
  margin-top: 0 !important;
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.875rem;
}

.anmeldung-form__trenner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-block: 1rem 0.25rem;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.anmeldung-form__trenner::before,
.anmeldung-form__trenner::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(var(--accent-rgb), 0.18);
}


.anmeldung-seite .lv-spam-captcha,
.kontakt-seite .lv-spam-captcha {
  max-width: none;
  margin: 0.65rem 0 0.25rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
}

.anmeldung-seite .lv-spam-captcha__frag,
.kontakt-seite .lv-spam-captcha__frag {
  font-size: 0.8125rem;
}

.anmeldung-seite .lv-spam-captcha__row input[type="number"],
.kontakt-seite .lv-spam-captcha__row input[type="number"] {
  font-size: 0.875rem;
  padding: 0.35rem 0.45rem;
  width: 4.5rem;
}

.anmeldung-seite .lv-spam-captcha__neu,
.kontakt-seite .lv-spam-captcha__neu {
  font-size: 0.75rem;
  padding: 0.32rem 0.65rem;
}

.anmeldung-feedback {
  max-width: 44rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin: 1rem 0;
}

.anmeldung-seite .anmeldung-feedback,
.kontakt-seite .anmeldung-feedback {
  max-width: none;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.75rem 0.85rem;
}

.anmeldung-feedback--erfolg {
  background: rgba(45, 106, 79, 0.12);
  border: 1px solid rgba(45, 106, 79, 0.35);
  color: var(--color-accent-hover);
}

.anmeldung-feedback--fehler {
  background: rgba(185, 28, 28, 0.09);
  border: 1px solid rgba(185, 28, 28, 0.35);
  color: #991b1b;
}

.anmeldung-datenschutz-hinweis {
  margin-top: 1.15rem;
  color: var(--color-muted);
  max-width: none;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.5;
  padding-inline: 0.25rem;
}

.anmeldung-nach-erfolg {
  margin-top: 1.25rem;
  text-align: center;
}

@media (max-width: 380px) {
  .anmeldung-form__zeile {
    grid-template-columns: 1fr;
  }

  .anmeldung-seite__inner {
    max-width: 100%;
  }
}

.newsletter-seite .newsletter-abschluss {
  margin-top: 1.25rem;
}

.newsletter-seite .newsletter-rechtliche-hinweise {
  margin-top: 1.75rem;
  max-width: 40rem;
  margin-inline: auto;
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--color-muted);
}

/* Kontaktseite: Inhalt, Raster Formular + Portrait, Interessen-Radios */
.kontakt-seite__wrap {
  max-width: 52rem;
  margin-inline: auto;
  padding-block: 0.5rem 2.5rem;
  padding-inline: var(--space);
  box-sizing: border-box;
}

/* H1-Kopf mit auslaufendem Trennstrich */
.kontakt-seite__kopf {
  text-align: center;
  margin-bottom: 1.75rem;
}

.kontakt-seite__kopf h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.kontakt-seite__kopf-linie {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), transparent);
  max-width: 24rem;
  margin-inline: auto;
}

/* Intro: Foto links, Text rechts */
.kontakt-seite__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.kontakt-seite__intro-bild {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.kontakt-seite__intro-bild img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.kontakt-seite__intro-text p {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: var(--fs-body);
  line-height: 1.65;
}

.kontakt-seite__intro-text small {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Formular: zentriert, gleich breit wie Anmeldung */
.kontakt-seite__formular-wrap {
  max-width: 29rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.kontakt-seite__feedback {
  margin-inline: auto;
  max-width: 29rem;
}

.kontakt-seite__nach-erfolg {
  text-align: center;
  margin-bottom: 1.5rem;
}

.kontakt-seite__trenner {
  margin: 2rem 0 1.75rem;
  border: none;
  border-top: 1px solid var(--color-border);
}

/* Adress-Raster: zwei Spalten nebeneinander */
.kontakt-seite__anschrift-raster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
}

.kontakt-seite__anschrift-block h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.kontakt-seite__anschrift-block p {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 0.925rem;
  line-height: 1.6;
}

.kontakt-seite__parfum-hinweis {
  margin-top: 0.75rem;
}

.kontakt-seite__parfum-linie {
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.25), transparent);
  margin-bottom: 0.65rem;
}

.kontakt-seite__parfum-hinweis p {
  margin: 0;
}

.kontakt-seite__anschrift-foto {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.kontakt-seite__anschrift-foto img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .kontakt-seite__intro {
    grid-template-columns: 1fr;
  }

  .kontakt-seite__anschrift-raster {
    grid-template-columns: 1fr;
  }
}

/* ----- Jahresausbildung Intuitiv Heilen (Text um Bild, wie Startseite) ----- */
.page-intuitiv-heilen .intuitiv-hero {
  margin-top: 0.5rem;
}

.page-intuitiv-heilen .intuitiv-hero h2 {
  font-size: var(--fs-h2);
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.page-intuitiv-heilen .intuitiv-hero__lead {
  margin: 0 0 1.25rem;
  max-width: 48rem;
}

.page-intuitiv-heilen .intuitiv-hero__video {
  margin: 0 0 1.75rem;
  max-width: min(42rem, 100%);
  margin-inline: auto;
}

.page-intuitiv-heilen .intuitiv-hero__video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 26rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background: #000;
}

.page-intuitiv-heilen .intuitiv-infoabend {
  text-align: center;
  margin: 0 0 2.25rem;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: rgba(var(--accent-rgb), 0.04);
}

.page-intuitiv-heilen .intuitiv-infoabend__text {
  margin: 0 0 1rem;
}

.page-intuitiv-heilen .intuitiv-infoabend__cta {
  margin: 0;
}

.intuitiv-fade-sep {
  display: block;
  width: 100%;
  height: 1px;
  margin: 1.35rem 0 1.45rem;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.22), transparent);
}

.page-intuitiv-heilen .intuitiv-fade-sep + section h2:not(.visually-hidden) {
  margin-top: 0.55rem;
}

.page-intuitiv-heilen .intuitiv-media-row {
  margin: 0 0 2.25rem;
}

.page-intuitiv-heilen .intuitiv-media-row::after {
  content: "";
  display: table;
  clear: both;
}

.page-intuitiv-heilen .intuitiv-media-row h2:not(.visually-hidden) {
  margin-top: 0;
}

.page-intuitiv-heilen .intuitiv-media-row__figure {
  width: calc(50% - 0.75rem);
  margin: 0 0 1.25rem;
}

.page-intuitiv-heilen .intuitiv-media-row__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.page-intuitiv-heilen .intuitiv-media-row__text {
  min-width: 0;
}

.page-intuitiv-heilen .intuitiv-media-row--img-left .intuitiv-media-row__figure {
  float: left;
  margin-right: 1.5rem;
}

.page-intuitiv-heilen .intuitiv-media-row--img-right .intuitiv-media-row__figure {
  float: right;
  margin-left: 1.5rem;
}

.page-intuitiv-heilen .intuitiv-media-row--img-right .intuitiv-media-row__text {
  text-align: left;
}

@media (max-width: 639px) {
  .page-intuitiv-heilen .intuitiv-media-row__figure {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }
}

.page-intuitiv-heilen .intuitiv-callout {
  margin: 0 0 2.25rem;
  padding: 1.4rem 1.4rem 1.55rem;
  border-radius: var(--radius);
  font-size: 1.0625rem;
  line-height: 1.68;
  background: linear-gradient(155deg, #1b4332 0%, #2d6a4f 42%, #1b4332 100%);
  color: #ecfdf5;
  border: 1px solid rgba(167, 243, 208, 0.15);
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.35);
}

.page-intuitiv-heilen .intuitiv-callout h2 {
  color: #ecfdf5;
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.page-intuitiv-heilen .intuitiv-callout h2::before {
  background: #52b788 !important;
}

.page-intuitiv-heilen .intuitiv-callout h2::after {
  display: none;
}

.page-intuitiv-heilen .intuitiv-callout p,
.page-intuitiv-heilen .intuitiv-callout strong {
  color: #ecfdf5;
}

.page-intuitiv-heilen .intuitiv-callout a {
  color: #d8f3dc;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.page-intuitiv-heilen .intuitiv-callout a:hover,
.page-intuitiv-heilen .intuitiv-callout a:focus-visible {
  color: #ffffff;
}

.page-intuitiv-heilen .intuitiv-callout p {
  margin: 0 0 0.75rem;
}

.page-intuitiv-heilen .intuitiv-callout p:last-child {
  margin-bottom: 0;
}

.page-intuitiv-heilen .intuitiv-testimonials {
  margin: 2.5rem 0 1rem;
}

.page-intuitiv-heilen .intuitiv-testimonials > h2 {
  margin-top: 0;
}

.page-intuitiv-heilen .testimonial-slider__frame {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.35rem;
  align-items: stretch;
}

.page-intuitiv-heilen .testimonial-slider__viewport {
  min-width: 0;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  scrollbar-width: thin;
}

.page-intuitiv-heilen .testimonial-slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
  padding: 0 0.15rem;
}

.page-intuitiv-heilen .testimonial-slider__panel {
  margin: 0;
  padding: 1.15rem 1.2rem 1.25rem;
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  min-height: 10rem;
}

.page-intuitiv-heilen .testimonial-slider__panel blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
}

.page-intuitiv-heilen .testimonial-slider__panel blockquote p {
  margin: 0 0 0.85rem;
}

.page-intuitiv-heilen .testimonial-slider__panel blockquote p:last-child {
  margin-bottom: 0;
}

.page-intuitiv-heilen .testimonial-slider__panel figcaption {
  margin: 0.75rem 0 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.page-intuitiv-heilen .testimonial-slider__btn {
  align-self: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.page-intuitiv-heilen .testimonial-slider__btn:hover,
.page-intuitiv-heilen .testimonial-slider__btn:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.45);
  outline: none;
}

.page-intuitiv-heilen .testimonial-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-intuitiv-heilen .testimonial-slider__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 0.85rem;
}

.page-intuitiv-heilen .testimonial-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
}

.page-intuitiv-heilen .testimonial-slider__dot.is-active {
  background: rgba(var(--accent-rgb), 0.85);
  border-color: rgba(var(--accent-rgb), 0.85);
}

/* Seite Quantenheilung lernen – Medienzeile und Kasten wie Intuitiv Heilen */
.page-quanten-lernen .quanten-lead h2 {
  margin: 0.85rem 0 1.1rem;
  text-align: center;
}

/* intuitiv-fade-sep ist jetzt global definiert (siehe oben) */

.page-quanten-lernen .intuitiv-fade-sep + section h2:not(.visually-hidden),
.page-veta-kietzmann .intuitiv-fade-sep + section h2:not(.visually-hidden),
.page-wer-ist-laiha .intuitiv-fade-sep + section h2:not(.visually-hidden),
.page-seelenlesung .intuitiv-fade-sep + section h2:not(.visually-hidden) {
  margin-top: 0.55rem;
}

.page-quanten-lernen .intuitiv-media-row {
  margin: 0 0 2.25rem;
}

.page-quanten-lernen .intuitiv-media-row::after {
  content: "";
  display: table;
  clear: both;
}

.page-quanten-lernen .intuitiv-media-row h2:not(.visually-hidden) {
  margin-top: 0;
}

.page-quanten-lernen .intuitiv-media-row__figure {
  width: calc(50% - 0.75rem);
  margin: 0 0 1.25rem;
}

.page-quanten-lernen .intuitiv-media-row__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.page-quanten-lernen .intuitiv-media-row__text {
  min-width: 0;
}

.page-quanten-lernen .intuitiv-media-row--img-left .intuitiv-media-row__figure {
  float: left;
  margin-right: 1.5rem;
}

.page-quanten-lernen .intuitiv-media-row--img-right .intuitiv-media-row__figure {
  float: right;
  margin-left: 1.5rem;
}

.page-quanten-lernen .intuitiv-media-row--img-right .intuitiv-media-row__text {
  text-align: left;
}

@media (max-width: 639px) {
  .page-quanten-lernen .intuitiv-media-row__figure {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }
}

.page-quanten-lernen .intuitiv-callout {
  margin: 0 0 2.25rem;
  padding: 1.4rem 1.4rem 1.55rem;
  border-radius: var(--radius);
  font-size: 1.0625rem;
  line-height: 1.68;
  background: linear-gradient(155deg, #1b4332 0%, #2d6a4f 42%, #1b4332 100%);
  color: #ecfdf5;
  border: 1px solid rgba(167, 243, 208, 0.15);
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.35);
}

.page-quanten-lernen .intuitiv-callout h2 {
  color: #ecfdf5;
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.page-quanten-lernen .intuitiv-callout h2::before {
  background: #52b788 !important;
}

.page-quanten-lernen .intuitiv-callout h2::after {
  display: none;
}

.page-quanten-lernen .intuitiv-callout h3 {
  color: #ecfdf5;
  margin: 1.15rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.page-quanten-lernen .intuitiv-callout h3:first-of-type {
  margin-top: 0;
}

.page-quanten-lernen .intuitiv-callout ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: #ecfdf5;
}

.page-quanten-lernen .intuitiv-callout li {
  margin: 0.2rem 0;
}

.page-quanten-lernen .intuitiv-callout p,
.page-quanten-lernen .intuitiv-callout strong {
  color: #ecfdf5;
}

.page-quanten-lernen .intuitiv-callout a {
  color: #d8f3dc;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.page-quanten-lernen .intuitiv-callout a:hover,
.page-quanten-lernen .intuitiv-callout a:focus-visible {
  color: #ffffff;
}

.page-quanten-lernen .intuitiv-callout p {
  margin: 0 0 0.75rem;
}

.page-quanten-lernen .intuitiv-callout p:last-child {
  margin-bottom: 0;
}

.page-quanten-lernen .quanten-abschluss p:last-child {
  margin-bottom: 0;
}

.page-quanten-lernen .quanten-warteliste,
.page-veta-kietzmann .page-veta-contact,
.page-wer-ist-laiha .page-laiha-contact,
.page-seelenlesung .seelenlesung-buchen {
  text-align: center;
  margin: 0 0 1.5rem;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: rgba(var(--accent-rgb), 0.04);
}

.page-quanten-lernen .quanten-warteliste__text,
.page-veta-kietzmann .page-veta-contact__text,
.page-wer-ist-laiha .page-laiha-contact__text,
.page-seelenlesung .seelenlesung-buchen__text {
  margin: 0 0 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.page-quanten-lernen .quanten-warteliste__cta,
.page-veta-kietzmann .page-veta-contact__cta,
.page-wer-ist-laiha .page-laiha-contact__cta,
.page-seelenlesung .seelenlesung-buchen__cta {
  margin: 0;
}

/* Seite Seelenlesung: erste H2 unter H1, Zitatblock */
.page-seelenlesung .seelenlesung-einleitung > h2:first-of-type {
  margin-top: 0.85rem;
}

.page-seelenlesung .seelenlesung-angebot {
  margin-bottom: 2.25rem;
}

.page-seelenlesung .seelenlesung-buchen:not(.seelenlesung-buchen--top) {
  margin-top: 2.25rem;
}

.page-seelenlesung .seelenlesung-buchen:not(.seelenlesung-buchen--top) {
  padding-bottom: 2.1rem;
}

.page-seelenlesung .seelenlesung-buchen--top {
  margin-top: 0.6rem;
  margin-bottom: 1.5rem;
}

.page-seelenlesung .seelenlesung-buchen--top {
  background: rgba(var(--accent-rgb), 0.075);
  border-color: rgba(var(--accent-rgb), 0.22);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
}

.seelenlesung-float-img {
  float: right;
  margin: 0 0 1.25rem 1.5rem;
  max-width: 240px;
  clear: right;
}

.seelenlesung-float-img--left {
  float: left;
  margin: 0 1.5rem 1.25rem 0;
  clear: left;
}

.seelenlesung-float-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: block;
}

@media (max-width: 540px) {
  .seelenlesung-float-img {
    float: none;
    margin: 0 0 1.25rem 0;
    max-width: 100%;
  }
}

.page-seelenlesung .page-seelenlesung-quote {
  margin: 0.4rem auto 2.1rem;
  max-width: 38rem;
}

.page-seelenlesung .page-seelenlesung-quote blockquote {
  margin: 0;
  padding: 1.3rem 1.35rem 1.25rem;
  border-left: 0;
  background: linear-gradient(155deg, #1b4332 0%, #2d6a4f 42%, #1b4332 100%);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.35);
  border: 1px solid rgba(167, 243, 208, 0.15);
  color: #ecfdf5;
}

.page-seelenlesung .page-seelenlesung-quote blockquote p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.68;
  font-style: italic;
  color: #ecfdf5;
}

.page-seelenlesung .page-seelenlesung-quote__src {
  margin-top: 0.85rem;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: normal;
  color: #ecfdf5;
  opacity: 0.92;
}

/* AGB: Linien im Muster-Widerrufsformular */
.prose .agb-line {
  border: 0;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.22);
  margin: 0.35rem 0 1rem;
  max-width: 28rem;
}

/* Rechtstexte: etwas mehr Abstand vor neuen Hauptüberschriften */
.prose .legal-section-header {
  margin-top: 3.2rem;
}
