/* 
}

/* === CTA-Floating-Elemente (Kontakt-Hoverfelder) === */
#floating-scroll-cta {
  position: fixed;
  bottom: 20px;
  right: 0;
  max-width: 300px;
  background-color: #fbf2df;
  border: 3px solid #2f6736;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 10px;
  color: #2f6736;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.8s ease-in-out;
}

#floating-scroll-cta.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#floating-scroll-cta .cta-expanded,
#floating-scroll-cta .cta-minimized {
  display: none;
}

#floating-scroll-cta.expanded {
  padding: 10px;
}

#floating-scroll-cta.expanded .cta-expanded {
  display: block;
  width: 100%;
}

#floating-scroll-cta.expanded .cta-minimized {
  display: none;
}

#floating-scroll-cta.expanded .cta-profile-img {
  display: block;
}

#floating-scroll-cta.minimized {
  all: unset;
  position: fixed;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  pointer-events: auto;
}

#floating-scroll-cta.minimized .cta-profile-img {
  display: none !important;
}

#floating-scroll-cta.minimized .cta-expanded {
  display: none;
}

#floating-scroll-cta.minimized .cta-minimized {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* === Profilbild (überstehend bei expanded & Badge bei minimized) === */
.cta-profile-img,
.cta-profile-badge {
  position: absolute;
  top: -31px;
  left: -31px;
  width: 62.5px;
  height: 62.5px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  object-fit: contain;
  z-index: 10000;
}

.cta-profile-badge {
  position: static;
  width: 60px;
  height: 60px;
  margin-left: -1px;
  margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cta-profile-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Haupt-Button (CTA erweitert) === */
.cta-expanded button {
  background-color: #2f6736;
  color: #ffffff;
  border: 2px solid #2f6736;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

.cta-expanded button:hover {
  background-color: #48dd7c;
  color: #ffffff;
}

/* === Minimierter Button (Bild + Text) === */
.styled-minimized {
  background-color: #2f6736;
  color: #ffffff;
  border: 2px solid white;
  border-radius: 999px 0 0 999px;
  padding: 1px 58px 1px 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 3px #2f6736;
  margin-bottom: 20px;
}

.styled-minimized:hover {
  background-color: #48dd7c;
  box-shadow: 0 0 0 3px #48dd7c;
}

.cta-minimized-text {
  white-space: nowrap;
  color: white;
  font-weight: bold;
}

/* === Pfeile unter Buttontext === */
.cta-arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
}

.cta-arrows .arrow-left,
.cta-arrows .arrow-right {
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  width: 20px;
}

/* === Slide-Out-Animation (z.B. bei Auto-Minimize) === */
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.cta-slide-out {
  animation: slideOutRight 0.5s ease forwards;
}

/* === Skalierung bei sehr hohen Bildschirmen === */
@media (min-height: 1001px) and (max-height: 1400px) {
  .styled-minimized {
    transform: scale(1.3);
    transform-origin: right bottom;
  }
}
/* Neue Slide-In-Animation für minimized */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Nur ergänzen, nichts ersetzen! */
#floating-scroll-cta.minimized {
  animation: slideInRight 0.5s ease forwards;
}
@keyframes slideOutRightMinimized {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/*-----------------------*/

/* === Vergrößerungs_Effekt - Angebotskarten === */
#a19779c28c99027536ed99cd6ceedc73:hover,
#a19779c28c9901a033ff37a90706521a:hover,
#a19779c28c9903d89ef7b52830b33278:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  position: relative;  /* Wichtig, damit z-index wirkt */
}
#a19779c28c99027536ed99cd6ceedc73,
#a19779c28c9901a033ff37a90706521a,
#a19779c28c9903d89ef7b52830b33278 {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 768px) {
#a1977c9f7ad6006f6b6ed7237b06f66a {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
   border: 0.8px solid #b0b0b0; /* Dunkelgrau */
  border-radius: 8px;     /* Optional: leicht abgerundet für eleganteren Look */
  padding: 8px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 16px;
  box-sizing: border-box;
  padding-left: 8vw;
  padding-right: 8vw;
  max-width: 100vw;
}

/* Jedes Kind ist ein „Slot“ */
#a1977c9f7ad6006f6b6ed7237b06f66a > div {
  min-width: 80%;
  max-width: 80%;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Sicherheitshalber */
.wb_content {
  max-width: 100%;
  box-sizing: border-box;
}
#a1977c9f7ad6006f6b6ed7237b06f66a {
  scroll-snap-type: none !important;
}
}



/* Button-Stil */
#topButton {
  display: none; /* Standardmäßig versteckt */
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #2f6736;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  z-index: 9999;
  font-family: 'Source Sans Pro', sans-serif;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


@media (min-height: 1001px) and (max-height: 1400px) { 
#topButton.visible:hover {
  opacity: 1;
}

#topButton.visible {
  opacity: 0.7;
  display: block;
  pointer-events: auto;
}
}

/* Benutzerdefinierter Stichpunkte-Stil */
ul.teasertext li,
ul li.wb-stl-custom26 {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
}

ul.teasertext li::before,
ul li.wb-stl-custom26::before {
  content: '\2026';
  position: absolute;
  left: 0;
  top: 0;
  color: #2f6736;
  font-weight: bold;
}

.lena-galbreath-photo {
  width: 80%;
  max-width: 471px;
  height: auto;
  aspect-ratio: 471 / 706;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.lena-galbreath-wrapper {
  width: 37%;
  min-width: 320px;
  max-width: 471px;
  margin: 0 auto;
}