/* ============================================================
   DAWICON Helpers (Cool Mist V2, April 2026)
   ============================================================
   ~20 KB — schlank, fokussiert.
   Nur die F.1-F.17 Custom-CSS-Ausnahmen aus
   ELEMENTOR-INSTRUCTIONS.md V2 — alles, was Elementor nativ
   nicht abbildet (JS-getrieben, Marquee, sehr custom-Layout).

   Globale Tokens, Buttons, Cards, Surfaces, Typografie
   leben in Elementor Site Settings — siehe ELEMENTOR-
   INSTRUCTIONS.md Section A + B.
   ============================================================ */

/* ===== Token-Aliasse für Custom-CSS-Referenzen =============== */
:root {
  --dw-blue: #0093FF;
  --dw-blue-hover: #007ED9;
  --dw-blue-tint: rgba(0, 147, 255, 0.08);
  --dw-midnight: #0F1B2D;
  --dw-body: #384554;
  --dw-muted: #5C6B7E;
  --dw-mist: #D5DCE5;
  --dw-mist-soft: #E8ECF1;
  --dw-cool-mist: #F4F7FB;
  --dw-white: #FFFFFF;
  --dw-radius: 6px;
  --dw-shadow-sm: 0 2px 6px rgba(15, 27, 45, 0.06);
  --dw-shadow-md: 0 6px 18px rgba(15, 27, 45, 0.08);
  --dw-shadow-lg: 0 16px 40px rgba(15, 27, 45, 0.12);
  --dw-font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ===== Icon-System V1 (Mai 2026) ============================ */
/* Globale Defaults für alle SVG-Icons. Spec siehe
   /elementor/icon-system-v1-spec.html.
   Inline-stroke-width-Overrides ("2", "2.4", "2.5") in allen
   Mockups entfernt — CSS übernimmt verbindlich.

   Alle SVGs nutzen viewBox="0 0 24 24" und path/circle/rect
   ohne stroke-, fill-, stroke-linecap-, stroke-linejoin-Attribute. */

.dw-icon,
svg.icon,
.mega-item-icon svg,
.symptom-icon svg,
.stat-icon svg,
.topic-icon svg,
.benefit-icon svg,
.service-icon svg,
.contact-card-icon,
.audience-card-icon,
.cat-button .cat-icon svg,
.hero-meta-item svg,
.roi-slider-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* T-Shirt-Sizes — eindeutige Zuweisung pro Use-Case */
.dw-icon-xs { width: 14px; height: 14px; }   /* Buttons */
.dw-icon-sm { width: 16px; height: 16px; }   /* Inline-Links, Hero-Meta */
.dw-icon-md { width: 20px; height: 20px; }   /* Mega-Dropdown */
.dw-icon-lg { width: 24px; height: 24px; }   /* Sektions-Icons */
.dw-icon-xl { width: 28px; height: 28px; }   /* Topic-Cards, Service-Card */

/* Inverse-Variante auf Midnight-Surface */
.page-hero .dw-icon,
.page-hero svg.icon,
.final-cta .dw-icon,
.final-cta svg.icon,
.story .dw-icon,
.story svg.icon,
.footer .dw-icon,
.footer svg.icon { color: rgba(255, 255, 255, 0.85); }

/* ===== F.15 — H1 Inline-Akzent =============================== */
.h1-accent { color: var(--dw-blue); }

/* ===== F.8 — Footer-Logo invertiert ========================= */
.footer .elementor-widget-image img,
.is-footer-logo-invert img {
  filter: brightness(0) invert(1);
}

/* ===== F.7 — Yoast Breadcrumbs Wrapper ====================== */
.breadcrumb,
.yoast-breadcrumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; flex-wrap: wrap;
}
.page-hero .breadcrumb,
.page-hero .yoast-breadcrumbs { color: rgba(255, 255, 255, 0.55); margin-bottom: 24px; }
.page-hero .breadcrumb a,
.page-hero .yoast-breadcrumbs a { color: rgba(255, 255, 255, 0.55); }
.page-hero .breadcrumb a:hover,
.page-hero .yoast-breadcrumbs a:hover { color: var(--dw-white); }

/* ===== F.1 — Mega-Dropdown (Header) ========================= */
.nav-item.has-mega { position: relative; display: inline-flex; align-items: center; }
.mega-dropdown {
  position: absolute; top: calc(100% + 24px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(920px, 92vw);
  background: var(--dw-white);
  border: 1px solid var(--dw-mist);
  border-radius: var(--dw-radius);
  box-shadow: var(--dw-shadow-lg);
  padding: 28px 28px 18px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 200;
}
.mega-dropdown.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-dropdown::before {
  content: ""; position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--dw-white);
  border-left: 1px solid var(--dw-mist);
  border-top: 1px solid var(--dw-mist);
}
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mega-col { display: flex; flex-direction: column; gap: 8px; }
.mega-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dw-muted);
  margin-bottom: 4px; padding-bottom: 8px;
  border-bottom: 1px solid var(--dw-mist);
}
.mega-item {
  display: flex; gap: 10px; padding: 10px;
  border-radius: 4px; transition: background .18s;
  align-items: flex-start; color: var(--dw-midnight);
  text-decoration: none;
}
.mega-item:hover { background: var(--dw-cool-mist); }
.mega-item-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: var(--dw-midnight); }
.mega-item:hover .mega-item-icon { color: var(--dw-blue); }
.mega-item-text strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
.mega-item-text span { font-size: 12px; color: var(--dw-muted); line-height: 1.4; }
.mega-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--dw-mist); gap: 16px; flex-wrap: wrap;
}
.mega-foot-link {
  font-size: 14px; font-weight: 600; color: var(--dw-blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .18s;
}
.mega-foot-link:hover { gap: 10px; }
.mega-foot-hint { font-size: 12px; color: var(--dw-muted); }
@media (max-width: 900px) { .mega-dropdown { display: none; } }

/* ===== F.3 — Reading-Progress-Bar (Single Post) ============= */
.reading-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: transparent; z-index: 1000;
}
.reading-progress-bar {
  height: 100%; width: 0%;
  background: var(--dw-blue);
  transition: width .1s linear;
}

/* ===== F.2 — Article-TOC (Single Post sticky) =============== */
.article-toc {
  position: sticky; top: 96px;
  font-size: 13px; line-height: 1.5;
  border-left: 1px solid var(--dw-mist);
  padding-left: 16px;
}
.article-toc h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dw-muted); margin-bottom: 12px;
}
.article-toc a {
  display: block; color: var(--dw-body);
  padding: 6px 0; text-decoration: none;
  border-left: 2px solid transparent; padding-left: 12px;
  margin-left: -16px;
}
.article-toc a:hover { color: var(--dw-midnight); }
.article-toc a.is-active {
  color: var(--dw-blue); border-left-color: var(--dw-blue); font-weight: 500;
}

/* ===== F.4 — Counter-Animation (Track-Record) =============== */
.tr-counters {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.tr-counter { text-align: center; }
.tr-num {
  font-size: clamp(34px, 5vw, 56px); font-weight: 600;
  color: var(--dw-midnight); letter-spacing: -0.028em;
  line-height: 1; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.tr-num .count::after { content: attr(data-suffix); }
.tr-lbl {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dw-muted);
}
@media (max-width: 720px) { .tr-counters { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }

/* ===== F.16 — Logobanner-Marquee ============================ */
.logobanner-grid {
  display: flex; gap: clamp(28px, 4vw, 56px); align-items: center;
  overflow: hidden;
}
.logobanner-track {
  display: flex; gap: clamp(28px, 4vw, 56px); align-items: center;
  animation: dawicon-marquee 40s linear infinite; flex-shrink: 0;
}
.logobanner-grid:hover .logobanner-track { animation-play-state: paused; }
.logobanner-track img {
  height: 28px; width: auto; opacity: 0.6; flex-shrink: 0;
  filter: grayscale(100%); transition: opacity .2s, filter .2s;
}
.logobanner-track img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes dawicon-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== F.5 — ROI-Calculator (Reporting & BI) ================ */
/* Klassen 1:1 wie im Mockup dawicon-leistungen-reporting-bi.html */
.roi { padding: clamp(64px, 9vw, 112px) 0; background: var(--dw-cool-mist); }
.roi-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--dw-mist);
  background: var(--dw-white);
  border-radius: var(--dw-radius);
  align-items: stretch; overflow: hidden;
}
.roi-inputs {
  background: var(--dw-white);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex; flex-direction: column; gap: 28px;
  border-right: 1px solid var(--dw-mist);
}
.roi-slider { display: flex; flex-direction: column; gap: 12px; }
.roi-slider-head { display: flex; align-items: center; gap: 14px; }
.roi-slider-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--dw-blue);
}
.roi-slider-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.75; fill: none; }
.roi-slider-label { flex: 1; min-width: 0; }
.roi-slider-label strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--dw-midnight); line-height: 1.35; letter-spacing: -0.005em;
}
.roi-slider-label span { font-size: 12px; color: var(--dw-muted); line-height: 1.5; }
.roi-value {
  flex-shrink: 0; min-width: 72px; padding: 6px 12px;
  background: var(--dw-midnight); color: var(--dw-white);
  font-size: 14px; font-weight: 600; border-radius: 4px;
  text-align: center; font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.roi-range {
  appearance: none; -webkit-appearance: none;
  width: 100%; height: 4px;
  background: linear-gradient(to right,
    var(--dw-blue) 0%, var(--dw-blue) var(--fill, 0%),
    var(--dw-mist) var(--fill, 0%), var(--dw-mist) 100%);
  outline: none; cursor: pointer; margin: 0;
}
.roi-range::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--dw-white); border: 2px solid var(--dw-blue);
  cursor: pointer; transition: border-color .15s;
}
.roi-range::-webkit-slider-thumb:hover { border-color: var(--dw-blue-hover); }
.roi-range::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--dw-white); border: 2px solid var(--dw-blue);
  cursor: pointer; transition: border-color .15s;
}
.roi-range:focus-visible::-webkit-slider-thumb {
  border-color: var(--dw-blue); box-shadow: 0 0 0 3px var(--dw-blue-tint);
}
.roi-range-bounds {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--dw-muted);
  font-variant-numeric: tabular-nums; margin-top: 2px; letter-spacing: 0.02em;
}
.roi-results {
  background: var(--dw-midnight); color: var(--dw-white);
  padding: clamp(28px, 3.5vw, 40px); position: relative;
}
.roi-results-inner { display: flex; flex-direction: column; gap: 22px; height: 100%; }
.roi-headline-label {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7); margin-bottom: 14px;
}
.roi-headline-value {
  display: block; font-size: clamp(44px, 6vw, 68px);
  font-weight: 600; color: var(--dw-white);
  line-height: 1; letter-spacing: -0.028em;
  font-variant-numeric: tabular-nums;
}
.roi-headline-value-prefix {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 500;
  color: var(--dw-blue); margin-right: 8px;
}
.roi-headline-sub {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.65); margin-top: 12px; line-height: 1.5;
}
.roi-breakdown {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.roi-breakdown-row {
  display: flex; justify-content: space-between;
  align-items: center; gap: 12px; font-size: 13.5px;
}
.roi-breakdown-row > span { color: rgba(255,255,255,0.72); line-height: 1.4; }
.roi-breakdown-row > strong {
  color: var(--dw-white); font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap; flex-shrink: 0; letter-spacing: -0.01em;
}
.roi-breakdown-sum {
  padding-top: 14px; margin-top: 4px;
  border-top: 1px dashed rgba(255,255,255,0.18);
}
.roi-breakdown-sum > span { color: var(--dw-white); font-weight: 600; }
.roi-breakdown-sum > strong { font-size: 17px; color: var(--dw-blue); }
.roi-disclaimer { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }
@media (max-width: 720px) {
  .roi-grid { grid-template-columns: 1fr; }
  .roi-inputs { border-right: 0; border-bottom: 1px solid var(--dw-mist); }
}

/* ===== F.6 — Phases-Timeline (Due Diligence) ================ */
.phases-timeline {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; counter-reset: phase;
}
.phases-timeline::before {
  content: ""; position: absolute;
  left: 10%; right: 10%; top: 24px; height: 2px;
  background: var(--dw-mist); z-index: 0;
}
.phase-step {
  position: relative; z-index: 1; text-align: center;
  padding: 0 12px;
}
.phase-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--dw-white); border: 2px solid var(--dw-blue);
  color: var(--dw-blue); display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--dw-font-mono); font-size: 16px; font-weight: 600;
  margin-bottom: 16px;
}
.phase-step h4 { font-size: 15px; margin-bottom: 6px; color: var(--dw-midnight); }
.phase-step p { font-size: 13px; color: var(--dw-muted); line-height: 1.5; }
@media (max-width: 900px) {
  .phases-timeline { grid-template-columns: 1fr; gap: 24px; }
  .phases-timeline::before { display: none; }
}

/* ===== F.6 — Pricing-Cards (VSOP/ESOP) ====================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--dw-white); border: 1px solid var(--dw-mist);
  border-radius: var(--dw-radius); padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-card.is-featured {
  border-color: var(--dw-blue); box-shadow: var(--dw-shadow-md);
}
.pricing-card-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--dw-blue); color: var(--dw-white);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.pricing-card-price {
  font-size: 34px; font-weight: 600; color: var(--dw-midnight);
  letter-spacing: -0.025em; margin: 16px 0 8px;
}
.pricing-card-features {
  list-style: none; padding: 0; margin: 24px 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px; color: var(--dw-body);
}
.pricing-card-features li {
  display: flex; gap: 10px; align-items: flex-start;
}
.pricing-card-features li::before {
  content: "✓"; color: var(--dw-blue); font-weight: 700; flex-shrink: 0;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ===== F.9 — Hero-Meta (Kontakt) ============================ */
.hero-meta {
  display: inline-flex; flex-wrap: wrap;
  gap: 14px 28px; justify-content: center; align-items: center;
  margin-top: 8px;
}
.hero-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}
.hero-meta-item svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 640px) {
  .hero-meta { gap: 10px 18px; flex-direction: column; align-items: flex-start; }
}

/* ===== F.11 — Microsoft-Bookings-iFrame-Wrapper ============= */
.booking-widget {
  background: var(--dw-white); border: 1px solid var(--dw-mist);
  border-radius: var(--dw-radius); box-shadow: var(--dw-shadow-md);
  overflow: hidden; position: relative;
  height: clamp(720px, 90vh, 920px);
}
.booking-widget iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.booking-fallback {
  text-align: center; margin-top: 20px;
  font-size: 14px; color: var(--dw-muted);
}
.booking-fallback a { color: var(--dw-blue); font-weight: 500; }
@media (max-width: 640px) { .booking-widget { height: 760px; } }

/* ===== F.12 — Expect-List (Kontakt) ========================= */
.expect-list { list-style: none; padding: 0; margin: 0; }
.expect-list li {
  display: grid; grid-template-columns: auto 1fr;
  gap: 24px; padding: 24px 0;
  border-top: 1px solid var(--dw-mist); align-items: start;
}
.expect-list li:last-child { border-bottom: 1px solid var(--dw-mist); }
.expect-num {
  font-family: var(--dw-font-mono);
  font-size: 13px; font-weight: 500;
  color: var(--dw-blue); letter-spacing: 0.04em; padding-top: 3px;
}
.expect-list li > div strong {
  display: block; font-size: 18px; font-weight: 600;
  color: var(--dw-midnight); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.expect-list li > div p {
  color: var(--dw-muted); font-size: 15px; line-height: 1.6;
}

/* ===== F.13 — Contact-Grid Shared-Border (Kontakt) ========== */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--dw-mist);
  background: var(--dw-white);
}
.contact-grid > * {
  padding: clamp(28px, 3vw, 36px) clamp(24px, 2.5vw, 32px);
  border-right: 1px solid var(--dw-mist);
}
.contact-grid > *:last-child { border-right: 0; }
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > * { border-right: 0; border-bottom: 1px solid var(--dw-mist); }
  .contact-grid > *:last-child { border-bottom: 0; }
}

/* ===== F.14 — Cat-Filter (Blog-Übersicht) ==================== */
/* Klassen 1:1 wie im Mockup dawicon-blog.html */
.cat-filter { padding: clamp(56px, 7vw, 88px) 0 clamp(32px, 4vw, 48px); background: var(--dw-white); }
.cat-filter-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4vw, 48px); }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cat-button {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px;
  background: var(--dw-white);
  border: 1px solid var(--dw-mist); border-radius: 4px;
  cursor: pointer; text-align: center; font-family: inherit;
  transition: border-color .18s, background-color .18s, color .18s;
  min-height: 56px; color: var(--dw-midnight);
  min-width: 0;
}
.cat-button:hover { border-color: var(--dw-midnight); }
.cat-button.active {
  background: var(--dw-midnight); border-color: var(--dw-midnight); color: var(--dw-white);
}
.cat-button .cat-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-button .cat-icon svg {
  width: 18px; height: 18px;
  color: var(--dw-midnight); stroke-width: 1.75;
  fill: none; transition: color .18s;
}
.cat-button:hover .cat-icon svg { color: var(--dw-blue); }
.cat-button.active .cat-icon svg { color: var(--dw-white); }
.cat-button .cat-label {
  font-size: 11px; font-weight: 600; line-height: 1.3;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: inherit;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.cat-button:focus-visible { outline: 2px solid var(--dw-blue); outline-offset: 3px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== FAQ-Accordion-Highlight (Native Elementor + kleine Ergänzung) === */
.faq-accordion .elementor-accordion-item.elementor-active {
  border-left: 2px solid var(--dw-blue);
}

/* ===== F.10 — .prose Article-Typografie ===================== */
.prose { color: var(--dw-body); font-size: 17px; line-height: 1.75; }
.prose h2 {
  font-size: 28px; font-weight: 600; color: var(--dw-midnight);
  letter-spacing: -0.018em; line-height: 1.2;
  margin: 56px 0 16px; scroll-margin-top: 96px;
}
.prose h3 {
  font-size: 22px; font-weight: 600; color: var(--dw-midnight);
  letter-spacing: -0.012em; line-height: 1.3;
  margin: 40px 0 12px;
}
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--dw-blue);
  padding: 8px 24px; margin: 32px 0;
  font-size: 19px; line-height: 1.6;
  color: var(--dw-midnight); font-style: italic;
}
.prose a { color: var(--dw-blue); text-decoration: underline; text-underline-offset: 4px; }
.prose a:hover { color: var(--dw-blue-hover); }
.prose code {
  background: var(--dw-cool-mist);
  padding: 2px 6px; border-radius: 4px;
  font-family: var(--dw-font-mono); font-size: 0.92em;
}
.prose img { border-radius: var(--dw-radius); margin: 32px 0; }

/* ===== F.17 — 404-Code ===================================== */
.err-code {
  font-family: var(--dw-font-mono);
  font-size: clamp(120px, 22vw, 240px);
  font-weight: 500; line-height: 1;
  color: var(--dw-midnight);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.err-code span { color: var(--dw-blue); }

[data-elementor-type="wp-post"] .elementor-widget-text-editor p,
[data-elementor-type="wp-post"] .elementor-widget-text-editor li { 
  line-height: 1.75; 
}