/* Nestwärme: Ergänzende Styles (NICHT von Tailwind verwaltet — bitte hier pflegen) */

:root {
  --nw-creme: #FFF9F0;
  --nw-gelb: #FAD02C;
  --nw-pfirsich: #FFB37C;
  --nw-rose: #FFD6D6;
  --nw-gruen: #A8C28A;
  --nw-text: #4A403A;
  --nw-akzent: #E28B6D;
  --nw-sand: #EAE0D5;
  --nw-font-body: "Nunito", "Helvetica Neue", Arial, sans-serif;
  --nw-font-heading: "Merriweather", Georgia, serif;
}

body {
  font-family: var(--nw-font-body);
}

/* ---------- Top-Navigation ---------- */
.site-nav {
  background: rgba(255, 249, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--nw-sand);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-brand {
  font-size: 1.35rem;
  color: var(--nw-text);
  text-decoration: none;
  font-family: var(--nw-font-heading);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--nw-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--nw-akzent); }
.nav-links a.active {
  color: var(--nw-akzent);
  border-bottom-color: var(--nw-akzent);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--nw-sand);
  box-shadow: 0 1px 4px rgba(74, 64, 58, 0.1);
  backdrop-filter: blur(4px);
  color: var(--nw-text);
  cursor: pointer;
  padding: 0;
  border-radius: 12px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.9); box-shadow: 0 2px 10px rgba(74, 64, 58, 0.14); }
.nav-toggle:active { transform: scale(0.93); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--nw-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Burger wird zum X, wenn das Menü offen ist (7.5px = Balkenhoehe 2.5 + Gap 5) */
.site-nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nw-creme);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--nw-sand);
    box-shadow: 0 12px 24px rgba(74, 64, 58, 0.08);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  }
  .site-nav.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--nw-sand);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s, border-color 0.2s;
  }
  .site-nav.nav-open .nav-links a { opacity: 1; transform: none; }
  /* gestaffeltes Erscheinen der Links (nur beim Öffnen, Hover bleibt flink) */
  .site-nav.nav-open .nav-links a:nth-child(1) { transition-delay: 0.05s, 0.05s, 0s, 0s; }
  .site-nav.nav-open .nav-links a:nth-child(2) { transition-delay: 0.1s, 0.1s, 0s, 0s; }
  .site-nav.nav-open .nav-links a:nth-child(3) { transition-delay: 0.15s, 0.15s, 0s, 0s; }
  .site-nav.nav-open .nav-links a:nth-child(4) { transition-delay: 0.2s, 0.2s, 0s, 0s; }
  .site-nav.nav-open .nav-links a:nth-child(5) { transition-delay: 0.25s, 0.25s, 0s, 0s; }
  .site-nav.nav-open .nav-links a:nth-child(6) { transition-delay: 0.3s, 0.3s, 0s, 0s; }
  .nav-links a:last-child { border-bottom: none; }
}

/* ---------- Editor-Content (aus TinyMCE) ---------- */
.content-body { font-size: 1.125rem; line-height: 1.75; color: var(--nw-text); }
.content-body > *:first-child { margin-top: 0; }
.content-body h2 {
  font-family: var(--nw-font-heading);
  font-size: 1.9rem;
  line-height: 1.3;
  color: var(--nw-akzent);
  margin: 2.75rem 0 1rem;
}
.content-body h3 {
  font-family: var(--nw-font-heading);
  font-size: 1.45rem;
  line-height: 1.35;
  color: #7d9a5e;
  margin: 2.25rem 0 0.75rem;
}
.content-body h4 {
  font-family: var(--nw-font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
}
.content-body p { margin: 0 0 1.25rem; }
.content-body a { color: var(--nw-akzent); text-decoration: underline; }
.content-body a:hover { opacity: 0.85; }
.content-body strong { font-weight: 700; }
.content-body ul, .content-body ol { margin: 0 0 1.5rem; padding-left: 1.5rem; }
.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }
.content-body li { margin-bottom: 0.6rem; }
.content-body blockquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-left: 4px solid var(--nw-pfirsich);
  border-radius: 0 1.25rem 1.25rem 0;
  font-style: italic;
}
.content-body blockquote p:last-child { margin-bottom: 0; }
.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  margin: 1.5rem auto;
  display: block;
  box-shadow: 0 4px 14px rgba(74, 64, 58, 0.08);
}
.content-body figure { margin: 1.5rem 0; }
.content-body figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #8a7f76;
  margin-top: 0.5rem;
}
.content-body hr {
  border: none;
  border-top: 1px solid var(--nw-sand);
  margin: 2.5rem 0;
}

/* Ausrichtung aus dem Editor (TinyMCE-Klassen) */
.content-body .align-left { text-align: left; }
.content-body .align-center { text-align: center; }
.content-body .align-right { text-align: right; }
.content-body img.align-left, .content-body figure.align-left {
  float: left; margin: 0.5rem 1.25rem 1rem 0;
}
.content-body img.align-center, .content-body figure.align-center {
  display: block; margin-left: auto; margin-right: auto; float: none;
}
.content-body img.align-right, .content-body figure.align-right {
  float: right; margin: 0.5rem 0 1rem 1.25rem;
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
.content-body th, .content-body td {
  border: 1px solid var(--nw-sand);
  padding: 0.65rem 0.9rem;
  text-align: left;
  font-size: 1rem;
}
.content-body th { background: var(--nw-creme); }

/* Hinweis-Box (TinyMCE-Format „💡 Hinweis“) – nur fuer neue Inhalte mit dieser Klasse */
.content-body .hinweis {
  background: var(--nw-creme);
  border-left: 4px solid var(--nw-pfirsich);
  padding: 0.8rem 1.1rem;
  border-radius: 0.5rem;
  font-style: italic;
  margin: 1.25rem 0;
}

/* ---------- Kontakt-Box ("So erreichst Du mich") ---------- */
/* Buttons + Telefon-Link in der normalen Textfarbe des aktiven Themes */
.kontakt-cta { color: var(--nw-text); }
.kontakt-cta:hover { background: color-mix(in srgb, var(--nw-rose) 45%, transparent); }

/* ---------- Formulare ---------- */
.cms-form-wrap {
  background: #fff;
  border: 1px solid var(--nw-sand);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(74, 64, 58, 0.05);
  scroll-margin-top: 5rem;
}
.cms-form .form-row { margin-bottom: 1.25rem; }
.cms-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--nw-text);
}
.cms-form input[type="text"],
.cms-form input[type="email"],
.cms-form input[type="tel"],
.cms-form textarea {
  width: 100%;
  border: 1px solid var(--nw-sand);
  border-radius: 0.9rem;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--nw-creme);
  color: var(--nw-text);
}
.cms-form input:focus, .cms-form textarea:focus {
  outline: 2px solid var(--nw-pfirsich);
  border-color: var(--nw-pfirsich);
}
.form-submit {
  background: var(--nw-akzent);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 9999px;
  padding: 0.85rem 2.25rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(226, 139, 109, 0.35);
  transition: transform 0.15s, opacity 0.15s;
}
.form-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.form-hint { font-size: 0.85rem; color: #8a7f76; margin-top: 1rem; }
.form-hint a { color: var(--nw-akzent); }
.form-error { color: #b3402a; font-size: 0.9rem; margin-top: 0.3rem; }
.form-error-general {
  color: #b3402a;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-success {
  background: #edf4e2;
  border: 2px solid var(--nw-gruen);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
}
.form-success-icon {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  color: var(--nw-gruen);
}
.form-success-title {
  font-family: var(--nw-font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--nw-text);
  margin: 0 0 0.5rem;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  height: 1px; width: 1px;
  overflow: hidden;
}

/* ============================================================
   Inhalts-Module (Modul-System) — Struktur: templates/_modules.html
   Das Aussehen wird hier ZENTRAL gestaltet und gilt fuer alle Module.
   ============================================================ */
.mod-heading { font-family: var(--nw-font-heading); color: var(--nw-akzent); font-size: 1.75rem; line-height: 1.3; margin: 2.25rem 0 0.9rem; }
.mod-heading-h3 { font-size: 1.3rem; color: var(--nw-gruen); margin: 1.75rem 0 0.6rem; }
.mod-text { margin-bottom: 1.5rem; }

/* Preisliste / Pakete (Modul + globale Bausteine) */
.mod-preisliste { margin: 0 0 2.25rem; }
.mod-preisliste-list { display: grid; gap: 1.25rem; }
.mod-preis-item {
  background: var(--nw-creme);
  border: 1px solid var(--nw-sand);
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
}
.mod-preis-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.mod-preis-name { font-family: var(--nw-font-heading); font-weight: 700; font-size: 1.45rem; color: var(--nw-text); }
.mod-preis-price { font-weight: 700; color: #7d9a5e; font-size: 1.45rem; white-space: nowrap; }
.mod-preis-desc { margin: 0.6rem 0 0; font-size: 1.125rem; line-height: 1.75; color: var(--nw-text); }
.mod-preis-note { margin: 0.5rem 0 0; font-size: 1.05rem; line-height: 1.7; color: var(--nw-text); }

/* Hero */
.mod-hero {
    border-radius: 1.5rem; overflow: hidden; margin: 0 0 2.5rem;
    background: linear-gradient(135deg, var(--nw-rose), var(--nw-pfirsich));
    background-size: cover; background-position: center;
}
.mod-hero-inner { padding: 3.5rem 2rem; text-align: center; max-width: 40rem; margin: 0 auto; }
.mod-hero-title { font-family: var(--nw-font-heading); font-size: 2rem; color: #fff; text-shadow: 0 1px 8px rgba(74,64,58,.35); margin: 0 0 .75rem; }
.mod-hero:not([style]) .mod-hero-title { color: var(--nw-text); text-shadow: none; }
.mod-hero-text { font-size: 1.1rem; color: #fff; text-shadow: 0 1px 6px rgba(74,64,58,.35); margin: 0 0 1.25rem; }
.mod-hero-text p { margin: 0 0 .5rem; }
.mod-hero-text p:last-child { margin-bottom: 0; }
.mod-hero-text a { color: inherit; text-decoration: underline; }
.mod-hero:not([style]) .mod-hero-text { color: var(--nw-text); text-shadow: none; }

/* Buttons */
.mod-btn-primary {
    display: inline-block; background: var(--nw-akzent); color: #fff !important;
    font-weight: 700; padding: .85rem 1.9rem; border-radius: 999px;
    text-decoration: none !important; box-shadow: 0 4px 14px rgba(74,64,58,.18);
    transition: transform .15s ease, box-shadow .15s ease;
}
.mod-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(74,64,58,.24); }

/* Bild + Text */
.mod-image-text { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; margin: 0 0 2.25rem; }
@media (min-width: 768px) {
    .mod-image-text { grid-template-columns: 1fr 1fr; }
    .mod-it-right .mod-it-image { order: 2; }
}
.mod-it-image img { border-radius: 1rem; width: 100%; height: auto; box-shadow: 0 8px 24px rgba(74,64,58,.12); }
.mod-it-text > *:first-child { margin-top: 0; }

/* Einzelbild */
.mod-image { margin: 0 0 2.25rem; text-align: center; }
.mod-image img { border-radius: 1rem; max-width: 100%; height: auto; box-shadow: 0 8px 24px rgba(74,64,58,.12); }
.mod-image figcaption { font-size: .9rem; opacity: .75; margin-top: .5rem; }

/* YouTube */
.mod-video { margin: 0 0 2.25rem; }
.mod-video-frame { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 1rem; overflow: hidden; box-shadow: 0 8px 24px rgba(74,64,58,.12); }
.mod-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Karten-Reihe */
.mod-cards { margin: 0 0 2.5rem; }
.mod-cards-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .mod-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .mod-cards-grid { grid-template-columns: repeat(3, 1fr); } }
.mod-card { background: #fff; border: 1px solid var(--nw-sand); border-radius: 1rem; padding: 1.4rem 1.2rem; text-align: center; box-shadow: 0 4px 14px rgba(74,64,58,.06); }
.mod-card-icon { font-size: 2rem; margin-bottom: .5rem; }
.mod-card-title { font-family: var(--nw-font-heading); font-size: 1.1rem; color: var(--nw-akzent); margin: 0 0 .4rem; }
.mod-card-text { margin: 0; font-size: .98rem; }

/* Zitat */
.mod-quote { border-left: 4px solid var(--nw-pfirsich); background: #fff; border-radius: 0 1rem 1rem 0; padding: 1.2rem 1.5rem; margin: 0 0 2.25rem; font-style: italic; }
.mod-quote p { margin: 0 0 .5rem; font-size: 1.1rem; }
.mod-quote cite { font-style: normal; font-weight: 600; font-size: .95rem; opacity: .8; }

/* Tipp-Box */
.mod-tip { background: #f2f7ec; border: 1px solid var(--nw-gruen); border-left-width: 5px; border-radius: .9rem; padding: 1.1rem 1.3rem; margin: 0 0 2.25rem; }
.mod-tip-title { font-weight: 700; color: var(--nw-gruen); margin: 0 0 .4rem; }
.mod-tip > *:last-child { margin-bottom: 0; }

/* Step-by-Step */
.mod-steps { margin: 0 0 2.5rem; }
.mod-steps-list { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.mod-step { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--nw-sand); }
.mod-step:last-child { border-bottom: 0; }
.mod-step-num { flex: 0 0 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--nw-akzent); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.mod-step-title { font-family: var(--nw-font-heading); font-size: 1.1rem; margin: .2rem 0 .3rem; color: var(--nw-text); }
.mod-step-text { margin: 0; }

/* Top-Liste */
.mod-toplist { margin: 0 0 2.5rem; }
.mod-toplist-list { list-style: none; margin: 0; padding: 0; }
.mod-topitem { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border: 1px solid var(--nw-sand); border-radius: 1rem; padding: 1.1rem 1.3rem; margin-bottom: .8rem; }
.mod-toprank { flex: 0 0 auto; font-family: var(--nw-font-heading); font-size: 2rem; font-weight: 700; color: var(--nw-pfirsich); line-height: 1; }
.mod-toptitle { font-family: var(--nw-font-heading); font-size: 1.1rem; margin: .15rem 0 .3rem; color: var(--nw-akzent); }
.mod-toptext { margin: 0; }

/* Linkblock */
.mod-linklist { margin: 0 0 2.25rem; }
.mod-linklist-list { list-style: none; margin: 0; padding: 0; }
.mod-linklist-list li { padding: .55rem 0 .55rem 1.6rem; position: relative; border-bottom: 1px solid var(--nw-sand); }
.mod-linklist-list li:last-child { border-bottom: 0; }
.mod-linklist-list li::before { content: "→"; position: absolute; left: .2rem; color: var(--nw-akzent); font-weight: 700; }
.mod-linklist-list a { color: var(--nw-akzent); font-weight: 600; }

/* FAQ */
.mod-faq { margin: 0 0 2.5rem; }
.mod-faq-item { background: #fff; border: 1px solid var(--nw-sand); border-radius: .9rem; padding: .9rem 1.2rem; margin-bottom: .7rem; }
.mod-faq-item summary { font-weight: 600; cursor: pointer; color: var(--nw-text); }
.mod-faq-item summary::marker { color: var(--nw-akzent); }
.mod-faq-item p { margin: .7rem 0 .2rem; }

/* Call-to-Action */
.mod-cta { background: linear-gradient(135deg, var(--nw-rose), var(--nw-pfirsich)); border-radius: 1.5rem; text-align: center; padding: 2.5rem 1.8rem; margin: 0 0 2.5rem; }
.mod-cta-title { font-family: var(--nw-font-heading); font-size: 1.6rem; color: var(--nw-text); margin: 0 0 .6rem; }
.mod-cta-text { margin: 0 0 1.2rem; }

/* Autoren-Box */
.mod-author { display: flex; gap: 1.2rem; align-items: center; background: #fff; border: 1px solid var(--nw-sand); border-radius: 1rem; padding: 1.3rem 1.4rem; margin: 0 0 2.25rem; }
.mod-author-photo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; border: 3px solid var(--nw-rose); }
.mod-author-name { font-weight: 700; margin: 0 0 .25rem; }
.mod-author-role { font-weight: 400; opacity: .75; }
.mod-author-bio { margin: 0 0 .4rem; font-size: .98rem; }
.mod-author-link { color: var(--nw-akzent); font-weight: 600; }

/* ---------- Magic-Format: responsive Tabelle (nur class="mf-table") ----------
   Bestehende Tabellen ohne diese Klasse bleiben unveraendert. Auf kleinen
   Bildschirmern werden die Zeilen zu gut lesbaren Bloecken gestapelt. */
@media (max-width: 600px) {
  .content-body table.mf-table thead { display: none; }
  .content-body table.mf-table,
  .content-body table.mf-table tbody,
  .content-body table.mf-table tr,
  .content-body table.mf-table td,
  .content-body table.mf-table th { display: block; width: 100%; }
  .content-body table.mf-table tr {
    margin-bottom: 0.8rem;
    border: 1px solid var(--nw-sand);
    border-radius: 10px;
    padding: 0.3rem 0.7rem;
    background: #fff;
  }
  .content-body table.mf-table td,
  .content-body table.mf-table th {
    border: none;
    border-bottom: 1px dashed var(--nw-sand);
    padding: 0.4rem 0.1rem;
  }
  .content-body table.mf-table td:last-child,
  .content-body table.mf-table th:last-child { border-bottom: none; }
}

/* ==========================================================================
   Magic-Format Design-Vokabular (mobil-optimiert)
   Nur ueber die Klassen nutzbar; bestehende Inhalte ohne diese Klassen
   bleiben unveraendert. Alle Angaben mobil-first (Grids falten automatisch).
   ========================================================================== */

/* Karten-Raster (z. B. Preislisten, Leistungs-Uebersichten) */
.content-body ul.mf-cards,
.content-body ol.mf-cards {
  list-style: none; margin: 1.3rem 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.content-body ul.mf-cards > li,
.content-body ol.mf-cards > li {
  background: #fff; border: 1px solid var(--nw-sand);
  border-radius: 14px; padding: 1.1rem 1.25rem;
  box-shadow: 0 2px 10px rgba(74,64,58,0.06);
  display: flex; flex-direction: column; gap: 0.35rem;
}
.content-body ul.mf-cards > li > strong:first-child,
.content-body ol.mf-cards > li > strong:first-child {
  font-family: var(--nw-font-heading); font-size: 1.08rem;
  color: var(--nw-text); display: block; margin-bottom: 0.15rem;
}
/* Hervorgehobene Karte (z. B. "beliebt") */
.content-body ul.mf-cards > li.mf-feature,
.content-body ol.mf-cards > li.mf-feature {
  border: 2px solid var(--nw-akzent);
  box-shadow: 0 6px 20px rgba(226,139,109,0.20);
}

/* Preis-Badge (Pille) */
.content-body .mf-price {
  display: inline-block; background: var(--nw-akzent); color: #fff;
  font-weight: 700; padding: 0.18rem 0.8rem; border-radius: 999px;
  white-space: nowrap; font-size: 0.98rem; line-height: 1.5;
}

/* Callout-Box (Hinweis/Hervorhebung) */
.content-body .mf-callout {
  background: var(--nw-creme); border: 1px solid var(--nw-sand);
  border-left: 4px solid var(--nw-gruen);
  padding: 0.95rem 1.15rem; border-radius: 10px; margin: 1.1rem 0;
}

/* Einleitender Absatz (Lead) */
.content-body p.mf-lead {
  font-size: 1.18rem; line-height: 1.6; color: #5a5048; margin: 0.6rem 0 1rem;
}

/* Checkliste mit Haekchen */
.content-body ul.mf-check { list-style: none; padding-left: 0; margin: 0.8rem 0; }
.content-body ul.mf-check > li { position: relative; padding-left: 1.9rem; margin: 0.5rem 0; }
.content-body ul.mf-check > li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--nw-gruen); font-weight: 700; font-size: 1.15rem;
}

/* Text-Markierung (Marker) */
.content-body .mf-mark {
  background: rgba(250,208,44,0.35); padding: 0.05rem 0.3rem; border-radius: 3px;
}

/* CTA-Button / Handlungsaufruf (z. B. WhatsApp, Telefon, E-Mail) */
.content-body a.mf-cta {
  display: inline-block; background: var(--nw-gruen); color: #fff;
  font-weight: 700; text-decoration: none; padding: 0.6rem 1.4rem;
  border-radius: 999px; margin: 0.35rem 0.35rem 0.35rem 0; line-height: 1.4;
}
.content-body a.mf-cta:hover { opacity: 0.88; }
.content-body a.mf-cta-wa { background: #25D366; } /* WhatsApp-Grün */
