/*!
 * NEWMOUNTAINS.IT - Design-System
 * Quelle der Wahrheit: wp-content/mu-plugins/nmit-design-system/nm-design-system.css
 * Eingebunden von:     wp-content/mu-plugins/nmit-design-system.php (Version = filemtime)
 * NICHT mehr im Elementor-Kit (Standard-Kit #2443) pflegen.
 * Versionierung: privates GitHub-Repo RaphaelNeuberger/nmit-design-system,
 * Auslieferung per Pull-Deploy (Cron alle 5 Minuten, read-only Deploy-Key).
 * Migriert: 2026-08-19 06:13 | HTML-Entities dekodiert (&gt; -> >, &amp; -> &)
 */

/* ============================================================
   NEWMOUNTAINS.IT — DESIGN-SYSTEM (Individuelles CSS)
   Bereinigt · entdoppelt · durchgehend neu nummeriert
   ------------------------------------------------------------
   INHALT
    1)  Design Tokens
    2)  Buttons
    3)  Karten & Panels
    4)  Karte — Bild randlos oben (Schmerzpunkte)
    5)  Medien
    6)  Sections & Hintergrund-Helfer
    7)  Typo-Helfer
    8)  Fakten / Hinweis-Box
    9)  Trust-Leiste
   10)  WooCommerce
   11)  Trenner
   12)  Icon-Liste
   13)  Helfer
   14)  Disclosure
   15)  Ablauf — Prozess-Schritte
   16)  Gesamt-/Ergebnis-Box
   17)  ROI-/Ergebnis-Band (Navy)
   18)  FAQ — Nested Accordion
   19)  Case-Study — Kennzahlen-Block
   20)  Gründer-Block & Zitat-Box
   21)  Partner-Logo, Partner-Loop & Trust-Carousel
   22)  Hero-Ridge
   23)  Anbieter-Vergleich (nm-cmp)
   24)  Schmerzpunkte — Foot
   25)  Berater — Portrait
   26)  Berater — Rolle
   27)  Vorher / Nachher
   28)  Tarife — Elementor Price Table
   29)  Helfer — for-whom / Bild-Schatten aus
   30)  KI-Kennzeichnung (Art. 50 EU AI Act)
   31)  Breadcrumb (nm-breadcrumb)
   32)  Hero-Lead / Subtitle unter H1 (nm-lead)
   33)  Featured-Beitrag (nm-feature) — Elementor Loop
   34)  Kategorie-Navigation Sidebar (nm-catnav)
   35)  Blog-Suche (nm-search)
   36)  Sortleiste + Select (nm-sortbar / nm-select)
   37)  Scroll-Button (nm-scrolltop)
   ============================================================ */
/* ===== 1) DESIGN TOKENS ===== */
:root {
  --navy: #001860;
  --sky: #2ea3f2;
  --sky-text: #1273b8;
  --cyan: #00ffff;
  --violet: #8F35EE;
  --ink: #0f172a;
  --body: #475569;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --bg-soft: #eef4fb;
  --shadow-media: 0 18px 44px rgba(0, 24, 96, 0.16);
  --shadow-card: 0 16px 40px rgba(0, 24, 96, 0.1);
  --shadow-btn: 0 10px 28px rgba(143, 53, 238, 0.45);
  --shadow-badge: 0 4px 14px rgba(143, 53, 238, 0.35);
  --radius-md: 16px;
  --radius-lg: 20px;
  --content-max: 1180px; /* MUSS mit Elementor-Inhaltsbreite übereinstimmen */
}

/* ===== NM-FIX 2026-08-22: Silbentrennung (hyphens) in Ueberschriften deaktivieren =====
   Ursache: hyphens:auto bei lang="de-DE" trennt Woerter mit Bindestrich am Zeilenende.
   Ziel: ganze Woerter umbrechen statt trennen; overflow-wrap faengt Extremfaelle ab. */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.product_title {
  -webkit-hyphens: none !important;
  hyphens: none !important;
  overflow-wrap: break-word;
  word-break: normal;
}

/* ===== NM-FIX 2026-08-25: Header-Scrollbar-Bug (SmartMenus Dropdown ueberlaeuft) =====
   Ursache: Elementors SmartMenus setzt inline style="width:1115px" auf mobilen Dropdowns.
   Grund: Falsche Berechnung des Parent-Container bei Responsive Viewports.
   Loesung: CSS + JavaScript: Container breit genug, aber Dropdown-Menu selbst clipped.
   Effekt: Scrollbar auf Header + Body verschwindet. */
.elementor-location-header {
  overflow: hidden !important;
}
.elementor-location-header .elementor-nav-menu--dropdown {
  width: auto !important;
  max-width: 100vw !important;
}
.elementor-location-header .elementor-nav-menu__container {
  overflow-x: hidden !important;
}

/* ===== 2) BUTTONS ===== */
.elementor-button {
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.elementor-button:hover {
  transform: translateY(-2px);
}
.nm-btn-primary .elementor-button:hover,
.elementor-button.nm-btn-primary:hover {
  box-shadow: var(--shadow-btn);
}
/* Ghost-Button (sekundär, ohne Schatten) */
.nm-btn-ghost .elementor-button {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}
.nm-btn-ghost .elementor-button:hover {
  background-color: var(--navy);
  color: #fff;
  box-shadow: none;
}
/* Ghost auch für Price-Table-Button */
.nm-btn-ghost .elementor-price-table__button {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background-color 0.15s,
    color 0.15s;
}
.nm-btn-ghost .elementor-price-table__button:hover {
  background-color: var(--navy);
  color: #fff;
  box-shadow: none;
  transform: translateY(-2px);
}

/* Navy-Button (primär, gefüllt) */
.nm-btn-navy .elementor-button {
  background-color: var(--navy);
  color: #fff;
  box-shadow: none;
}
.nm-btn-navy .elementor-button:hover {
  background-color: #0a2a8a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 24, 96, .3);
}
/* ===== 3) KARTEN & PANELS ===== */
/* Basis (weiß + 1px Linie; KEIN overflow:hidden -> Badge wird nicht geclippt) */
.nm-card,
.nm-panel {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
/* Hover: Karte enthält Link ODER ist selbst ein Link */
.nm-card:has(a),
a.nm-card {
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  cursor: pointer;
}
.nm-card:has(a):hover,
a.nm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
/* Verlinkte Karte (HTML-Tag = a): kein Unterstrich, Textfarbe erben */
a.nm-card,
a.nm-card:hover {
  text-decoration: none;
  color: inherit;
}
/* CTA-Pseudolink (kein echtes <a> mehr im Karteninneren) */
.nm-card-cta {
  color: var(--sky-text);
  font-weight: 600;
}
a.nm-card:hover .nm-card-cta {
  color: var(--violet);
}
/* Text-Links in Karten (echtes <a>) */
.nm-card a {
  color: var(--sky-text);
  font-weight: 600;
  text-decoration: none;
}
.nm-card a:hover {
  color: var(--violet);
}
/* Hervorgehobenes Panel („Empfohlen") – ein Akzent für Border + Badge */
.nm-panel-featured {
  --accent: var(--sky-text);
  border: 2px solid var(--accent);
  position: relative;
}
/* Icon oben — SVG/Font-Icon UND Emoji (Text) */
.nm-card-icon {
  color: var(--sky);
  fill: var(--sky);
}
.nm-card-icon i,
.nm-card-icon svg {
  font-size: 40px;
  width: 40px;
  height: 40px;
}
.nm-card-icon,
.nm-card-icon .elementor-heading-title,
.nm-card-icon p {
  font-size: 1.8rem;
  line-height: 1;
}
/* Titel: feste Mindesthöhe */
.nm-card-title {
  min-height: 2.6em;
}
/* Highlight-Zeile unten */
.nm-card-highlight,
.nm-card-highlight p {
  color: var(--sky-text);
  font-weight: 600;
  margin: 0;
}
.nm-card-highlight {
  margin-top: auto;
  min-height: 2.6em;
}
/* Buttons in Karten/Panels zentrieren */
.nm-card .elementor-widget-button,
.nm-panel .elementor-widget-button {
  align-self: center;
}
.nm-card .elementor-button-wrapper,
.nm-panel .elementor-button-wrapper {
  text-align: center;
}
/* Badge (z. B. „Empfohlen") */
.nm-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 5;
}
.nm-badge .elementor-heading-title {
  display: inline-block;
  background: var(--accent, var(--navy));
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ===== 4) KARTE — VARIANTE: Bild randlos oben (Schmerzpunkte) ===== */
.nm-card-media {
  padding: 0;
  overflow: hidden;
} /* rundet die Bildecken */
.nm-card-media .nm-card-body {
  padding: 24px;
}
.nm-card-media img,
.nm-card.nm-card-media img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
  box-shadow: none; /* überschreibt die globale Media-Shadow */
}
/* ===== 5) MEDIEN ===== */
.elementor-widget-image img,
.elementor-widget-video .elementor-wrapper {
  box-shadow: var(--shadow-media);
}
.nm-radius-md img,
.nm-radius-md iframe,
.nm-radius-md .elementor-wrapper {
  border-radius: var(--radius-md);
}
.nm-radius-md .elementor-wrapper {
  overflow: hidden;
}
.nm-radius-lg img,
.nm-radius-lg iframe,
.nm-radius-lg .elementor-wrapper {
  border-radius: var(--radius-lg);
}
.nm-radius-lg .elementor-wrapper {
  overflow: hidden;
}
.nm-video-box {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-media);
}
.nm-banner img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .nm-banner img {
    aspect-ratio: auto;
    height: auto;
  }
}
/* Großes Foto: 4:3, Radius, weicher Schatten (Hero + Founders + überall) */
.nm-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
}
/* eigener Schatten schlägt den globalen Media-Shadow (Spezifität: 2 Klassen) */
.nm-photo.elementor-widget-image img,
.nm-photo .elementor-widget-image img {
  box-shadow: 0 24px 60px rgba(0, 24, 96, 0.22);
}
/* ===== 6) SECTIONS & HINTERGRUND-HELFER ===== */
.nm-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .nm-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
/* Hintergrund-Varianten (überschreiben das Karten-Weiß per Reihenfolge) */
.nm-bg-alt {
  background: var(--bg-alt);
}
.nm-bg-soft {
  background: var(--bg-soft);
}
.nm-bg-navy {
  background: var(--navy);
  color: #cdd9f2;
} /* dunkles Band */
/* Optionaler Radial-Glow (für Navy-Bänder) — eigener Helfer */
.nm-glow {
  position: relative;
  overflow: hidden;
}
.nm-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(46, 163, 242, 0.25),
    transparent 55%
  );
  pointer-events: none;
}
.nm-glow > * {
  position: relative;
  z-index: 1;
}
/* ===== 7) TYPO-HELFER ===== */
.nm-eyebrow,
.nm-eyebrow .elementor-heading-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-text);
}
/* Schritt-Nummer = Eyebrow in Violet */
.nm-eyebrow.nm-violet,
.nm-eyebrow.nm-violet .elementor-heading-title {
  color: var(--violet);
}
/* Eyebrow in Cyan — NUR auf dunklem/Navy-Grund lesbar (auf Hell unsichtbar) */
.nm-eyebrow.nm-cyan,
.nm-eyebrow.nm-cyan .elementor-heading-title {
  color: var(--cyan);
}
/* Preis-Anzeige (nm-price) — bewusst NICHT ".price" (kollidiert mit WooCommerce!) */
.nm-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nm-price b {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ink);
}
.nm-price s {
  color: #94a3b8;
  font-size: 1.1rem;
  text-decoration: line-through;
}
/* Modifier: Gratis-Preis im Sky-Violet-Gradient */
.nm-price.nm-price-grad b {
  font-size: 2.8rem;
  background: linear-gradient(120deg, var(--sky), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Gradient-Text im H1 (<em>) */
h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--sky), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Gradient-Text generisch */
.nm-grad {
  background: linear-gradient(120deg, var(--sky), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Gedämpfter Intro-/Subtext auf dunklem Grund (Navy-Bänder) */
.nm-on-navy-muted,
.nm-on-navy-muted .elementor-heading-title,
.nm-on-navy-muted p {
  color: #aac3e8;
}
/* ===== 8) FAKTEN / HINWEIS-BOX ===== */
.nm-factbox {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky);
  border-radius: 12px;
  padding: 20px 22px;
}
.nm-factbox strong {
  color: var(--navy);
}
.nm-factbox-violet {
  border-left-color: var(--violet);
}
.nm-factlist p {
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
  margin: 0;
}
.nm-factlist p:last-child {
  border-bottom: none;
}
.nm-factlist strong {
  color: var(--navy);
}
/* Fehler-Variante der Hinweis-Box (eigenständig) */
.nm-factbox-red {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: 12px;
  padding: 20px 22px;
  color: #7f1d1d;
}
.nm-factbox-red p { color: #7f1d1d; }
.nm-factbox-red strong { color: #b91c1c; }

/* ===== 9) TRUST-LEISTE ===== */
.nm-trust img {
  opacity: 0.85;
  transition: opacity 0.15s;
}
.nm-trust img:hover {
  opacity: 1;
}
/* Trust-Bar (Inline-Badge) */
.nm-trustbar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.nm-trustbar b {
  color: #001860;
  font-weight: 600;
}
/* ===== 10) WOOCOMMERCE ===== */
.e-loop-item,
.e-loop-item > .e-con {
  height: 100%;
}
.e-loop-item .elementor-widget-woocommerce-product-add-to-cart {
  margin-top: auto;
}
.e-loop-item:has(.woocommerce-Price-amount) > .e-con,
.e-loop-item:has(.woocommerce-Price-amount) > .e-con > .e-con-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.e-loop-item:has(.woocommerce-Price-amount)
  > .e-con
  > .elementor-element:last-child,
.e-loop-item:has(.woocommerce-Price-amount)
  > .e-con
  > .e-con-inner
  > .elementor-element:last-child {
  margin-top: auto;
}
.e-loop-item:has(.woocommerce-Price-amount)
  .elementor-widget-woocommerce-product-title {
  min-height: 66px;
  display: flex;
  align-items: flex-start;
}
.e-loop-item .onsale,
.woocommerce span.onsale {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  bottom: auto;
  z-index: 5;
  margin: 0;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  padding: 16px !important;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: none;
  box-shadow: var(--shadow-badge);
}
.elementor-pagination,
.woocommerce-pagination {
  margin-top: 48px;
}
/* ===== 11) TRENNER ===== */
.elementor-widget-divider.nm-divider .elementor-divider-separator {
  border-block-start: 1px solid var(--line) !important;
}
.elementor-widget-divider.nm-divider .elementor-divider {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
}
/* ===== 12) ICON-LISTE ===== */
.elementor-widget-icon-list.nm-iconlist .elementor-icon-list-icon i,
.elementor-widget-icon-list.nm-iconlist .elementor-icon-list-icon svg {
  color: var(--sky);
  fill: var(--sky);
  font-size: 18px;
  width: 18px;
  height: 18px;
}
.nm-iconlist .elementor-icon-list-text {
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: anywhere;
}
.nm-iconlist .elementor-icon-list-item {
  align-items: flex-start;
}
.nm-iconlist .elementor-icon-list-item:not(:last-child) {
  margin-bottom: 10px;
}
/* Vorher-/Problem-Liste: X in gedämpftem Grau statt Sky */
.elementor-widget-icon-list.nm-iconlist.nm-iconlist-x
  .elementor-icon-list-icon
  i,
.elementor-widget-icon-list.nm-iconlist.nm-iconlist-x
  .elementor-icon-list-icon
  svg {
  color: var(--body);
  fill: var(--body);
}
/* ===== 13) HELFER ===== */
.nm-center {
  text-align: center;
}
/* Element unten in der Flex-Karte verankern */
.nm-pin-bottom {
  margin-top: auto;
}
/* Reihe mit gleich hohen Karten */
.nm-equal {
  align-items: stretch;
}
.nm-equal > .e-con,
.nm-equal > .e-con > .e-con-inner,
.nm-equal > .e-con > .e-con-inner > .e-con {
  height: 100%;
}
/* ===== 14) DISCLOSURE ===== */
.nm-disclosure {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.82rem;
  color: var(--body);
  line-height: 1.6;
}
/* ===== 15) ABLAUF — PROZESS-SCHRITTE ===== */
.nm-steps {
  position: relative;
}
/* Verlaufslinie auf der Row, hinter den Badges */
.nm-steps::after {
  content: "";
  position: absolute;
  top: 47px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}
@media (max-width: 767px) {
  .nm-steps::after {
    display: none;
  }
}
/* Badge: gefüllter Sky-Kreis, weiße Zahl */
.nm-step-badge {
  display: flex;
  width: 54px;
  height: 54px;            /* fix statt min-height → echter Kreis */
  flex: 0 0 54px;          /* falls Flex-Item: nicht schrumpfen/wachsen */
  aspect-ratio: 1 / 1;     /* Absicherung gegen Verzerrung */
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: 6px solid var(--e-global-color-6c7dd7d);
  border-radius: 50%;
  background-color: var(--sky-text);
  box-shadow: 0 6px 16px rgba(18, 115, 184, 0.3);
  position: relative;
  z-index: 1;
}
.nm-step-badge .elementor-widget-heading {
  width: auto;
}
.nm-step-badge .elementor-heading-title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-align: center;
  white-space: nowrap;     /* sticht das globale overflow-wrap aus → Zahl einzeilig */
  overflow-wrap: normal;
  hyphens: none;
}
/* alle Headings in den Steps zentriert (Titel, „2 Wochen") */
.nm-steps .nm-step .elementor-heading-title {
  text-align: center;
}
/* ===== 16) GESAMT-/ERGEBNIS-BOX ===== */
.nm-summary {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px 28px;
  text-align: center;
  color: var(--body);
  overflow: hidden;
}
.nm-summary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sky), var(--cyan));
}
.nm-summary strong {
  color: var(--navy);
}
/* ===== 17) ROI-/ERGEBNIS-BAND (NAVY) ===== */
.nm-roi {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: #cdd9f2;
}
.nm-roi::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 15%,
    rgba(46, 163, 242, 0.25),
    transparent 55%
  );
  pointer-events: none;
}
.nm-roi > * {
  position: relative;
  z-index: 1;
}
/* ROI-Zahl als Heading */
.elementor-widget-heading.nm-roi-value .elementor-heading-title {
  color: var(--cyan);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}
.elementor-widget-heading.nm-roi-label .elementor-heading-title {
  color: #cfe0f5;
}
/* ROI-Zahl als Elementor-Counter */
.nm-roi-counter .elementor-counter-number-wrapper {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  line-height: 1.1;
}
.nm-roi-counter .elementor-counter-number,
.nm-roi-counter .elementor-counter-number-prefix,
.nm-roi-counter .elementor-counter-number-suffix {
  font-weight: 800;
  background: linear-gradient(120deg, var(--cyan), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nm-roi-counter .elementor-counter-title {
  color: #cfe0f5;
  font-size: 0.9rem;
  margin-top: 4px;
}
/* Trennlinie + fette Teile im Band */
.nm-roi .elementor-divider-separator {
  border-block-start: 1px solid rgba(255, 255, 255, 0.18) !important;
}
.nm-roi strong {
  color: #fff;
}
/* ===== 18) FAQ — NESTED ACCORDION ===== */
/* Elementors eigene Title-Border/Radius stilllegen */
.nm-faq {
  --n-accordion-border-width: 0px;
  --n-accordion-border-radius: 0px;
}
/* Abstand zwischen den Items */
.nm-faq .e-n-accordion-item {
  margin-bottom: 12px;
}
/* Kopfzeile: Layout (Icon rechts) + Border + Radius oben + Hintergrund (geschlossen = bg-alt) */
.nm-faq .e-n-accordion-item .e-n-accordion-item-title {
  display: flex !important;
  align-items: center;
  justify-content: flex-start; /* nicht space-between */
  border: 2px solid var(--line);
  border-bottom-width: 0; /* keine Naht-Doppellinie */
  border-radius: 20px 20px 0 0;
  background: var(--bg-alt);
}
/* Kopfzeile-Titel (links) — füllt den Platz, drückt Icon nach rechts */
.nm-faq .e-n-accordion-item-title-text {
  order: 1;
  flex: 1 1 auto;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--navy);
}
/* +/- Icon (rechts), Farbe Sky */
.nm-faq .e-n-accordion-item-title-icon {
  order: 2;
  flex: 0 0 auto;
  margin-left: 12px;
  margin-right: 0;
  color: var(--sky) !important;
}
.nm-faq .e-n-accordion-item-title-icon svg {
  fill: var(--sky) !important;
  width: 16px;
  height: 16px;
}
/* Inhalt: Border 0/2/2/2 + Radius unten (0/0/20/20) */
.nm-faq .e-n-accordion-item > .e-con {
  border: solid var(--line);
  border-width: 0 2px 2px 2px;
  border-radius: 0 0 20px 20px;
}
/* Antworttext = globaler Body-Stil, fett = Navy */
.nm-faq .e-n-accordion-item > .e-con,
.nm-faq .e-n-accordion-item > .e-con p {
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-text-font-family);
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: var(--e-global-typography-text-line-height);
}
.nm-faq .e-n-accordion-item > .e-con strong {
  color: var(--navy);
}
/* geschlossene Items rundum schließen (volle Border + 20px) */
.nm-faq .e-n-accordion-item:not([open]) .e-n-accordion-item-title {
  border-bottom-width: 2px;
  border-radius: 20px;
}
/* geöffnet: Titel UND Inhalt weiß */
.nm-faq .e-n-accordion-item[open] .e-n-accordion-item-title,
.nm-faq .e-n-accordion-item[open] > .e-con {
  background: var(--bg);
}
/* ===== 19) CASE-STUDY — KENNZAHLEN-BLOCK ===== */
.nm-case-nums,
.nm-case-nums p {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--navy);
  line-height: 1.9;
  margin: 16px 0;
}
.nm-case-nums b {
  color: var(--violet);
}
/* ===== 20) GRÜNDER-BLOCK & ZITAT-BOX ===== */
/* Check-Liste mit Sky-Häkchen */
.nm-checks {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.nm-checks li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.nm-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sky);
  font-weight: 700;
}
.nm-checks b {
  color: var(--navy);
}
/* Zitat-Box — Basis: Cyan-Kante (Standard) */
.nm-quote {
  border-left: 4px solid var(--cyan);
  padding: 14px 20px;
  background: var(--bg-soft);
  border-radius: 10px 12px 12px 10px;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  margin-top: 18px;
}
/* Modifier: Violet-Kante */
.nm-quote-violet {
  border-left-color: var(--violet);
}
/* ===== 21) PARTNER-LOGO, PARTNER-LOOP & TRUST-CAROUSEL ===== */
/* Logo in der Karte — kein Schatten, einheitliche Höhe */
.nm-partner-logo {
  height: 96px;
  display: flex;
  align-items: center;
}
.nm-partner-logo img {
  max-height: 100%;
  max-width: 140px;
  object-fit: contain;
  box-shadow: none;
}
/* Loop — gleich hohe Karten */
.nm-partner-loop .e-loop-item,
.nm-partner-loop .e-loop-item > .e-con,
.nm-partner-loop .e-loop-item > .e-con > .e-con-inner {
  height: 100%;
}
/* Trust-Carousel — Logos größer als in den Partner-Karten */
.nm-trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.nm-trust-logo img {
  max-height: 80px !important;
  height: 80px !important; /* erzwingt die Höhe */
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain;
  box-shadow: none !important;
}
/* ===== 22) HERO-RIDGE ===== */
.nm-hero {
  position: relative;
  overflow: hidden;
}
.nm-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,120 L240,46 L420,86 L680,18 L920,72 L1180,30 L1440,80 L1440,0 L0,0 Z' fill='%23ffffff' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.nm-hero > * {
  position: relative;
  z-index: 1;
}
/* ===== 23) ANBIETER-VERGLEICH (nm-cmp) =====
   Standard   = .nm-cmp           (Kriterium + 2 Anbieter)
   3-Anbieter = .nm-cmp.nm-cmp-3  (Kriterium + 3 Anbieter)
   ------------------------------------------------------------ */
/* Scroll-Wrapper (horizontales Scrollen auf Mobil) */
.nm-cmp-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: none;
  margin: 0;
}
/* Container */
.nm-cmp {
  min-width: 640px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  font-family: "Inter", system-ui, sans-serif;
}
/* Raster: Standard = Kriterium + 2 Anbieter */
.nm-cmp-head,
.nm-cmp-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: stretch;
}
/* 3-Anbieter-Variante: Kriterium + 3 Anbieter */
.nm-cmp.nm-cmp-3 {
  min-width: 760px;
}
.nm-cmp-3 .nm-cmp-head,
.nm-cmp-3 .nm-cmp-row {
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
}
/* Kopfzeile */
.nm-cmp-head {
  background: var(--bg-soft);
}
.nm-cmp-head .nm-cmp-col {
  padding: 18px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}
.nm-cmp-head .nm-cmp-crit {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
}
/* Zeilen */
.nm-cmp-row {
  border-top: 1px solid var(--line);
}
/* Kriterium-Spalte (links) */
.nm-cmp-crit {
  padding: 16px 20px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  display: flex;
  align-items: center;
}
/* Daten-Zellen */
.nm-cmp-cell {
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--ink);
}
.nm-cmp-cell .sub {
  display: block;
  font-size: 0.8rem;
  color: var(--body);
  margin-top: 2px;
}
.nm-cmp-cell .note {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  margin-top: 4px;
}
/* Hervorgehobene Heim-Spalte (dezent) */
.nm-cmp-p {
  background: rgba(46, 163, 242, 0.06);
}
/* Häkchen / Kreuz */
.nm-chk {
  color: var(--sky);
  font-weight: 700;
  margin-right: 6px;
}
.nm-no {
  color: #b91c1c;
  font-weight: 700;
  margin-right: 6px;
}
/* Fazit + NM-Box */
.nm-verdict {
  max-width: none;
  margin: 0;
}
.nm-verdict p {
  font-size: 0.96rem;
  color: var(--body);
}
.nm-verdict b {
  color: var(--navy);
}
.nm-verdict-nm {
  background: var(--bg-soft);
  border-left: 3px solid var(--cyan);
  padding: 14px 18px;
  border-radius: 10px;
  color: var(--ink);
}
/* Mobil */
@media (max-width: 640px) {
  .nm-cmp-crit,
  .nm-cmp-cell {
    padding: 13px 14px;
    font-size: 0.86rem;
  }
  .nm-cmp-head .nm-cmp-col {
    padding: 14px;
  }
  .nm-cmp.nm-cmp-3 {
    min-width: 680px;
  }
}
/* ===== 24) SCHMERZPUNKTE — FOOT ===== */
.nm-pain-foot,
.nm-pain-foot .elementor-heading-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 34px;
}
/* ===== 25) BERATER — PORTRAIT (4:5) ===== */
.nm-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top; /* Gesicht oben halten, nicht abschneiden */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-media);
}
/* ===== 26) BERATER — ROLLE / POSITIONIERUNG ===== */
.nm-role,
.nm-role .elementor-heading-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--sky-text);
  margin-bottom: 18px;
}
/* ===== 27) VORHER / NACHHER ===== */
.nm-vn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.nm-vn-head {
  padding: 18px 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nm-vn-before .nm-vn-head {
  background: #eef1f5;
  color: var(--body);
}
.nm-vn-after .nm-vn-head {
  background: rgba(46, 163, 242, 0.1);
  color: var(--navy);
}
.nm-vn-col {
  display: flex;
  flex-direction: column;
}
.nm-vn-after {
  background: rgba(46, 163, 242, 0.05);
}
.nm-vn-before {
  border-right: 1px solid var(--line);
}
.nm-vn-row {
  padding: 16px 24px;
  font-size: 0.94rem;
  border-top: 1px solid var(--line);
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nm-vn-before .nm-vn-row {
  color: var(--body);
}
.nm-vn-after .nm-vn-row {
  color: var(--ink);
}
.nm-vn-row .mk {
  flex-shrink: 0;
  font-weight: 700;
}
.nm-vn-before .mk {
  color: #94a3b8;
}
.nm-vn-after .mk {
  color: var(--sky);
}
@media (max-width: 767px) {
  .nm-vn {
    grid-template-columns: 1fr;
  }
  .nm-vn-before {
    border-right: none;
    border-bottom: 2px solid var(--line);
  }
}
.nm-vn-intro,
.nm-vn-intro .elementor-heading-title {
  margin-top: 60px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--navy);
}
/* ===== 28) TARIFE — Elementor Price Table (nur CI: Schrift/Farbe/Button) ===== */
/* Basis — alle Tarif-Karten (Rahmen, Radius, Hintergrund, saubere Ecken) */
.nm-tier .elementor-price-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* Gleiche Breite + Höhe */
.nm-tier.elementor-widget-price-table {
  flex: 1 1 0 !important;
  align-self: stretch !important;
}
.nm-tier .elementor-price-table__footer {
  margin-top: auto;
}
/* Header-Hintergrund transparent (kein grauer Balken) */
.nm-tier .elementor-price-table__header {
  background-color: transparent !important;
  background-image: none !important;
}
/* Titel wie H3 — Montserrat, Navy */
.nm-tier .elementor-price-table__heading {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  color: var(--navy) !important;
}
.nm-tier .elementor-price-table__subheading {
  color: var(--body) !important;
  font-size: 0.92rem !important;
}
/* Preis — Schrift & Größe */
.nm-tier .elementor-price-table__integer-part {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--ink);
}
.nm-tier .elementor-price-table__currency {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  vertical-align: super;
  color: var(--ink);
}
.nm-tier .elementor-price-table__after-price,
.nm-tier .elementor-price-table__period {
  color: var(--body);
}
/* Häkchen — Sky */
.nm-tier .elementor-price-table__features-list li i,
.nm-tier .elementor-price-table__features-list li svg {
  color: var(--sky);
  fill: var(--sky);
}
/* "ab"-Präfix (nur Karten mit .nm-price-ab) */
.nm-price-ab .elementor-price-table__integer-part::before {
  content: "ab ";
  font-size: 0.34em;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0.03em;
  margin-right: 0.12em;
}
/* HERVORGEHOBENE KARTE (Beliebteste) */
/* Border + Schatten beide aufs Widget (außen, kein overflow → sauber) */
.nm-tier-feat.elementor-widget-price-table {
  border: 3px solid var(--violet) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 18px 50px rgba(143, 53, 238, 0.22) !important;
}
/* innere Tabelle: KEIN Border, nur Radius + overflow fürs Ribbon */
.nm-tier-feat .elementor-price-table {
  border: none !important;
  border-radius: calc(var(--radius-md) - 2px) !important;
  overflow: hidden;
}
/* Ribbon in CI-Violet */
.nm-tier-feat .elementor-ribbon-inner {
  background-color: var(--violet) !important;
  background-image: none !important;
  color: #fff !important;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Violet-Button in der hervorgehobenen Karte */
.nm-tier-feat .elementor-price-table__button {
  background-color: var(--violet);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-btn);
}
.nm-tier-feat .elementor-price-table__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(143, 53, 238, 0.5);
}
/* ===== 29) HELFER — FOR-WHOM / BILD-SCHATTEN AUS ===== */
.nm-for-whom {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0;
  color: #1273b8; /* Sky-Text, Link-/Label-sicher */
  margin-bottom: 10px;
}
/* Bild-Schatten gezielt entfernen */
.nm-no-shadow img,
.nm-no-shadow.elementor-widget-image img {
  box-shadow: none !important;
}
/* ===== 30) KI-KENNZEICHNUNG (Art. 50 EU AI Act) — oben rechts (EU-Empfehlung) =====
   Anker = das Bild-WIDGET selbst. Bei diesem Elementor-Markup liegt das <img>
   direkt im Widget-div (KEIN .elementor-widget-container), darum hängt das
   Badge am Widget. display:inline-block lässt das Widget auf die Bildgröße
   schrumpfen, damit das Badge exakt an der oberen rechten Bildecke klebt.
   ------------------------------------------------------------
   Anwendung (Widget → Erweitert → CSS-Klassen):
     nm-card-media nm-ai              → Card-Bild, 16px, "AI GENERATED"
     nm-photo nm-ai                   → Hero/Case, 18px, "AI GENERATED"
     nm-portrait nm-ai                → Portrait, 20px, "AI GENERATED"
     nm-portrait nm-ai nm-ai-modified → Portrait, "AI MODIFIED" (grau)
   Hinweis: nm-ai ist Pflicht (erzeugt das Badge); nm-ai-modified ist nur
   die Text-/Farbvariante.
   ------------------------------------------------------------ */
/* Anker */
.elementor-widget-image.nm-ai {
  position: relative;
  display: inline-block; /* Widget schrumpft auf Bildbreite → Badge sitzt an der Bildkante */
  max-width: 100%;
  line-height: 0; /* kein Descender-Spalt unter dem Bild */
}
/* Badge */
.elementor-widget-image.nm-ai::after {
  content: "AI GENERATED";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
  background: rgba(0, 24, 96, 0.78); /* Navy, halbtransparent */
  backdrop-filter: blur(4px);
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0 var(--nm-ai-r, var(--radius-md)) 0 8px; /* oben-rechts = Bild-Radius */
  pointer-events: none;
}
/* Text-Variante: AI MODIFIED (grau) */
.elementor-widget-image.nm-ai-modified::after {
  content: "AI MODIFIED";
  background: rgba(71, 85, 105, 0.8); /* Slate zur Abgrenzung */
}
/* Radius-Overrides je Bildtyp */
.elementor-widget-image.nm-photo.nm-ai {
  --nm-ai-r: 18px;
}
.elementor-widget-image.nm-portrait.nm-ai {
  --nm-ai-r: var(--radius-lg);
}
.elementor-widget-image.nm-radius-lg.nm-ai {
  --nm-ai-r: var(--radius-lg);
}
/* ===== 31) BREADCRUMB (nm-breadcrumb) =====
   Markup:  <nav class="nm-breadcrumb nm-breadcrumb-dark" aria-label="Breadcrumb">
              <ol>
                <li><a href="/">Start</a></li>
                <li><a href="/blog">Blog</a></li>
                <li aria-current="page">Aktueller Titel</li>
              </ol>
            </nav>
   Varianten:  .nm-breadcrumb-dark   → Navy-Hero (Standard in den Mockups)
               .nm-breadcrumb-light  → heller Hintergrund
   Elementor Global Colors mit Hex-Fallback:
     bfb38a1 = #9FD0FB (Link hell/Sky)   ·   aa74370 = Hover/aktiv
   ------------------------------------------------------------ */
/* Basis */
.nm-breadcrumb {
  font-size: 0.84rem;
}
.nm-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
.nm-breadcrumb li {
  display: flex;
  align-items: center;
}
.nm-breadcrumb li + li::before {
  content: "›";
  margin: 0 8px;
  opacity: 0.6;
  font-weight: 600;
}
.nm-breadcrumb a {
  text-decoration: none;
  transition: color 0.15s;
}
.nm-breadcrumb a:hover {
  text-decoration: underline;
}
.nm-breadcrumb [aria-current="page"] {
  font-weight: 600;
}
.nm-breadcrumb :focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Dunkle Variante — Navy-Hero */
.nm-breadcrumb-dark a {
  color: var(--e-global-color-bfb38a1, #9fd0fb);
}
.nm-breadcrumb-dark a:hover {
  color: var(--e-global-color-aa74370, #ffffff);
}
.nm-breadcrumb-dark li + li::before {
  color: var(--e-global-color-bfb38a1, #9fd0fb);
}
.nm-breadcrumb-dark [aria-current="page"] {
  color: var(--e-global-color-aa74370, #ffffff);
}
/* Helle Variante — heller Hintergrund */
.nm-breadcrumb-light a {
  color: var(--sky-text);
}
.nm-breadcrumb-light a:hover {
  color: var(--violet);
}
.nm-breadcrumb-light li + li::before {
  color: var(--body);
}
.nm-breadcrumb-light [aria-current="page"] {
  color: var(--navy);
}
/* --- Rank Math Breadcrumb (Elementor "Breadcrumbs"-Widget) ---
   Widget bekommt Klasse nm-breadcrumb + nm-breadcrumb-dark/-light.
   Ersetzt den " | "-Trenner durch "›" und setzt die Farben. */
.nm-breadcrumb .rank-math-breadcrumb p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.84rem;
}
.nm-breadcrumb .rank-math-breadcrumb a {
  text-decoration: none;
  transition: color 0.15s;
}
.nm-breadcrumb .rank-math-breadcrumb a:hover {
  text-decoration: underline;
}
.nm-breadcrumb .rank-math-breadcrumb .last {
  font-weight: 600;
}
/* Trenner | -> › (Original-Text ausblenden, Zeichen per ::after) */
.nm-breadcrumb .rank-math-breadcrumb .separator {
  font-size: 0;
  margin: 0 8px;
}
.nm-breadcrumb .rank-math-breadcrumb .separator::after {
  content: "›";
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 0.6;
}
/* Farben — dunkel (Navy-Hero) */
.nm-breadcrumb-dark .rank-math-breadcrumb a {
  color: var(--e-global-color-bfb38a1, #9fd0fb);
}
.nm-breadcrumb-dark .rank-math-breadcrumb a:hover {
  color: var(--e-global-color-aa74370, #ffffff);
}
.nm-breadcrumb-dark .rank-math-breadcrumb .separator::after {
  color: var(--e-global-color-bfb38a1, #9fd0fb);
}
.nm-breadcrumb-dark .rank-math-breadcrumb .last {
  color: var(--e-global-color-aa74370, #ffffff);
}
/* Farben — hell */
.nm-breadcrumb-light .rank-math-breadcrumb a {
  color: var(--sky-text);
}
.nm-breadcrumb-light .rank-math-breadcrumb a:hover {
  color: var(--violet);
}
.nm-breadcrumb-light .rank-math-breadcrumb .separator::after {
  color: var(--body);
}
.nm-breadcrumb-light .rank-math-breadcrumb .last {
  color: var(--navy);
}
/* Rechtsbündig (Rank Math nutzt <p> als Flex-Zeile) */
.nm-breadcrumb-right .rank-math-breadcrumb p {
  justify-content: flex-end;
  text-align: right;
}
.nm-breadcrumb-right ol {
  justify-content: flex-end;
} /* falls eigenes nm-breadcrumb-Markup */
/* Schwebende Breadcrumb, bündig zur Content-Kante (= H1-Kante).
   HINWEIS: Bezugspunkt für 'left' ist der volle Hero-.e-con (position:relative).
   (100% - content-max)/2 trifft exakt die linke Kante von .e-con-inner,
   in dem auch die H1 sitzt → KEIN zusätzliches +24px (das schob 24px zu weit rein).
   Auf schmalen Screens greift der 24px-Floor.
   ALTERNATIVE (wartbarer): Klasse 'nm-breadcrumb-abs' am Widget weglassen —
   die Breadcrumb fließt dann als erstes Element in .e-con-inner automatisch
   bündig über der H1, ganz ohne absolute Positionierung/calc(). */
.elementor-widget.nm-breadcrumb-abs {
  position: absolute !important;
  top: 20px;
  left: max(24px, calc((100% - var(--content-max)) / 2));
  right: auto;
  z-index: 2;
  width: auto !important;
}
/* ===== 32) HERO-LEAD / SUBTITLE unter H1 =====
   Anwendung (Widget → Erweitert → CSS-Klassen):
     nm-lead              → Standard (heller Hintergrund)
     nm-lead nm-lead-navy → auf Navy-Hero (heller Text)
     nm-lead nm-lead-center → zentriert
   Wirkt auf Text-Editor (p) UND Überschrift-Widget (.elementor-heading-title)
   ------------------------------------------------------------ */
.nm-lead,
.nm-lead p,
.nm-lead .elementor-heading-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--body);
  max-width: 60ch; /* angenehme Lesebreite */
  margin-top: 14px;
}
.nm-lead-center,
.nm-lead-center p,
.nm-lead-center .elementor-heading-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.nm-lead-navy,
.nm-lead-navy p,
.nm-lead-navy .elementor-heading-title {
  color: #cfe0f5;
}
/* ===== 33) FEATURED-BEITRAG (nm-feature) — Elementor Loop =====
   Zweispaltige „hervorgehobener Beitrag"-Karte für den Loop Grid
   (Query: Sticky/Neuester, 1 Beitrag). Klassen an die Container/Widgets:
     Äußerer Container ........ nm-feature
     Bild-Container/-Widget ... nm-feature-img
     Text-Container ........... nm-feature-body
     Tag-/Kategorie-Label ..... nm-feature-tag
     Titel-Überschrift ........ nm-feature-title
     Auszug-Text .............. nm-feature-text
     Meta-Zeile (Autor·Datum) . nm-feature-meta
     "Beitrag lesen"-Link ..... nm-feature-link
   ------------------------------------------------------------ */
/* Rahmen-Karte (Border/Radius/Schatten bleiben aussen) */
.nm-feature {
  padding: 0 !important;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden; /* rundet Bildecken sauber */
  background: #fff;
  box-shadow: var(--shadow-card);
}
/* Zwei-Spalten-Raster — ohne :has(), über Elementor-Klassen
   Boxed-Container  -> Raster auf .e-con-inner
   Full-Container   -> Raster auf .nm-feature selbst */
.nm-feature.e-con-boxed > .e-con-inner,
.nm-feature.e-con-full {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr;
  gap: 0 !important;
  align-items: stretch; /* Bildspalte = Höhe der Textspalte */
  padding: 0 !important;
  width: 100%;
}
@media (max-width: 980px) {
  .nm-feature.e-con-boxed > .e-con-inner,
  .nm-feature.e-con-full {
    grid-template-columns: 1fr;
  }
}
/* Bildseite — funktioniert mit Bild-Widget ODER Container-Hintergrundbild */
.nm-feature-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 0 !important;
  background: linear-gradient(135deg, var(--navy), var(--sky));
}
.nm-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fotos: randlos füllen */
  box-shadow: none !important;
}
/* Modifier für Logos/Grafiken: komplett zeigen statt beschneiden */
.nm-feature-img-contain img {
  object-fit: contain !important;
  padding: 36px;
}
@media (max-width: 980px) {
  .nm-feature-img {
    min-height: 200px;
  }
}
/* Textseite */
.nm-feature-body {
  padding: 34px 38px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
/* Tag / Kategorie-Label */
.nm-feature-tag,
.nm-feature-tag .elementor-heading-title {
  display: inline-block;
  width: max-content;
  background: rgba(46, 163, 242, 0.12);
  color: var(--sky-text);
  border: 1px solid rgba(46, 163, 242, 0.28);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
}
/* Titel */
.nm-feature-title .elementor-heading-title,
.nm-feature-body h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}
.nm-feature-title a {
  color: var(--navy);
  text-decoration: none;
}
.nm-feature-title a:hover {
  color: var(--sky-text);
}
/* Auszug */
.nm-feature-text,
.nm-feature-text p,
.nm-feature-body p {
  font-size: 0.96rem;
  color: var(--body);
  margin: 0;
}
/* Meta-Zeile */
.nm-feature-meta,
.nm-feature-meta .elementor-heading-title {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #556274;
  font-size: 0.84rem;
}
/* "Beitrag lesen"-Link */
.nm-feature-link a,
a.nm-feature-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--sky-text);
  text-decoration: none;
  font-size: 0.92rem;
  width: max-content;
}
.nm-feature-link a:hover,
a.nm-feature-link:hover {
  color: var(--violet);
}
/* ===== 34) KATEGORIE-NAVIGATION SIDEBAR (nm-catnav) =====
   Ausgabe des Shortcodes [nmit_category_nav].
   Vertikale Themen-Liste mit Zähler + aktivem Zustand.
   ------------------------------------------------------------ */
.nm-catnav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nm-catnav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--body);
  text-decoration: none;
  font-size: 0.92rem;
  transition:
    background 0.15s,
    color 0.15s;
}
.nm-catnav-link:hover {
  background: var(--bg-alt);
  color: var(--navy);
}
.nm-catnav-link.active {
  background: var(--bg-soft);
  color: var(--navy);
  font-weight: 600;
}
.nm-catnav-cnt {
  flex: 0 0 auto;
  font-size: 0.78rem;
  color: #556274;
}
/* ===== 35) BLOG-SUCHE (nm-search) =====
   Ausgabe des Shortcodes [nmit_blog_search].
   form.nm-search + !important, um Theme-/Elementor-Button-Defaults
   (Violet, runde Ecken, Umbruch) sicher zu überschreiben.
   ------------------------------------------------------------ */
form.nm-search {
  display: flex !important;
  flex-wrap: nowrap; /* Button bleibt neben dem Feld */
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
form.nm-search .nm-search-input {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  border: none;
  background: transparent;
  padding: 11px 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  box-shadow: none;
}
form.nm-search .nm-search-input::placeholder {
  color: #94a3b8;
}
form.nm-search .nm-search-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important; /* keine runden Ecken vom Theme */
  background: var(--navy) !important; /* statt globalem Violet */
  color: #fff !important;
  padding: 0 16px !important;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: none !important;
  transform: none !important;
  transition: background 0.15s;
}
form.nm-search .nm-search-btn:hover {
  background: #0a2a8a !important;
}
/* Lupe: Griff nach unten-rechts drehen */
form.nm-search .nm-search-ico {
  display: inline-block;
  transform: rotate(45deg);
}
form.nm-search :focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: -3px;
}
/* ===== 36) SORTLEISTE + SELECT (nm-sortbar / nm-select) =====
   nm-sortbar = Zeile (Anzahl links, Select rechts) — optional
   nm-select  = Styling des [nmit_sort_select]-Dropdowns
   ------------------------------------------------------------ */
.nm-sortbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.nm-sortbar .nm-sortbar-count {
  font-size: 0.88rem;
  color: #556274;
}
/* Select — eigenes Chevron statt System-Pfeil */
select.nm-select {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  padding: 9px 38px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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' fill='none' stroke='%23001860' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
select.nm-select:hover {
  border-color: var(--sky);
}
select.nm-select:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
}

/* ===== Kontakt-Zeilen (nm-contact) ===== */
.nm-contact{display:flex;flex-direction:column;gap:14px}
.nm-contact a{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--ink);font-weight:600;font-size:.98rem}
.nm-contact a:hover{color:var(--sky-text)}
.nm-contact .ai{width:44px;height:44px;border-radius:11px;background:var(--bg-soft);
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0;color:var(--sky)}
.nm-contact small{display:block;font-weight:400;color:var(--body);font-size:.84rem}



/* NM-FIX: Tarif-Karten mobil untereinander */
@media (max-width: 767px) {
  .nm-tier.elementor-widget-price-table {
    flex: 0 0 auto !important;
    width: 100%;
  }
}


/* NM-FIX: Text-Overflow-Schutz (lange Woerter, Buttons) */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.product_title {
  overflow-wrap: break-word;
  word-break: keep-all;
  hyphens: none;
  -webkit-hyphens: none;
  text-wrap: balance;
}
.elementor-widget-text-editor p,
.elementor-widget-text-editor li,
.elementor-price-table__feature-inner span,
.elementor-icon-list-text,
.widget li a {
  overflow-wrap: break-word;
}
a.elementor-button, .elementor-button {
  max-width: 100%;
  white-space: normal;
}


/* NM-FIX 2: Trustbar-Umbruch mobil + breitere Overflow-Absicherung */
@media (max-width: 767px) {
  .nm-trustbar {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 4px;
  }
}
.elementor-widget-text-editor,
a.e-con, a.e-con-full,
.e-con > .elementor-widget {
  overflow-wrap: break-word;
}


/* nm-breadcrumb */
.nm-breadcrumb .rank-math-breadcrumb p{margin:0;}
/* Position: 20px unter dem Header, wie im Shop-Hero */
.e-con.nm-breadcrumb-abs{position:absolute;top:20px;left:max(24px,calc((100% - var(--content-max))/2));right:auto;z-index:2;width:auto;padding:0;}
.elementor-element-8ecfb61,.elementor-element-799e6d7,.elementor-element-3547be0,.elementor-element-86e1e58{position:relative;}
/* .nm-hero: Elementor legt .e-con-inner als Bezugspunkt dazwischen -> stattdessen im Fluss, Hero-Padding auf 20px */
.nm-hero:has(.nm-breadcrumb){padding-top:9px;}
.nm-hero .nm-breadcrumb-abs{position:static;width:100%;left:auto;top:auto;margin:0 0 60px;}
@media(max-width:767px){.e-con.nm-breadcrumb-abs,.elementor-widget.nm-breadcrumb-abs{top:16px;left:max(20px,5%);}.nm-hero:has(.nm-breadcrumb){padding-top:5px;}.nm-hero .nm-breadcrumb-abs{margin-bottom:32px;}.nm-breadcrumb{max-width:calc(100% - 40px);}}
/* NM-FIX 2026-08-24: Breadcrumb bricht mobil um statt einzeilig abgeschnitten/scrollbar zu sein
   (Responsive-Check 24.08., 12 Seiten mit langen Titeln; von Raphael freigegeben). */

/* ===== 39) SUCHERGEBNISSE - HERO & LUPE =====
   Template "Suchergebnisse" (ID 8522) + Snippet "NMIT Suche".
     nm-search-h1    -> H1 im Navy-Hero
     nm-search-hero  -> Container um das Elementor-Search-Widget
     nm-search-lg    -> grosse Variante von form.nm-search
   ------------------------------------------------------------ */
:root{
  --nm-ico-search:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-4.4-4.4'/%3E%3C/svg%3E");
}
.nm-search-h1{font-family:"Montserrat",sans-serif;font-weight:800;font-size:clamp(1.7rem,3.4vw,2.5rem);line-height:1.14;letter-spacing:-.02em;color:#fff;margin:.25em 0 .3em}
/* Echte Lupe statt Zeichen-Hack - wirkt auch auf Blog- und Shop-Suche */
form.nm-search .nm-search-ico{display:inline-block;width:17px;height:17px;transform:none;background:currentColor;-webkit-mask:var(--nm-ico-search) center/contain no-repeat;mask:var(--nm-ico-search) center/contain no-repeat}
/* Grosse Variante des eigenen Suchformulars */
form.nm-search.nm-search-lg{border:0;border-radius:12px;box-shadow:0 12px 34px rgba(0,10,40,.28);max-width:620px}
form.nm-search.nm-search-lg .nm-search-input{padding:15px 18px!important;font-size:1rem!important}
form.nm-search.nm-search-lg .nm-search-btn{gap:9px;padding:0 26px!important;font-family:"Montserrat",sans-serif;font-weight:700;font-size:.95rem}/* Elementor-v4-Search-Widget im Navy-Hero ans CI angleichen.
   Button in Violet, weil Navy auf Navy praktisch unsichtbar ist. */
.nm-search-hero search{display:block}
.nm-search-hero form{display:flex!important;flex-wrap:nowrap;align-items:stretch;position:relative;background:#fff!important;border:0!important;border-radius:12px!important;overflow:hidden;padding:0!important;gap:0!important;max-width:620px;box-shadow:0 12px 34px rgba(0,10,40,.28)}
.nm-search-hero search,.nm-search-hero .elementor-widget-container{border:0!important;border-radius:0!important;box-shadow:none!important;background:transparent!important;padding:0!important}
.nm-search-hero form>label{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
.nm-search-hero form>svg{display:none}
.nm-search-hero input[type=search]{flex:1 1 auto!important;min-width:0;width:auto!important;margin:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;padding:15px 18px!important;height:auto!important;font-family:"Inter",system-ui,sans-serif!important;font-size:1rem!important;color:var(--navy)!important;outline:none}
.nm-search-hero input[type=search]::placeholder{color:#94a3b8}
.nm-search-hero button[type=submit]{flex:0 0 auto!important;width:auto!important;margin:0!important;display:flex!important;align-items:center;justify-content:center;gap:9px;border:0!important;border-radius:0 12px 12px 0!important;box-shadow:none!important;transform:none!important;background:var(--violet)!important;background-image:none!important;color:#fff!important;font-family:"Montserrat",sans-serif!important;font-weight:700!important;font-size:.95rem!important;padding:0 26px!important;cursor:pointer;transition:background .15s}
.nm-search-hero button[type=submit]:hover{background:#a24ef0!important}
.nm-search-hero button[type=submit]::before{content:"";flex:0 0 auto;width:18px;height:18px;background:currentColor;-webkit-mask:var(--nm-ico-search) center/contain no-repeat;mask:var(--nm-ico-search) center/contain no-repeat}
.nm-search-hero output{position:absolute;top:100%;left:0;right:0;z-index:30;background:#fff;border:1px solid var(--line);border-top:0;border-radius:0 0 12px 12px;box-shadow:var(--shadow-media);text-align:left;max-height:60vh;overflow:auto}
.nm-search-hero output:empty{display:none}
.nm-search-hero :focus-visible{outline:3px solid var(--violet);outline-offset:-3px}
@media(max-width:767px){
.nm-search-hero form,form.nm-search.nm-search-lg{flex-direction:column;border-radius:12px}
.nm-search-hero button[type=submit]{padding:14px!important;border-radius:0 0 12px 12px!important}
}

/* ===== 40) FILTER-PILLS (nm-pillrow / nm-pill) ===== */
.nm-pillrow{display:flex;flex-wrap:wrap;gap:10px}
.nm-pill{display:inline-flex;align-items:center;gap:8px;font-family:"Montserrat",sans-serif;font-weight:600;font-size:.85rem;line-height:1.2;padding:8px 16px;border-radius:999px;background:var(--bg);border:1px solid var(--line);color:var(--navy);text-decoration:none;transition:border-color .15s,background .15s,color .15s}
.nm-pill:hover,.nm-pill:focus,.nm-pill:active{background:var(--bg)!important;color:var(--navy)!important;border-color:var(--sky)!important}
.nm-pill-cnt{font-family:"JetBrains Mono",monospace;font-size:.75rem;font-weight:500;line-height:1;padding:3px 7px;border-radius:999px;background:#f1f5f9;color:var(--body)}
.nm-pill.active,.nm-pill.active:hover,.nm-pill.active:focus{background:var(--navy)!important;color:#fff!important;border-color:var(--navy)!important}
.nm-pill.active .nm-pill-cnt{background:rgba(255,255,255,.18);color:#fff}
.nm-pill:focus-visible{outline:3px solid var(--violet);outline-offset:3px}
/* ===== 41) SUCHERGEBNIS-ZEILE (nm-result) + TYP-BADGES (nm-type) =====
   Markup:  <a class="nm-card nm-result"> - erbt Rahmen, Radius und Hover
            von .nm-card (Abschnitt 3), ueberschreibt nur Layout+Padding.
   ------------------------------------------------------------ */
.nm-card.nm-result{display:grid;grid-template-columns:150px 1fr;gap:20px;padding:18px;align-items:stretch}
.nm-result:hover{border-color:rgba(46,163,242,.4)}
.nm-result:focus-visible{outline:3px solid var(--violet);outline-offset:3px}
.nm-result-thumb{aspect-ratio:16/10;border-radius:11px;overflow:hidden;background:var(--bg-soft);display:flex;align-items:center;justify-content:center}
.nm-result-thumb img{width:100%;height:100%;object-fit:cover;display:block;box-shadow:none}
.nm-result-thumb.is-icon{background:linear-gradient(135deg,var(--navy),var(--sky));color:#fff;font-size:2rem}
.nm-result-body{display:flex;flex-direction:column;min-width:0}
.nm-result-top{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:8px}
.nm-result h3{font-family:"Montserrat",sans-serif;font-size:1.02rem;font-weight:700;color:var(--ink);line-height:1.3;margin:0 0 6px}
.nm-result:hover h3{color:var(--navy)}
.nm-result p{font-size:.9rem;margin:0 0 12px;color:var(--body)}
.nm-result mark{background:rgba(0,255,255,.32);color:var(--ink);padding:0 2px;border-radius:3px;font-weight:600}
.nm-result-path{font-family:"JetBrains Mono",monospace;font-size:.76rem;color:#64748b;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0}
.nm-result-meta{margin-top:auto;display:flex;gap:12px;align-items:center;flex-wrap:wrap;color:#64748b;font-size:.8rem;padding-top:12px;border-top:1px dashed var(--line)}
.nm-result-meta .nm-dot{width:5px;height:5px;border-radius:50%;background:var(--sky);flex:0 0 auto}
.nm-result .nm-card-cta{margin-left:auto;font-family:"Montserrat",sans-serif;font-weight:700;font-size:.85rem}
/* Typ-Badges */
.nm-type{font-family:"JetBrains Mono",monospace;font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;padding:4px 10px;border-radius:999px;border:1px solid;white-space:nowrap;flex:0 0 auto}
.nm-type-post{background:rgba(46,163,242,.12);color:var(--sky-text);border-color:rgba(46,163,242,.28)}
.nm-type-service{background:rgba(0,24,96,.07);color:var(--navy);border-color:rgba(0,24,96,.18)}
.nm-type-product{background:rgba(143,53,238,.10);color:#7d2fbe;border-color:rgba(143,53,238,.30)}
.nm-type-page{background:#f1f5f9;color:#64748b;border-color:var(--line)}
/* Kompakter Preis fuer Listen (Basis: .nm-price, Abschnitt 7) */
.nm-price.nm-price-sm{display:inline-flex;gap:6px}
.nm-price.nm-price-sm b{font-size:1.02rem;color:var(--navy)}
.nm-price.nm-price-sm s{font-size:.85rem}
@media(max-width:767px){
.nm-card.nm-result{grid-template-columns:1fr;gap:14px}
.nm-result-thumb{aspect-ratio:16/7}
.nm-result-path{display:none}
}
/* ===== 42) SUCHE - LEERZUSTAND (nm-empty) + SCHLAGWORTE (nm-tagcloud) ===== */
.nm-empty{max-width:70ch;margin:0 auto;text-align:center}
.nm-empty-glyph{display:inline-block;width:52px;height:52px;margin-bottom:14px;background:linear-gradient(120deg,var(--sky),var(--violet));-webkit-mask:var(--nm-ico-search) center/contain no-repeat;mask:var(--nm-ico-search) center/contain no-repeat}
.nm-empty h2{font-family:"Montserrat",sans-serif;font-weight:800;color:var(--navy);font-size:clamp(1.35rem,2.4vw,1.9rem);margin:0 0 10px;hyphens:none;-webkit-hyphens:none;text-wrap:balance}
.nm-empty .nm-lead{margin:0 auto 24px}
.nm-empty .nm-factbox{text-align:left;margin-bottom:24px}
.nm-empty .nm-factbox h3{font-family:"Montserrat",sans-serif;font-size:1.02rem;font-weight:700;color:var(--ink);margin:0 0 10px}
.nm-empty .nm-factbox ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.nm-empty .nm-factbox li{font-size:.92rem;padding-left:26px;position:relative}
.nm-empty .nm-factbox li:before{content:"2713";position:absolute;left:0;top:0;color:var(--sky);font-weight:700}
.nm-empty .nm-tagcloud{justify-content:center;margin-bottom:34px}
.nm-quick{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;text-align:left}
.nm-quick .nm-card{padding:22px 20px}
.nm-quick .nm-card h3{font-family:"Montserrat",sans-serif;font-size:1.02rem;font-weight:700;color:var(--ink);margin:0 0 6px}
.nm-quick .nm-card p{font-size:.88rem;margin:0 0 12px}
.nm-quick .nm-card-icon{margin-bottom:10px}
.nm-quick .nm-card-cta{margin-top:auto;font-size:.86rem}
@media(max-width:1024px){.nm-quick{grid-template-columns:repeat(2,1fr)}}
@media(max-width:767px){.nm-quick{grid-template-columns:1fr}}
.nm-tagcloud{display:flex;flex-wrap:wrap;gap:8px}
.nm-tagcloud a{font-size:.82rem;padding:6px 12px;border-radius:999px;background:var(--bg);border:1px solid var(--line);color:var(--navy);text-decoration:none;transition:border-color .15s,color .15s}
.nm-tagcloud a:hover{border-color:var(--sky);color:var(--sky-text)}
/* Leerer Shortcode-Platzhalter darf keinen Abstand erzeugen */
.elementor-widget-shortcode:has(>.elementor-widget-container:empty){display:none}

/* ===== 43) LOOP-GRID-PAGINIERUNG (nm-pagination) =====
   Klasse an das Loop-Grid-Widget. ------------------------------ */
.nm-pagination .elementor-pagination{display:flex;justify-content:center;align-items:center;gap:6px;flex-wrap:wrap;margin-top:34px}
.nm-pagination .page-numbers{min-width:38px;height:38px;padding:0 10px;display:flex;align-items:center;justify-content:center;border:1px solid var(--line);border-radius:9px;color:var(--navy);text-decoration:none;font-family:"Montserrat",sans-serif;font-weight:700;font-size:.9rem;transition:border-color .15s,background .15s,color .15s}
.nm-pagination .page-numbers:hover{border-color:var(--sky);color:var(--sky-text)}
.nm-pagination .page-numbers.current{background:var(--navy);color:#fff;border-color:var(--navy)}
.nm-pagination .page-numbers.dots{border-color:transparent;min-width:auto;padding:0 4px}
.nm-pagination .page-numbers:focus-visible{outline:3px solid var(--violet);outline-offset:2px}
.nm-price.nm-price-sm{font-family:"Montserrat",sans-serif;font-weight:700;color:var(--navy);align-items:baseline}
.nm-price-sm .woocommerce-Price-amount{font-weight:800;font-size:1.02rem;color:var(--navy)}
.nm-price-sm small,.nm-price-sm .woocommerce-Price-taxLabel{font-family:"Inter",system-ui,sans-serif;font-weight:400;font-size:.76rem;color:#64748b}

/* Korrekturen 39-43 */
h1.nm-search-h1,.elementor-widget-shortcode h1.nm-search-h1{color:#fff!important}
.nm-result-thumb{min-width:0;width:100%}
.nm-result-body{min-width:0}

/* Sidebar der Suchergebnisse bleibt beim Scrollen stehen */
@media(min-width:1025px){.nm-search-sidebar{position:sticky;top:96px}}

/* Lupe setzt sich gegen Inline-Snippet-CSS durch (nmit-blog-search) */
form.nm-search .nm-search-ico{display:inline-block!important;width:17px!important;height:17px!important;transform:none!important;font-size:0!important;line-height:0!important;background:currentColor!important;-webkit-mask:var(--nm-ico-search) center/contain no-repeat!important;mask:var(--nm-ico-search) center/contain no-repeat!important}


/* 44 Karten-Raster (3 Spalten, beliebige Anzahl) */
.nm-cardgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px 20px;align-items:stretch}
.nm-cardgrid>.nm-card{width:auto;max-width:none}
@media(max-width:1024px){.nm-cardgrid{grid-template-columns:repeat(2,1fr);gap:24px 20px}}
@media(max-width:767px){.nm-cardgrid{grid-template-columns:1fr;gap:20px}}

.nm-cardgrid-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:1024px){.nm-cardgrid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:767px){.nm-cardgrid-4{grid-template-columns:1fr}}

/* NM-FIX: Tarif-Karten mobil untereinander */
@media (max-width: 767px) {
  .nm-tier.elementor-widget-price-table {
    flex: 0 0 auto !important;
    width: 100%;
  }
}


/* NM-FIX: Text-Overflow-Schutz (lange Woerter, Buttons) */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.product_title {
  overflow-wrap: break-word;
  word-break: keep-all;
  hyphens: none;
  -webkit-hyphens: none;
  text-wrap: balance;
}
.elementor-widget-text-editor p,
.elementor-widget-text-editor li,
.elementor-price-table__feature-inner span,
.elementor-icon-list-text,
.widget li a {
  overflow-wrap: break-word;
}
a.elementor-button, .elementor-button {
  max-width: 100%;
  white-space: normal;
}


/* NM-FIX 2: Trustbar-Umbruch mobil + breitere Overflow-Absicherung */
@media (max-width: 767px) {
  .nm-trustbar {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 4px;
  }
}
.elementor-widget-text-editor,
a.e-con, a.e-con-full,
.e-con > .elementor-widget {
  overflow-wrap: break-word;
}

/* ===== 44) WOOCOMMERCE-HINWEISE ans CI =====
   WooCommerce-Default: Lime-Gruen #8FAE1B (Rahmen-oben + Haekchen) auf Grau #F6F5F8,
   grauer Text/Button. Ersatz durch das dokumentierte Status-Farbset. */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
  font-family:"Inter",system-ui,sans-serif;
  border-radius:10px;
}
/* Erfolg — z. B. „... wurde Ihrem Warenkorb hinzugefuegt." */
.woocommerce-message{
  background:#EAFAF0;
  color:#0A6B33;
  border:1px solid #B8E6C8;
  border-top:3px solid #0A6B33;
}
.woocommerce-message::before{color:#0A6B33;}
/* Info — neutrale Hinweise (Warenkorb leer, Gutschein ...) */
.woocommerce-info{
  background:var(--bg-alt);
  color:var(--navy);
  border:1px solid var(--line);
  border-top:3px solid var(--sky-text);
}
.woocommerce-info::before{color:var(--sky-text);}
/* Fehler */
.woocommerce-error{
  background:#FBECEC;
  color:#B91C1C;
  border:1px solid #F0C4C4;
  border-top:3px solid #B91C1C;
}
.woocommerce-error::before{color:#B91C1C;}
/* Aktions-Button in Hinweisen („Warenkorb anzeigen") — Navy statt Grau, Violett-Hover */
.woocommerce-message .button,
.woocommerce-message a.button,
.woocommerce-info .button,
.woocommerce-info a.button{
  background:var(--navy)!important;
  color:#fff!important;
  border:0!important;
  border-radius:8px!important;
  transition:background .15s;
}
.woocommerce-message .button:hover,
.woocommerce-message a.button:hover,
.woocommerce-info .button:hover,
.woocommerce-info a.button:hover{
  background:var(--violet)!important;
}

/* ===== 45) VOLLBILD-SUCHE: CI-Rahmen + Autofill-Gelb neutralisieren =====
   Der gelbe Rahmen ist Browser-Autofill („Gespeicherte Informationen"), kein
   Site-Style. Wir geben dem Feld einen CI-Rahmen (Violett) und zwingen die
   gelbe Autofill-Fuellung auf Weiss. */
.elementor-search-form--skin-full_screen .elementor-search-form__input,
.elementor-search-form--full-screen .elementor-search-form__input{
  border:2px solid var(--violet)!important;
  border-radius:12px!important;
}
.elementor-search-form--skin-full_screen .elementor-search-form__input:focus,
.elementor-search-form--full-screen .elementor-search-form__input:focus{
  outline:3px solid var(--violet);
  outline-offset:2px;
}
input[type=search]:-webkit-autofill,
input[type=search]:-webkit-autofill:hover,
input[type=search]:-webkit-autofill:focus,
.elementor-search-form__input:-webkit-autofill,
.nm-search-input:-webkit-autofill{
  -webkit-box-shadow:0 0 0 100px #fff inset!important;
  box-shadow:0 0 0 100px #fff inset!important;
  -webkit-text-fill-color:var(--navy)!important;
  caret-color:var(--navy);
}


/* ===== NM-FIX 2026-08-24: Buttons in einer Reihe/Spalte einheitlich gross =====
   Greift NUR, wenn >=2 Button-Widgets direkte Geschwister im selben Container sind
   (z. B. Hero: "Kostenloses Erstgespraech" + "Leistungen ansehen").
   Desktop/Tablet (Reihe): gleiche Breite (= breitester Button, kein Textumbruch)
   und gleiche Hoehe. Mobil (gestapelt): beide volle Breite. */
@media (min-width: 768px) {
  .e-con:has(> .elementor-widget-button + .elementor-widget-button),
  .e-con > .e-con-inner:has(> .elementor-widget-button + .elementor-widget-button) {
    align-items: stretch;
    flex-wrap: wrap;
  }
  .e-con:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button,
  .e-con > .e-con-inner:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button {
    flex: 1 1 max-content;
    min-width: 0;
    max-width: 100%;
    display: flex;
  }
  .e-con:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button .elementor-button-wrapper,
  .e-con > .e-con-inner:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button .elementor-button-wrapper {
    display: flex;
    width: 100%;
  }
  .e-con:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button .elementor-button,
  .e-con > .e-con-inner:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button .elementor-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .e-con:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button,
  .e-con > .e-con-inner:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button {
    width: 100%;
  }
  .e-con:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button .elementor-button,
  .e-con > .e-con-inner:has(> .elementor-widget-button + .elementor-widget-button) > .elementor-widget-button .elementor-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== 46) LOOP-KARTEN: CTA-Button als Text-Link + ganze Karte klickbar =====
   Partner-/Beitrags-Loops (Template 4712 u. a.) nutzen einen Button mit
   dynamischem Post-URL-Link (Container-Dynamic-Link rendert in Elementor 4.2
   nicht). Der Button wird als dezenter Text-Link dargestellt und via
   Stretched-Link ueber die ganze Karte gelegt. */
.nm-card:has(.nm-card-cta .elementor-button){position:relative}
.nm-card-cta .elementor-button{
  background:transparent!important;background-image:none!important;color:var(--sky-text);
  border:0!important;box-shadow:none!important;padding:0!important;
  font-family:inherit;font-weight:600;font-size:1rem;transform:none!important;
}
.nm-card-cta .elementor-button:hover{color:var(--violet)!important}
.nm-card-cta .elementor-button-wrapper{text-align:left}
.nm-card-cta .elementor-button .elementor-button-content-wrapper{justify-content:flex-start}
/* Stretched-Link: Klick auf die ganze Karte folgt dem Button-Link */
.nm-card-cta .elementor-button::after{content:"";position:absolute;inset:0;z-index:1}

/* Stretched-Link-Fix Loop-Cards (01.09.2026): Elementor setzt jedes Widget auf position:relative -> das CTA-Widget war Containing-Block fuers ::after-Overlay, dadurch nur die Button-Zeile klickbar. static -> Containing-Block wird wieder .nm-card, Overlay deckt die ganze Karte. nm-pin-bottom (margin-top:auto) bleibt. */
.nm-card .nm-card-cta.elementor-widget{position:static!important}

/* Partner-Ticker (Widget e2646e8): kontinuierlicher, linearer Lauf statt gestuftem Autoplay. Mit autoplay_speed=0 + speed=6000 im Widget = Endlos-Laufband. */
.elementor-element-e2646e8 .swiper-wrapper{transition-timing-function:linear!important}
