/* Farbpalette: Schrift / Kontrast / Menü-Hintergrund */
:root {
  --color-text: #1f3f8f;
  --color-neutral: #5f6f88;
  --color-contrast: #2d7ff9;
  --color-contrast-hover: #1f6fe6;
  --text-rgb: 31, 63, 143;
  --contrast-rgb: 45, 127, 249;
  /* Menü-Fläche = Seitenhintergrund (kein eigener Farbrahmen) */
  --menu-bg: var(--page-bg);
  /* Legacy-Namen: Akzente = Kontrastfarbe (Buttons, Icons, Häkchen) */
  --brand-primary: var(--color-contrast);
  --brand-primary-hover: var(--color-contrast-hover);
  --brand-rgb: 45, 127, 249;
  --page-bg: #ffffff;
}

.site {
  background: var(--page-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
}

/* Volle Bildschirmbreite (Nicepage/Page-4: kein max-width-„Kasten“) */
html {
  background: #ffffff;
}

html,
body.site {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.row {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: var(--page-bg);
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* Verschachtelte .row: keine negativen Margins, kein zusätzliches Padding */
.row .row {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media screen and (min-width: 64.063em) {
  .row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .row .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.pink h1{ color:#ffffff;} 
.pink h2{ color:#ffffff;} 
.pink h3{ color:#ffffff;} 
.pink a{color:#ffffff;} 

.pink {background: var(--color-contrast); color:#FFFFFF;border:none;}

.btn {padding:0.7em;text-decoration: none;font-size:0.8em;margin-bottom: 1px;border-radius: 13px;background-color: var(--color-contrast);}
.btn:hover, .btn:focus {background: var(--color-contrast-hover); }

.site-headerbar {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.site-brand {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 320px;
}

.site-brand-logoLink {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 0 auto;
}

.site-brand-logo {
  display: block;
  width: 180px;
  height: auto;
  max-width: 180px;
  max-height: none;
  object-fit: contain;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  justify-content: center;
  max-width: 100%;
  padding-left: 25px;
}

.site-brand-title,
.site-brand-subtitle {
  text-align: left;
}

/* Header typography (requested fixed sizes) */
.site-brand-title {
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-brand-title-small {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 300;
}

.site-brand-title,
.site-brand-title-small,
.site-brand-doctors {
  white-space: normal;
  overflow-wrap: nowrap;
  word-break: break-word;
  hyphens: auto;
}

.site-brand-doctors {
  text-align: left;
  padding-top: 2px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.site-brand-phoneRow {
  margin-top: 0.35rem;
  line-height: 1.15;
}

.site-brand-phone {
  color: var(--color-text);
  text-decoration: underline;
  display: inline-block;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  white-space: normal; /* allow wrap if needed (no-break between label+number is done via &nbsp;) */
  overflow-wrap: anywhere;
}

.site-menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  background: #FFFFFF;
  cursor: pointer;
  flex: 0 0 auto;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus {
  border-color: rgba(var(--brand-rgb), 0.35);
}

.site-menu-toggle-lines,
.site-menu-toggle-lines:before,
.site-menu-toggle-lines:after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  position: relative;
  margin: 0 auto;
  content: "";
}

.site-menu-toggle-lines:before {
  position: absolute;
  top: -6px;
  left: 0;
}

.site-menu-toggle-lines:after {
  position: absolute;
  top: 6px;
  left: 0;
}

/* Mobile drawer menu */
.site-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9998;
}

.site-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(340px, 92vw);
  background: var(--menu-bg);
  z-index: 9999;
  border: none;
  box-shadow: none;
  overflow-y: auto;
}

/* Desktop: linke Menüspalte gleicher Hintergrund wie Mobile-Drawer (ohne Rahmen/Schatten) */
#site-menu-column .callout_small,
#site-menu-desktop {
  background: var(--menu-bg) !important;
  border: none !important;
  box-shadow: none !important;
}

.site-menu-drawer-inner .button-group {
  margin: 0;
}

/* Desktop sidebar toggle (hamburger) */
@media screen and (max-width: 64em) {
  body.is-sidebar-collapsed #site-menu-column {
    display: none !important; /* override Foundation show-for-medium display rules */
  }

  body.is-sidebar-collapsed #site-content-column {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Hamburger nur auf kleinen Geräten anzeigen */
@media screen and (min-width: 40.063em) {
  .site-menu-toggle { display: none !important; }
}

@media screen and (min-width: 40.063em) {

  /* Sticky braucht sichtbare Overflow-Umgebung (kein overflow:hidden bei Eltern) */
  #site-menu-column,
  #site-menu-column .callout_small {
    overflow: visible !important;
  }

  /* Medium+Large: linke Menüspalte bleibt beim Scrollen sichtbar */
  #site-menu-column {
    position: sticky;
    top: 1rem;
  }

  /* Desktop-Menü: feste Breite */
  #site-menu-column {
    width: 220px !important;
    float: left !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 7px !important;
  }

  #site-content-column {
    width: calc(100% - 220px) !important;
    float: left !important;
    box-sizing: border-box !important;
    padding-left: 7px !important;
    padding-right: 0 !important;
  }

  /* Menü in der Spalte darf bei Bedarf intern scrollen */
  #site-menu-desktop {
    max-height: calc(100vh - 2rem);
    overflow: auto;
  }
}

/* Large screens: no hamburger + sidebar stays visible + sticky menu */
@media screen and (min-width: 64.063em) {
  /* In case the user collapsed the sidebar on medium widths */
  body.is-sidebar-collapsed #site-menu-column {
    display: block !important;
  }

  #site-menu-column {
    width: 220px !important;
    float: left !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 7px !important;
  }

  #site-content-column {
    width: calc(100% - 220px) !important;
    float: left !important;
    box-sizing: border-box !important;
    padding-left: 7px !important;
    padding-right: 0 !important;
  }
}

/* Dieser Media Query wurde nach unten verschoben und verbessert - siehe "MOBILE RESPONSIVE STYLES" */

.callout {
 margin-bottom: 0.75rem;
 line-height: 120%;
 overflow:hidden;
 color: var(--color-text);
 border:0px;
}

.callout_small {
 margin-bottom: 0.75rem;
 line-height: 120%;
 overflow:hidden;
 color: var(--color-text);
}

/* Harmonize white surfaces across the site (elegant, readable) */
.callout,
.callout_small,
.weiss {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.callout,
.callout_small {
  padding: 1rem 1rem;
  line-height: 1.55;
}

/* Header logo: keep it aligned with the right header cell height */
.callout.hocheinfach img.site-brand-logo,
.callout_small.hocheinfach img.site-brand-logo {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 170px; /* matches .hocheinfach min-height */
  object-fit: contain;
}

.callout td {vertical-align: top;}

.col_pink{color:var(--color-text);}

.col_title{font-size:32px;letter-spacing:-1px;padding-top: 10px;}
.col_subtitle{font-size:15.5px;padding-top:8px;}
.col_name{font-size:21px;}
.col_kontakt{font-size:18px;font-weight:bold;padding-top:11px;}

.col_title_small{font-size:24px;letter-spacing:-1px;padding-top: 5px;}
.col_subtitle_small{font-size:10px;padding-top:5px;}
.col_name_small{font-size:14px;}
.col_kontakt_small{font-size:12px;font-weight:bold;padding-top:11px;}

.callout h1 {font-size:1.45em;font-weight:bold;}
.callout h2 {font-size:1.4em;font-weight:bold;}
.callout h3 {font-size:1.05em;font-weight:bold;margin: 12px 0 5px;}
.callout h4 {font-size:1.05em;font-weight:bold;}

.hocheinfach { border: 0 none; min-height: 170px;}
.hochstart { border: 0 none; min-height: 306px;}
.hochdoppelt { border: 0 none; min-height: 347px;}
.hochdreifach { border: 0 none; min-height: 421px;}
.hochfrei { border: 0 none; min-height: 10px;}

a{color:var(--color-text);font-weight:normal;text-decoration:none;}
a:hover{color:var(--color-contrast);text-decoration:underline;}
a:focus{color:var(--color-text);text-decoration:none;}

.h1 {font-size:1.5em;color:var(--color-text)}
.h2 {font-size:1.35em;} 
.h3 {font-size:1.2em;}
.h4 {color:var(--color-neutral);}




.weiss h1 {font-size:1.45em;font-weight:bold;}
.weiss h2 {font-size:1.4em;font-weight:bold;}
.weiss h3 {font-size:1.05em;font-weight:bold;margin: 12px 0 5px;}
.weiss h4 {font-size:1.05em;font-weight:bold;}
.weiss h5 {font-size:1.00em;font-weight:bold;}


.btn_weiter {
 background: url("/img/button_corner.png") no-repeat scroll rgba(0, 0, 0, 0);
    float: right;
	position: absolute;
	bottom: 0px;
	right: 0px;
    height: 67px;
    width: 67px;
	cursor: pointer;
}

/* Team page (team.htm) */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.team-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.05rem 1.1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex: 1 1 340px;
  min-width: 260px;
  min-width: 0;
}

.team-card__header {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.team-card__img {
  width: 140px;
  max-width: 42%;
  display: block;
  margin: 0 !important; /* avoid extra space under image */
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.team-card__name {
  display: block;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.team-card__sub {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-neutral);
}

.team-vita__table td:first-child {
  width: 9rem;
  white-space: nowrap;
  color: var(--color-neutral);
}

.team-vita__back {
  margin-top: 0.6rem;
}

@media screen and (max-width: 40em) {
  .team-card__header {
    flex-direction: column;
  }

  .team-card__img {
    width: min(220px, 100%);
    max-width: 100%;
  }
}


.gruen_mittel {background: #E7E3D2; color:#6F8C96;border:none;} 
.gruen_mittel h3{ color:#90A436;} 
.gruen_mittel a{ color:#6F8C96;} 

.name{position:relative;left:0px;width:175px;float:left;padding-bottom:10px;}
.inhalt{margin-left:180px;padding-left:0px;padding-bottom:30px;}


a { cursor: pointer; text-decoration:none; }
a:hover { cursor: pointer; text-decoration:underline; }
a.title {font-size:1.15em;font-weight:bold;}
a.h3 {font-size:1.0em;font-weight:bold;color:#009A64;}

.weiss {overflow: hidden; padding: 1rem 1rem; line-height: 1.55;}
a.weiss  {color: #FFFFFF;background:inherit;} 

.logo {margin-left:-40px;margin-top: 10px;}
.menue {height:145px;}
.menue_pos{vertical-align:middle;}

.footer a:hover {color:#FFF;background-color:inherit;text-decoration:underline;}
.footer a:focus {color:#FFF;background-color:inherit;text-decoration:none;}
.footer a{color:#FFF;background-color:inherit;font-size:0.9em;text-decoration:none;}
.footer { border: 0 none;padding:8px;margin-top:-12px;text-align:center; width:100%}

.btn_menue {
  padding: 0.7em;
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 1px;
}
.btn_menue:hover, .btn_menue:focus {background: var(--brand-primary-hover); }



.btn2 {padding:0.7em;text-decoration: none;font-size:0.8em;margin-bottom: 1px;border-radius: 13px;background-color: #84B933;}
.btn2:hover { background: #006441; }

input[type="file"],
input[type="text"],
input[type="checkbox"],
input[type="radio"],
select,
textarea {
  margin: 0 0 0.3rem 0; }

.center{text-align:center;}

.column,.columns {
  padding-left: 7px;
  padding-right: 7px;
}




div.description{font-size:0.9em;padding-top:3px;}
div.hreview{padding-bottom:10px;}
.abbr {text-decoration:none;}
 
div.zelle{width:15.5em;float:left;overflow:hidden;white-space:nowrap;font-weight:normal;}
div.zelle350{width:365px;float:left;overflow:hidden;white-space:nowrap;}
div.zelle120{width:120px;float:left;overflow:hidden;white-space:nowrap;}
div.zelle35{width:33px;float:right;white-space:nowrap;}
div.zelle70{float:right;white-space:nowrap;}
div.spnorte {display:inline-block; }
div.zelle450w{width:460px;float:left;font-size:0.90em;}
div.zelle90{width:90px;float:left;overflow:hidden;white-space:nowrap;padding-bottom:8px;}
div.zelle275{width:275px;float:left;line-height: 1.4em;}
div.zelle_bew{width:84px;float:right;overflow:hidden;font-size:0.85em;}

div.zelle_left{float:left;overflow:hidden;position:absolute;white-space:nowrap;}
div.zelle_right{float:right;overflow:hidden;white-space:nowrap; text-align:right;font-size:0.65em;cursor:pointer;}

div.zelle_foto {float:left;padding-bottom:8px; min-height:60px;}
div.zelle_adresse {position:absolute;left:110px;line-height:1.25;font-size:0.7em;}




.menueleiste{margin-top:-5px;padding-bottom:12px;padding-left:13px;}
.bewertung{line-height:1em;float:right;padding-top:10px;color:#080849;background-color:#ffffff;text-align:right;}
/* div.hreview has styles above (padding-bottom). Keep empty ruleset removed. */
.small{font-size:0.8em;}
.large{font-size:1.4em;}
.nowrap {white-space: nowrap;}
.bold{font-weight:bold;}

#tagcloud{width:200px;border: 1px solid black;text-align: center;}
#tagcloud a{text-decoration: none;text-transform: capitalize;}

#upload{border: 1px dashed}#drop{padding: 30px;text-align: center;font-size:16px;font-weight:bold;color:#7f858a}#drop a{padding:12px 26px;font-size:14px;margin-top:12px}#drop input{display:none}#upload ul{list-style:none;margin:0 0px}#upload ul li{padding:26px;position: relative;border-bottom:1px solid}#upload ul li input{display: none}#upload ul li p{width: 144px;overflow: hidden;white-space: nowrap;font-size: 11px;font-weight: bold;position: absolute;top: 10px;left: 95px}#upload ul li i{font-weight: normal;font-style:normal;color:#7f7f7f;display:block}#upload ul li canvas{top: 2px;left: 20px;position: absolute}#upload ul li span{width: 15px;height: 12px;background: url('icons.png') no-repeat;position: absolute;top: 20px;right: 33px;cursor:pointer}#upload ul li.working span{height: 26px;background-position: 0 -12px}#upload ul li.error p{color:red}

/* Styled list for services/leistungen */
.leistungen-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.leistungen-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-neutral);
  transition: all 0.3s ease;
}

.leistungen-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--brand-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
}

.leistungen-list li:hover {
  padding-left: 2.8rem;
  color: var(--color-text);
}

.leistungen-list li:hover:before {
  background-color: var(--brand-primary-hover);
  transform: scale(1.1);
}

/* Card design for services/leistungen (responsive grid) */
.leistungen-cards {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.leistungen-cards li {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.05rem 1.1rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-neutral);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  flex: 1 1 260px;
  min-width: 260px;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.leistungen-cards li:before {
  content: "✓";
  width: 1.9rem;
  height: 1.9rem;
  background-color: var(--brand-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  flex: 0 0 1.9rem;
  margin-top: 0.05rem;
}

.leistungen-cards li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border-color: rgba(var(--brand-rgb), 0.25);
  color: var(--color-text);
}

.leistungen-cards li:hover:before {
  background-color: var(--brand-primary-hover);
}

@supports (display: grid) {
  .leistungen-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .leistungen-cards li {
    min-width: 0;
  }
}

/* Elegant page styling (scoped) */
.page-leistungen {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Page-4 §7: große zentrierte Überschrift (u-text-1) + Lead-Zeile (u-text-2) */
.page-leistungen header.leistungen-lead {
  text-align: center;
  max-width: none;
}

.page-leistungen h1 {
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2.125rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 auto 0.75rem;
  max-width: 56rem;
  text-align: center;
}

.page-leistungen .leistungen-lead {
  margin: 0.25rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: none;
  width: 100%;
}

.page-leistungen header.leistungen-lead > p {
  max-width: 31rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.35rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-neutral);
}

/* Image in leistungen lead/header (top right) */
.page-leistungen .leistungen-lead-image {
  float: right;
  margin: 0.2rem 0 0.75rem 1rem;
  width: min(220px, 36%);
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 40em) {
  .page-leistungen .leistungen-lead-image {
    float: none;
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0.25rem 0 0.75rem;
  }
}

.page-leistungen .leistungen-section {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-leistungen .leistungen-title {
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin: 0 auto 0.75rem;
  max-width: 48rem;
  letter-spacing: -0.015em;
}

.page-leistungen h2:not(.mr-p4-breads__title) {
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin: 1.25rem auto 0.65rem;
  max-width: 48rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

/* Make inline links clearly visible inside content (Kontrastfarbe) */
.page-leistungen a:not(.btn):not(.btn_menue):not(.btn2):not(.home-card-link) {
  color: var(--color-contrast);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
  font-weight: 700;
}

.page-leistungen a:not(.btn):not(.btn_menue):not(.btn2):not(.home-card-link):hover,
.page-leistungen a:not(.btn):not(.btn_menue):not(.btn2):not(.home-card-link):focus {
  color: var(--color-contrast-hover);
}

/* Refine cards when used on the Leistungen page */
.page-leistungen .leistungen-cards {
  margin: 0.75rem 0 0;
}

.page-leistungen .leistungen-cards li {
  color: var(--color-text);
  border-left: 4px solid rgba(var(--brand-rgb), 0.35);
}

.page-leistungen .leistungen-cards li:before {
  background-color: rgba(var(--brand-rgb), 1);
}

/* Long-form Leistungen: use list layout for readability */
.page-leistungen .leistungen-list {
  margin: 0.75rem 0 0;
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-inline-start: 0 !important; /* avoid default UL indent */
}

.page-leistungen .leistungen-list li {
  color: var(--color-text);
}

.page-leistungen .leistungen-sublist {
  list-style: disc;
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-neutral);
}

.page-leistungen .leistungen-sublist li {
  padding: 0.15rem 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.page-leistungen .leistungen-sublist li:before {
  content: none !important; /* disable ✓ from .leistungen-list li:before */
  display: none !important;
}

.page-leistungen .leistungen-sublist li:hover {
  padding-left: 0 !important; /* disable hover indent from parent list rules */
}

.page-leistungen .leistungen-list strong {
  display: block;
  color: var(--color-text);
  margin: 0 0 0.25rem;
}

.page-leistungen .leistungen-list p {
  margin: 0;
  color: inherit;
}

/* Simple, readable forms on Leistungen pages */
.page-leistungen .rezept-form {
  margin-top: 0.5rem;
}

.page-leistungen .rezept-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.page-leistungen .rezept-form-field label {
  display: block;
  margin: 0 0 0.25rem;
  color: var(--color-text);
  font-weight: 700;
}

.page-leistungen .rezept-form input,
.page-leistungen .rezept-form select,
.page-leistungen .rezept-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--color-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.page-leistungen .rezept-form select {
  padding-right: 2.2rem;
}

.page-leistungen .rezept-form input::placeholder,
.page-leistungen .rezept-form textarea::placeholder {
  color: rgba(17, 17, 17, 0.55);
}

.page-leistungen .rezept-form input:focus,
.page-leistungen .rezept-form select:focus,
.page-leistungen .rezept-form textarea:focus {
  outline: none;
  border-color: rgba(var(--brand-rgb), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.18);
}

.page-leistungen .rezept-form input:hover,
.page-leistungen .rezept-form select:hover,
.page-leistungen .rezept-form textarea:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
}

.page-leistungen .rezept-form input:active,
.page-leistungen .rezept-form select:active,
.page-leistungen .rezept-form textarea:active {
  transform: translateY(0.5px);
}

.page-leistungen .rezept-form-field--full {
  grid-column: 1 / -1;
}

.page-leistungen .rezept-form-actions {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-end;
}

.page-leistungen .rezept-form--stacked .rezept-form-field--full {
  margin-bottom: 0.25rem;
}

/* Rezept hinzufügen: Hero + zwei Karten parallel (responsive) */
.page-leistungen.rezept-add-page {
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #f5f7fd 55%, #eef1fb 100%);
  border: 1px solid rgba(var(--text-rgb), 0.1);
  box-shadow: 0 12px 40px rgba(45, 84, 192, 0.08);
}

.page-leistungen .rezept-add-hero {
  margin-bottom: 0.25rem;
}

.page-leistungen .rezept-add-hero h1 {
  margin-bottom: 0.4rem;
}

.page-leistungen .rezept-add-hero p {
  max-width: 62ch;
  margin-bottom: 0;
  line-height: 1.65;
}

.page-leistungen .rezept-add-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1.35rem;
}

/* Ab Tablet: zwei gleich breite Spalten */
@media screen and (min-width: 48em) {
  .page-leistungen .rezept-add-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    align-items: stretch;
  }
}

@media screen and (min-width: 64.063em) {
  .page-leistungen .rezept-add-grid {
    gap: 1.5rem 2rem;
  }
}

.page-leistungen .rezept-add-option {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border-radius: 16px;
  border: 1px solid rgba(var(--text-rgb), 0.12);
  padding: 1.35rem 1.35rem 1.4rem;
  box-shadow:
    0 4px 6px rgba(45, 84, 192, 0.04),
    0 14px 36px rgba(45, 84, 192, 0.07);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-leistungen .rezept-add-option::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--color-contrast) 0%, rgba(var(--brand-rgb), 0.85) 100%);
  opacity: 0.95;
}

.page-leistungen .rezept-add-option--url::before {
  background: linear-gradient(90deg, var(--color-text) 0%, rgba(var(--text-rgb), 0.55) 100%);
}

.page-leistungen .rezept-add-option:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 12px rgba(45, 84, 192, 0.06),
    0 22px 48px rgba(45, 84, 192, 0.1);
  border-color: rgba(var(--text-rgb), 0.2);
}

.page-leistungen .rezept-add-option__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
}

.page-leistungen .rezept-add-option__badge {
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, var(--color-contrast) 0%, rgba(var(--brand-rgb), 0.92) 100%);
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.35);
}

.page-leistungen .rezept-add-option--url .rezept-add-option__badge {
  background: linear-gradient(145deg, var(--color-text) 0%, #5a7fd4 100%);
  box-shadow: 0 4px 14px rgba(45, 84, 192, 0.28);
}

.page-leistungen .rezept-add-option__head-text {
  flex: 1;
  min-width: 0;
}

.page-leistungen .rezept-add-option__title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 0.2rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.page-leistungen .rezept-add-option__tagline {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-contrast);
  line-height: 1.35;
}

.page-leistungen .rezept-add-option--url .rezept-add-option__tagline {
  color: rgba(var(--text-rgb), 0.85);
}

.page-leistungen .rezept-add-option__intro {
  margin: 0 0 1rem;
  line-height: 1.62;
  color: var(--color-neutral);
  font-size: 0.95rem;
}

.page-leistungen .rezept-add-option__hint {
  margin: 0.4rem 0 0.55rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-neutral);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.page-leistungen .rezept-add-option__hint-icon {
  flex: 0 0 auto;
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.4;
}

.page-leistungen .rezept-add-option .rezept-form {
  margin-top: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.page-leistungen .rezept-add-option .rezept-form-actions {
  margin-top: auto;
  padding-top: 0.65rem;
}

.page-leistungen .rezept-add-option__submit {
  width: 100%;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

/* Datei-Dropzone (Input liegt per for/id neben dem Label, nicht darin) */
.page-leistungen .rezept-file-field {
  position: relative;
}

.page-leistungen .rezept-file-input-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-leistungen .rezept-file-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 168px;
  margin: 0;
  padding: 1.15rem 1rem 1.25rem;
  border: 2px dashed rgba(var(--brand-rgb), 0.42);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.07) 0%, rgba(var(--brand-rgb), 0.03) 100%);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  text-align: center;
}

.page-leistungen .rezept-file-drop:hover,
.page-leistungen .rezept-file-drop:focus-within,
.page-leistungen .rezept-file-field.is-dragover .rezept-file-drop {
  border-color: rgba(var(--brand-rgb), 0.9);
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.14) 0%, rgba(var(--brand-rgb), 0.06) 100%);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.12);
  transform: scale(1.01);
}

.page-leistungen .rezept-file-drop__visual {
  position: relative;
  z-index: 1;
  pointer-events: none;
  color: var(--color-contrast);
  filter: drop-shadow(0 2px 4px rgba(var(--brand-rgb), 0.2));
}

.page-leistungen .rezept-file-drop__icon {
  display: block;
}

.page-leistungen .rezept-file-drop__text {
  position: relative;
  z-index: 1;
  pointer-events: none;
  color: var(--color-text);
  line-height: 1.45;
}

.page-leistungen .rezept-file-drop__text strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 0.3rem;
}

.page-leistungen .rezept-file-drop__sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-neutral);
}

.page-leistungen .rezept-file-names {
  margin: 0.55rem 0 0;
  padding: 0.45rem 0.55rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--color-text);
  word-break: break-word;
  min-height: 1.2em;
  background: rgba(var(--text-rgb), 0.05);
  border-radius: 8px;
  border: 1px solid rgba(var(--text-rgb), 0.08);
}

.page-leistungen .rezept-file-change-wrap {
  margin: 0.5rem 0 0;
}

/* Kategorie-Abschluss: Speichern + Ignorieren nebeneinander */
.page-leistungen .rezept-finalize-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-top: 0.25rem;
}
.page-leistungen .rezept-finalize-actions .rezept-form {
  flex: 1 1 280px;
  min-width: 0;
}
.page-leistungen .rezept-finalize-actions .rezept-form-actions {
  margin-bottom: 0;
}
.page-leistungen .rezept-finalize-actions .rezept-ignore-form {
  flex: 0 0 auto;
  margin: 0;
  padding-bottom: 0.15rem;
}
.page-leistungen .rezept-finalize-actions .rezept-ignore-form .button {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .page-leistungen .rezept-add-option:hover {
    transform: none;
  }
  .page-leistungen .rezept-file-drop:hover,
  .page-leistungen .rezept-file-drop:focus-within,
  .page-leistungen .rezept-file-field.is-dragover .rezept-file-drop {
    transform: none;
  }
}

/* Import-Feedback (Gemini-Import) */
.rezept-import-banner {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  line-height: 1.55;
  font-size: 0.98rem;
}
.rezept-import-banner strong {
  display: block;
  margin-bottom: 0.25rem;
}
.rezept-import-banner a {
  font-weight: 600;
  text-decoration: underline;
}
.rezept-import-banner--ok {
  background: rgba(34, 180, 100, 0.12);
  border: 1px solid rgba(34, 140, 80, 0.35);
  color: var(--color-text);
}
.rezept-import-banner--err {
  background: rgba(200, 60, 60, 0.1);
  border: 1px solid rgba(180, 50, 50, 0.4);
  color: var(--color-text);
}

/* Unterüberschriften einzelner Rezepte im Import-Ergebnis */
.rezept-import-result .rezept-import-multi-h {
  font-weight: 500;
}

/* Rezeptliste (Meine Rezepte) */
.page-leistungen .rezept-liste {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}
.page-leistungen .rezept-liste__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  background: rgba(var(--text-rgb), 0.04);
  border: 1px solid rgba(var(--text-rgb), 0.1);
}
.page-leistungen .rezept-liste__id {
  grid-row: 1 / span 2;
  align-self: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: rgba(var(--text-rgb), 0.55);
}
.page-leistungen .rezept-liste__titel {
  font-weight: 700;
  font-size: 1.05rem;
}
.page-leistungen .rezept-liste__meta {
  font-size: 0.84rem;
  color: rgba(var(--text-rgb), 0.65);
}

/* Aktuelles: highlight current status */
.page-leistungen .aktuelles-status {
  margin-top: 0.75rem;
  background: rgba(var(--brand-rgb), 0.06);
  border-radius: 14px;
  border: 1px solid rgba(var(--brand-rgb), 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 0.9rem 1rem;
  max-width: 70ch;
}

.page-leistungen .aktuelles-status-label {
  display: inline-block;
  font-weight: 800;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  margin-bottom: 0.25rem;
}

.page-leistungen .aktuelles-status-text {
  color: var(--color-text);
  line-height: 1.65;
  font-size: 1.05rem;
  font-weight: 400;
  padding-left: 0.55rem; /* align with label text padding */
}

.page-leistungen .aktuelles-status-text br {
  display: block;
  margin-top: 0.35rem;
  content: "";
}

/* Startseite: 3 Kacheln im Aktuelles-Status-Stil */
.page-leistungen .home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.page-leistungen .home-cards .aktuelles-status {
  margin-top: 0;
  max-width: none;
  height: 100%;
}

.page-leistungen .home-card-link {
  display: block;
  color: inherit;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.page-leistungen .home-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
  border-color: rgba(var(--brand-rgb), 0.28);
}

.page-leistungen .home-card-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.18), 0 14px 34px rgba(0, 0, 0, 0.10);
  border-color: rgba(var(--brand-rgb), 0.35);
}

/* Notruf-Nummern als Badge hervorheben */
.page-leistungen .notruf-number {
  display: inline-block;
  padding: 0.05rem 0.5rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.page-leistungen .notruf-number.is-emergency {
  background: var(--brand-primary);
  color: #FFFFFF;
}

/* Opening hours table */
.page-leistungen .zeiten-table {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0.5rem 0 0;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.page-leistungen .zeiten-table th,
.page-leistungen .zeiten-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}

.page-leistungen .zeiten-table th {
  text-align: left;
  color: #FFFFFF;
  background: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-leistungen .zeiten-table td {
  color: var(--color-text);
}

.page-leistungen .zeiten-table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

.page-leistungen .zeiten-table tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 40em) {
  .page-leistungen .zeiten-table th,
  .page-leistungen .zeiten-table td {
    padding: 0.65rem 0.7rem;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 40em) {
  .page-leistungen .rezept-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Info cards (same layout as Leistungen cards, but without check icon) */
.info-cards {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.info-cards li {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.05rem 1.1rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex: 1 1 260px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.info-cards li:before {
  content: none !important;
  display: none !important;
}

@supports (display: grid) {
  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media screen and (max-width: 40em) {
  .page-leistungen {
    border-radius: 12px;
    padding: 1rem 0.95rem;
  }

  .page-leistungen .leistungen-lead {
    font-size: 1.05rem;
  }

  .leistungen-cards li {
    padding: 0.95rem 0.95rem;
  }
}

/* =====================================================
   MOBILE RESPONSIVE STYLES
   Diese Styles sorgen für gute Lesbarkeit auf Handys
   ohne das Desktop-Design zu verändern
   ===================================================== */

@media screen and (max-width: 40em) {
  /* Verhindere horizontales Scrollen */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .site {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  /* Erzwinge Textumbruch überall */
  * {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  /* Verhindere zu breite Elemente */
  .callout > *,
  .page-leistungen > *,
  .weiss > * {
    max-width: 100% !important;
  }

  /* Grundlegende mobile Anpassungen - Volle Breite nutzen */
  .row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .column, .columns {
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    float: none !important;
  }

  /* Content-Spalte soll volle Breite nutzen */
  #site-content-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  
  /* Foundation Grid-Klassen auf mobil volle Breite */
  .small-12,
  .medium-12,
  .large-12,
  .large-8,
  .large-9,
  .large-10,
  .large-4,
  .large-3,
  .large-2,
  .medium-8,
  .medium-9,
  .medium-4,
  .medium-3 {
    width: 100% !important;
    float: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Header/Brand Bereich mobil optimieren */
  .site-headerbar {
    padding: 0.6rem 0.6rem !important;
    gap: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: start !important;
    box-sizing: border-box !important;
  }
  
  .site-menu-toggle {
    width: 42px !important;
    height: 42px !important;
    margin-right: 0.6rem !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
    order: -1 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
  }
  
  .site-menu-toggle-lines,
  .site-menu-toggle-lines:before,
  .site-menu-toggle-lines:after {
    width: 20px !important;
    height: 2.5px !important;
  }
  
  /* Mobile Menu Drawer */
  .site-menu-drawer {
    width: min(300px, 85vw) !important;
    padding: 0.8rem !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  .site-menu-drawer-inner {
    width: 100% !important;
  }
  
  .site-menu-drawer-inner .button-group {
    width: 100% !important;
  }
  
  .site-menu-drawer-inner .btn_menue {
    width: 100% !important;
    margin-bottom: 3px !important;
  }

  .site-brand {
    display: block !important;
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  
  .site-brand-logoLink {
    display: block !important;
    margin-bottom: 0.4rem !important;
    text-align: left !important;
  }

  .site-brand-logo {
    max-height: 60px !important;
    max-width: 140px !important;
    height: auto !important;
    display: block !important;
  }

  .site-brand-text {
    width: 100%;
    max-width: 100%;
    display: block !important;
  }

  .site-brand-title {
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
    padding-top: 0 !important;
    margin-bottom: 0.25rem !important;
    font-weight: bold !important;
  }

  .site-brand-doctors {
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
    padding-top: 0 !important;
    margin-bottom: 0.25rem !important;
  }

  .site-brand-phone {
    font-size: 0.9rem !important;
  }
  
  .site-brand-phoneRow {
    margin-top: 0.1rem !important;
  }

  /* Callout/Content Bereiche mobil */
  .callout,
  .callout_small {
    padding: 0.9rem !important;
    border-radius: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .callout h1 {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.6rem !important;
    font-weight: bold !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .callout h2 {
    font-size: 1.05rem !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .callout h3 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .callout p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .callout a {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .callout ul,
  .callout ol {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 1.2rem !important;
  }
  
  /* weiss-Klasse für andere Content-Bereiche */
  .weiss {
    padding: 0.9rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .weiss h1 {
    font-size: 1.15rem !important;
    font-weight: bold !important;
  }
  
  .weiss h2 {
    font-size: 1.05rem !important;
    font-weight: bold !important;
  }
  
  .weiss h3 {
    font-size: 1rem !important;
    font-weight: bold !important;
  }
  
  .weiss p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  /* Page-Leistungen mobil */
  .page-leistungen {
    padding: 0.9rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-leistungen h1 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.6rem !important;
    font-weight: bold !important;
  }

  .page-leistungen .leistungen-lead {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .page-leistungen .leistungen-lead p {
    margin-bottom: 0.7rem !important;
    font-size: 0.95rem !important;
  }
  
  .page-leistungen .leistungen-title,
  .leistungen-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.6rem !important;
    font-weight: bold !important;
  }
  
  .page-leistungen .leistungen-section {
    margin-top: 0.8rem !important;
    padding-top: 0.8rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .leistungen-lead {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Flex-Layouts auf mobil stapeln */
  .page-leistungen .leistungen-section div[style*="display: flex"],
  div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .page-leistungen .leistungen-section div[style*="display: flex"] > * {
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }

  /* Buttons mobil */
  .btn,
  .btn_menue {
    font-size: 0.95rem !important;
    padding: 0.65rem 0.8rem !important;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.3 !important;
  }

  .button-group.stacked .button {
    margin-bottom: 2px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .button-group {
    width: 100% !important;
    margin: 0 !important;
  }
  
  .pink.btn {
    width: auto !important;
    min-width: 120px !important;
    display: inline-block !important;
    padding: 0.65rem 1rem !important;
  }
  
  button.pink.btn {
    float: none !important;
    width: auto !important;
  }

  /* Bilder responsiv */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  .callout img {
    max-width: 100% !important;
    height: auto !important;
    float: none !important;
    display: block !important;
    margin: 0.5rem auto !important;
  }
  
  /* Verhindere Float-Probleme auf mobil */
  div[style*="float:left"],
  div[style*="float:right"],
  div[style*="float: left"],
  div[style*="float: right"],
  div[style*="clear:both"],
  div[style*="clear: both"] {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Clearfix für Callouts */
  .callout::after,
  .page-leistungen::after,
  .weiss::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
  }

  /* Tabellen responsiv */
  table {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.95rem !important;
    box-sizing: border-box !important;
    display: table !important;
  }

  table td,
  table th {
    padding: 0.5rem !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
  }
  
  /* Tabellen in Callouts */
  .callout table,
  .weiss table,
  .page-leistungen table {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Formulare mobil */
  form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px !important; /* Verhindert Zoom auf iOS */
    box-sizing: border-box !important;
    margin-bottom: 0.5rem !important;
    padding: 0.5rem !important;
  }

  input[type="submit"],
  button[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0.5rem !important;
    box-sizing: border-box !important;
    float: none !important;
  }
  
  form input[style*="float:left"],
  form input[style*="float: left"] {
    float: none !important;
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }
  
  form input[style*="float:right"],
  form input[style*="float: right"] {
    float: none !important;
    width: 100% !important;
  }
  
  /* Google Maps Canvas */
  #map_canvas {
    width: 100% !important;
    height: 250px !important;
    margin: 0.5rem 0 !important;
  }
  
  #directions {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  
  #directions div {
    margin-bottom: 0.5rem !important;
  }

  /* Zellen-Klassen mobil anpassen */
  .name {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin-bottom: 0.5rem !important;
    box-sizing: border-box !important;
  }

  .inhalt {
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  div.zelle,
  div.zelle350,
  div.zelle120,
  div.zelle450w,
  div.zelle90,
  div.zelle275,
  div.zelle_left,
  div.zelle_right,
  div.zelle35,
  div.zelle70,
  div.zelle_bew {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    white-space: normal !important;
    margin-bottom: 0.5rem !important;
    box-sizing: border-box !important;
    position: static !important;
    text-align: left !important;
  }

  /* Sprechzeiten-Seite und ähnliche Layouts */
  .hocheinfach,
  .hochstart,
  .hochdoppelt,
  .hochdreifach,
  .hochfrei {
    min-height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Karten-Grid auf eine Spalte */
  .leistungen-cards,
  .info-cards {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .leistungen-cards li,
  .info-cards li {
    min-width: 0 !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    font-size: 0.95rem !important;
    padding: 0.8rem !important;
    line-height: 1.55 !important;
    box-sizing: border-box !important;
  }
  
  .leistungen-cards li:before {
    width: 1.5rem !important;
    height: 1.5rem !important;
    font-size: 0.85rem !important;
    flex: 0 0 1.5rem !important;
  }
  
  .leistungen-list {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .leistungen-list li {
    font-size: 0.95rem !important;
    padding: 0.7rem 0 0.7rem 2rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  
  .leistungen-list li:before {
    width: 1.5rem !important;
    height: 1.5rem !important;
    font-size: 0.85rem !important;
    top: 0.7rem !important;
  }

  /* Long-form Leistungen (z.B. Hausärztliche Versorgung): keine unnötige Einrückung */
  .page-leistungen .leistungen-list li {
    padding: 0.7rem 0 !important;
  }

  .page-leistungen .leistungen-list li:before {
    content: none !important;
    display: none !important;
  }

  /* Kontaktdaten besser lesbar */
  .col_title {
    font-size: 1.05rem !important;
    padding-top: 4px !important;
    letter-spacing: -0.3px !important;
    line-height: 1.3 !important;
  }

  .col_subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }

  .col_name {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  .col_kontakt {
    font-size: 0.95rem !important;
    padding-top: 6px !important;
    line-height: 1.4 !important;
  }
}

/* Noch kleinere Bildschirme (unter 360px) */
@media screen and (max-width: 22.5em) {
  .site-brand-title {
    font-size: 0.95rem !important;
  }

  .site-brand-doctors {
    font-size: 0.85rem !important;
  }

  .site-brand-phone {
    font-size: 0.85rem !important;
  }
  
  .site-brand-logo {
    max-height: 50px !important;
    max-width: 120px !important;
  }
  
  .site-menu-toggle {
    width: 38px !important;
    height: 38px !important;
    margin-right: 0.5rem !important;
  }
  
  .site-headerbar {
    padding: 0.5rem 0.5rem !important;
  }
  
  .callout,
  .callout_small,
  .page-leistungen,
  .weiss {
    padding: 0.8rem !important;
  }

  .callout h1,
  .page-leistungen h1 {
    font-size: 1.05rem !important;
  }
  
  .callout h2 {
    font-size: 1rem !important;
  }
  
  .callout h3 {
    font-size: 0.95rem !important;
  }
  
  .callout p {
    font-size: 0.9rem !important;
  }

  .btn,
  .btn_menue {
    font-size: 0.9rem !important;
    padding: 0.6rem 0.7rem !important;
  }
  
  .row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .callout,
  .callout_small,
  .page-leistungen,
  .weiss {
    padding: 0.85rem !important;
  }
}
