/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 21 2026 | 15:54:30 */
/* ============================================================
   Praxis Wörner – Unterseiten Custom CSS (Leistungen, Über uns,
   Referenzen). Ein gemeinsamer Woody-CSS-Snippet für alle drei.

   Prinzip: Theme (Playfair Display + Georama, Navy #2e4057,
   Peach #e9b49a, BG #F9F6F4) liefert Schriften & Heading-Farben
   global. Dieses CSS enthält NUR design-spezifische Overrides.

   Hero ist NICHT enthalten – wird auf jeder Seite via Slider
   Revolution oberhalb des Shortcode-Inhalts eingebunden.

   Namespace: .pw-
   ============================================================ */

:root {
  --pw-cream-warm:  #F0EAE3;
  --pw-navy:        #2e4057;
  --pw-navy-deep:   #132f40;
  --pw-peach:       #e9b49a;
  --pw-peach-soft:  #F4E0D2;
  --pw-sage-pale:   #DDE4D9;
  --pw-muted:       #6B7587;
  --pw-line:        rgba(46,64,87,0.12);
  --pw-radius:      14px;
  --pw-radius-lg:   22px;
  --pw-shadow:      0 8px 30px rgba(46,64,87,0.06);
}

/* ============================================================
   SHARED: Typography size overrides + Kicker + Sub-Nav + Button
   ============================================================ */

/* Divi-Default-H2 ist 26px (im 1_2-Column 23px). Design braucht 28–44px. */
.pw-page h2 { font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -0.01em; line-height: 1.1; }
.pw-page h3 { font-size: clamp(20px, 1.6vw, 26px); letter-spacing: -0.01em; line-height: 1.15; }

.pw-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--pw-muted);
  font-weight: 600;
  margin-bottom: 18px;
}

/* Sub-Nav-Strip (sowohl in et_pb_text-Inline-Variante wie auch im
   Leistungen-Code-Modul mit <nav class="pw-subnav">) */
.pw-subnav,
.pw-subnav .et_pb_text_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 14px 0 22px;
  border-bottom: 1px solid var(--pw-line);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pw-subnav a { color: var(--pw-muted); text-decoration: none; }
.pw-subnav a:hover { color: var(--pw-navy); }
.pw-subnav a.is-current { color: var(--pw-navy); font-weight: 600; }

/* Pill-Button: gilt sowohl für Divi-Button-Modul (.et_pb_button) als
   auch für rohe <a class="pw-btn"> im Code-Modul. */
.pw-btn,
.pw-btn.et_pb_button,
.pw-btn.et_pb_button:hover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pw-navy) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 16px 30px !important;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: normal !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .2s ease;
}
.pw-btn:hover,
.pw-btn.et_pb_button:hover { background: var(--pw-navy-deep) !important; }
.pw-btn.et_pb_button::after { display: none !important; }

/* Photo placeholder (Gradient + Mono-Label) – verwendet auf
   Leistungen-Karten, Splits etc. */
.pw-ph {
  background: linear-gradient(135deg, #d8c7b8 0%, #b8a698 50%, #7c8a8f 100%);
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.pw-ph::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.pw-ph--vorsorge       { background: linear-gradient(135deg,#c3d0c5,#8aa394); }
.pw-ph--aesthetik      { background: linear-gradient(135deg,#f1ddc9,#d6a98a); }
.pw-ph--rekonstruktion { background: linear-gradient(135deg,#c8d2dc,#6e8095); }
.pw-ph--beratung       { background: linear-gradient(135deg,#e8d6c4,#a89683); }
.pw-ph--labor          { background: linear-gradient(135deg,#fbe9d6,#c08e6a); }

/* Cream Band als Akzent-BG für Hinweise/Intro-Sections */
.pw-hinweis,
.pw-section-header { text-align: center; max-width: 760px; margin: 0 auto !important; }
.pw-hinweis h2,
.pw-section-header h2 { margin-bottom: 0.5em; }
.pw-hinweis p,
.pw-section-header p { color: var(--pw-muted); margin: 0; }

/* ============================================================
   LEISTUNGEN-spezifisch
   ============================================================ */

.pw-eyebrow-quote {
  text-align: center;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Drei Hauptbereiche (area cards) */
.pw-area-card {
  background: #fff;
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--pw-shadow);
  height: 100%;
}
.pw-area-card .pw-ph { aspect-ratio: 4 / 3; min-height: 0; }
.pw-area-card .pw-area-body { padding: 32px 30px 36px; }
.pw-area-card .pw-num {
  color: var(--pw-peach);
  font-size: 18px;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.pw-area-card ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--pw-line);
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--pw-muted);
}
.pw-area-card ul li::before { content: "·"; margin-right: 8px; color: var(--pw-peach); }

/* Tag cloud */
.pw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.pw-tag {
  background: #fff;
  border: 1px solid var(--pw-line);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

/* Ruhig-geplant-Split */
.pw-ruhig-quote { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.pw-ruhig-quote .pw-ph { border-radius: var(--pw-radius-lg); aspect-ratio: 4/5; min-height: 0; }

/* Labor-Split */
.pw-lab-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.pw-lab-split .pw-ph { border-radius: var(--pw-radius-lg); aspect-ratio: 5 / 6; min-height: 0; }
.pw-lab-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.pw-lab-feature {
  padding: 24px;
  background: var(--pw-cream-warm);
  border-radius: var(--pw-radius);
}
.pw-lab-feature h4 { font-size: 19px; margin: 0 0 10px; }
.pw-lab-feature p { font-size: 14px; color: var(--pw-muted); margin: 0; }

/* CTA-Banner (Leistungen Endschluss) */
.pw-cta-banner {
  background: var(--pw-peach-soft);
  border-radius: var(--pw-radius-lg);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 60px;
}
.pw-cta-banner .pw-cta-right { text-align: right; }

/* ============================================================
   ÜBER UNS-spezifisch
   ============================================================ */

.pw-intro-img {
  background: linear-gradient(135deg,#e9d8c7,#a8866d);
  border-radius: var(--pw-radius-lg);
  aspect-ratio: 4/5;
}
.pw-intro-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--pw-radius-lg); display: block; opacity: 0; }

.pw-team-banner {
  background: linear-gradient(135deg,#e7d6c4 0%,#b39880 60%,#4c5d6e 100%);
  border-radius: var(--pw-radius-lg);
  aspect-ratio: 21/9;
  box-shadow: var(--pw-shadow);
  overflow: hidden;
}
.pw-team-banner img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; }

.pw-team-outro p {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  color: var(--pw-muted);
}

/* Doctor cards: Column als Flex-Container, Photo + Body nebeneinander */
.pw-doc-col.et_pb_column {
  background: #fff;
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  box-shadow: var(--pw-shadow);
  display: flex !important;
  flex-direction: row !important;
  padding: 0 !important;
}
.pw-doc-col.et_pb_column > .et_pb_module { margin-bottom: 0 !important; }
.pw-doc-col.et_pb_column > .pw-doc-photo { flex: 1; min-width: 0; }
.pw-doc-col.et_pb_column > .pw-doc-body  { flex: 1.2; min-width: 0; }

.pw-doc-photo { aspect-ratio: 4/5; position: relative; }
.pw-doc-photo .et_pb_image_wrap,
.pw-doc-photo img { width: 100%; height: 100%; display: block; }
.pw-doc-photo img { object-fit: cover; opacity: 0; }
.pw-doc-photo--armin      { background: linear-gradient(135deg,#d8c6b3,#7a6452); }
.pw-doc-photo--christiane { background: linear-gradient(135deg,#e8d5c2,#b39479); }
.pw-doc-photo--doc3       { background: linear-gradient(135deg,#c8d3c9,#7d9085); }
.pw-doc-photo--doc4       { background: linear-gradient(135deg,#d4c0a8,#8e7558); }

.pw-doc-body .et_pb_text_inner { padding: 36px 32px; }
.pw-doc-body .pw-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pw-peach);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.pw-doc-body .pw-focus {
  font-size: 14px;
  color: var(--pw-muted);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.pw-doc-body blockquote {
  font-style: italic;
  font-size: 17px;
  border-left: 2px solid var(--pw-peach);
  padding: 0 0 0 16px;
  margin: 0;
}
.pw-doc-body .pw-edu {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--pw-line);
  font-size: 13px;
  color: var(--pw-muted);
}
.pw-doc-body .pw-edu strong { color: var(--pw-navy); font-weight: 600; }

/* Werte 3-er Raster */
.pw-wert .et_pb_text_inner {
  background: var(--pw-cream-warm);
  border-radius: var(--pw-radius-lg);
  padding: 40px 34px;
  height: 100%;
}
.pw-wert .pw-big-num {
  font-size: 48px;
  color: var(--pw-peach);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.pw-wert p { font-size: 15px; color: var(--pw-muted); margin: 0; }

/* Family quote – peach band, kursiv, zentriert */
.pw-family-quote.et_pb_row {
  background: var(--pw-peach-soft);
  border-radius: var(--pw-radius-lg);
  padding: 70px !important;
  text-align: center;
}
.pw-family-quote .pw-kicker { margin-bottom: 14px; }
.pw-family-quote h2 { font-style: italic; max-width: 820px; margin: 0 auto 18px; }
.pw-family-quote .pw-attribution { font-size: 14px; letter-spacing: 0.1em; margin: 0 0 32px; }

/* ============================================================
   REFERENZEN-spezifisch
   ============================================================ */

/* Fall-Rows */
.pw-case.et_pb_row {
  padding: 70px 0 !important;
  border-bottom: 1px solid var(--pw-line);
  align-items: center;
}
.pw-case:last-of-type.et_pb_row { border-bottom: none; }
.pw-case--reverse.et_pb_row { flex-direction: row-reverse; }
.pw-case .et_pb_column { display: flex; flex-direction: column; justify-content: center; }

.pw-case-body .pw-case-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--pw-peach);
  font-size: 16px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  font-style: italic;
}
.pw-case-body .pw-case-number::before { content: ""; width: 28px; height: 1px; background: var(--pw-peach); }

.pw-case-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 18px;
  margin: 24px 0 28px;
  padding: 20px 24px;
  background: var(--pw-cream-warm);
  border-radius: var(--pw-radius);
  font-size: 14px;
}
.pw-case-meta dt { color: var(--pw-muted); font-weight: 500; letter-spacing: 0.04em; margin: 0; }
.pw-case-meta dd { margin: 0; color: var(--pw-navy); }

.pw-pullquote {
  font-size: 19px;
  font-style: italic;
  border-left: 3px solid var(--pw-peach);
  padding: 4px 0 4px 22px;
  margin: 24px 0 0;
}

/* Before/After slider */
.pw-ba.et_pb_column {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: var(--pw-shadow);
  padding: 0 !important;
  display: block !important;
}
.pw-ba .et_pb_module { margin-bottom: 0 !important; }
.pw-ba .pw-ba-before,
.pw-ba .pw-ba-after {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pw-ba .pw-ba-before .et_pb_image_wrap,
.pw-ba .pw-ba-after  .et_pb_image_wrap,
.pw-ba .pw-ba-before img,
.pw-ba .pw-ba-after  img { width: 100%; height: 100%; display: block; }
.pw-ba .pw-ba-before img,
.pw-ba .pw-ba-after  img { object-fit: cover; opacity: 0; }

.pw-ba .pw-ba-before { background: linear-gradient(135deg,#7c7065,#52473c); }
.pw-ba .pw-ba-after  { background: linear-gradient(135deg,#e8d6c4,#c2a48a); clip-path: inset(0 0 0 50%); }
.pw-case--c02 .pw-ba-before { background: linear-gradient(135deg,#6b5e54,#3d342d); }
.pw-case--c02 .pw-ba-after  { background: linear-gradient(135deg,#dac6b3,#a98a72); }
.pw-case--c03 .pw-ba-before { background: linear-gradient(135deg,#9c8a78,#6c5b4a); }
.pw-case--c03 .pw-ba-after  { background: linear-gradient(135deg,#f3e6d3,#d3b89c); }
.pw-case--c04 .pw-ba-before { background: linear-gradient(135deg,#857565,#564a3e); }
.pw-case--c04 .pw-ba-after  { background: linear-gradient(135deg,#e6d2bc,#b89479); }

.pw-ba .pw-ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}
.pw-ba .pw-ba-handle::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.pw-ba .pw-ba-handle::after {
  content: "‹  ›";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 16px;
  color: var(--pw-navy);
  font-weight: 600;
  letter-spacing: 2px;
}
.pw-ba .pw-ba-labels {
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
  z-index: 4;
}
.pw-ba .pw-ba-labels span {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Referenzen-CTA */
.pw-cta { text-align: center; max-width: 760px; margin: 0 auto !important; }
.pw-cta p { font-size: 18px; margin: 0 0 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  /* Leistungen-Splits */
  .pw-ruhig-quote,
  .pw-lab-split,
  .pw-cta-banner { grid-template-columns: 1fr; gap: 40px; }
  .pw-cta-banner .pw-cta-right { text-align: left; }

  /* Über uns – Doctor cards stapeln */
  .pw-doc-col.et_pb_column { flex-direction: column !important; }
  .pw-doc-col.et_pb_column > .pw-doc-photo,
  .pw-doc-col.et_pb_column > .pw-doc-body { flex: none; width: 100%; }
  .pw-doc-photo { aspect-ratio: 16/10; }

  /* Referenzen – Case-Rows einspaltig */
  .pw-case.et_pb_row,
  .pw-case--reverse.et_pb_row { flex-direction: column; }
  .pw-case .et_pb_column { width: 100% !important; }
}
@media (max-width: 680px) {
  .pw-lab-features { grid-template-columns: 1fr; }
  .pw-cta-banner { padding: 50px 30px; }
  .pw-family-quote.et_pb_row { padding: 50px 26px !important; }
  .pw-doc-body .et_pb_text_inner { padding: 28px 24px; }
  .pw-case-meta { grid-template-columns: 1fr; padding: 16px 18px; }
  .pw-case-meta dt { margin-top: 6px; }
}
