/* --- HERO BANNER --- */
.team-hero {
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  margin-bottom: 2.2rem;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 310px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-hero-title-box {
  max-width: 540px;
  margin: 1.3rem auto 2.5rem auto;
  background: #fff8f5;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  text-align: center;
  padding: 0.18em 0.7em !important;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.1s cubic-bezier(.4,.01,.19,.99);
}
.team-hero-title-box h1 {
  color: #b96863;
  font-size: 2.6rem;
  margin: 0 !important;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1 !important;
  padding: 0 !important;
}
@media (max-width: 700px) {
  .team-hero { height: 170px; }
  .team-hero-title-box { max-width: 96vw; padding: 0.7rem 0.6rem; }
  .team-hero-title-box h1 { font-size: 1.4rem; }
}

/* --- BLÖCKE & ANIMATIONEN --- */
.team-section {
  background: #f8f3f1;
  margin: 0 auto 2.5rem auto;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
  max-width: 920px;
  padding: 2.5rem 2rem 2.3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s cubic-bezier(.4,.01,.19,.99);
}
.team-section.team-section-alt {
  background: #fff8f5;
}
.team-card {
  display: flex;
  align-items: stretch;
  gap: 2.7rem;
  width: 100%;
}
.team-info {
  flex: 1.8 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 1rem 0.2rem;
}
.team-info h2 {
  color: #b96863;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.team-info p {
  font-size: 1.13rem;
  color: #444;
  line-height: 1.55;
  font-family: 'Inter', Arial, sans-serif;
}
.softheart-btn {
  display: inline-block;
  margin-top: 2.1rem;
  background: #b45e5e;
  color: #fff;
  font-weight: 600;
  font-family: inherit;
  font-size: 1.15rem;
  padding: 0.7em 2em;
  border-radius: 13px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(180,94,94,0.07);
  letter-spacing: 0.02em;
  cursor: pointer;
}
.softheart-btn:hover {
  background: #c97979;
  box-shadow: 0 8px 36px rgba(180,94,94,0.11);
  transform: translateY(-2px) scale(1.03);
}

/* Animation für Fade-In (wie bisher) */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
/* Responsiv */
@media (max-width: 900px) {
  .team-section { padding: 1.1rem 0.4rem; }
  .team-card { flex-direction: column; gap: 1.5rem; align-items: center;}
  .team-info h2 { font-size: 1.5rem; }
	
/* Termine Block */
.termine-block {
  /* Kein zusätzlicher Code notwendig – block inherits von .team-section */
  padding: 2.6rem 2.2rem 2.3rem 2.2rem;
}
.termine-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.termine-content h2 {
  color: #b96863;
  font-size: 2.2rem;
  font-family: 'Merriweather', serif;
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.termine-content h3 {
  font-size: 1.5rem;
  color: #b96863;
  font-family: 'Merriweather', serif;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
}
.termine-content p {
  font-size: 1.13rem;
  color: #444;
  margin-bottom: 1.15rem;
  font-family: 'Inter', Arial, sans-serif;
}
.termine-content ul {
  margin: 0 0 1.2rem 1.1em;
  padding-left: 1.1em;
  font-size: 1.12rem;
  color: #444;
  font-family: 'Inter', Arial, sans-serif;
}
.termine-content ul ul {
  margin-top: 0.18em;
  margin-bottom: 0.18em;
  font-size: 1.05rem;
  color: #555;
}
.termine-hinweis {
  font-size: 0.99rem;
  color: #855650;
  background: #fff8f5;
  border-radius: 10px;
  margin-top: 1.6rem;
  padding: 1.08em 1em 0.97em 1em;
  box-shadow: 0 2px 11px rgba(180,94,94,0.06);
  font-style: italic;
}
.termine-content a {
  color: #399e99;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.15s;
}
.termine-content a:hover {
  color: #b96863;
}

.termine-imgbox {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.termine-imgbox img {
  width: 100%;
  max-width: 300px;
  border-radius: 11px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.11);
  margin-top: 1.1em;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .termine-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .termine-imgbox {
    justify-content: center;
    margin-top: 2.2rem;
  }
}
@media (max-width: 600px) {
  .termine-block { padding: 1.3rem 0.5rem; }
  .termine-content h2 { font-size: 1.3rem; }
  .termine-content h3 { font-size: 1.08rem; }
  .termine-imgbox img { max-width: 95vw; }
  .termine-content ul { font-size: 0.99rem; }
}
	
/* ENDE */

/* ---------- HERO BANNER ---------- */
.team-hero {
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  margin-bottom: 2.2rem;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 310px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Titel-Kasten unter Hero-Banner --- */
.team-hero-title-box {
  max-width: 540px;
  margin: 2.1rem auto 2.6rem auto;
  background: #fff8f5;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  text-align: center;
  padding: 0.7rem 2.2rem 0.9rem 2.2rem;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.1s cubic-bezier(.4,.01,.19,.99);
}
.team-hero-title-box h1 {
  color: #b96863;
  font-size: 2.6rem;
  margin: 0;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Mobile: Hero kleiner */
@media (max-w

  .team-info p { font-size: 1.01rem; }
}

/*Für Buttons Email und Insta */
.mini-btn-row {
  display: flex;
  gap: 1rem;
  margin: 0.7em 0 1.5em 0;
}

.guest-btn.small-btn {
  font-size: 1rem;
  padding: 0.48em 1.28em 0.48em 1.07em;
  border-radius: 1.3em;
  background: #bb6d6d;
  color: #fff;
  border: none;
  outline: none;
  box-shadow: 0 4px 20px rgba(100,30,30,0.07);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.17s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.guest-btn.small-btn:hover,
.guest-btn.small-btn:focus {
  background: #d47878;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 24px rgba(150,30,30,0.12);
}

.guest-btn.insta-btn:hover,
.guest-btn.insta-btn:focus {
  background: #e6683c;
}

.mini-btn-icon {
  height: 1.15em;
  width: 1.15em;
  margin-right: 0.52em;
  margin-bottom: -2.2px;
  vertical-align: middle;
}








.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
.wp-block-uagb-image{display:flex}.wp-block-uagb-image__figure{position:relative;display:flex;flex-direction:column;max-width:100%;height:auto;margin:0}.wp-block-uagb-image__figure img{height:auto;display:flex;max-width:100%;transition:box-shadow 0.2s ease}.wp-block-uagb-image__figure>a{display:inline-block}.wp-block-uagb-image__figure figcaption{text-align:center;margin-top:0.5em;margin-bottom:1em}.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions{align-self:center}.wp-block-uagb-image--align-left{text-align:left}.wp-block-uagb-image--align-right{text-align:right}.wp-block-uagb-image--align-center{text-align:center}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:100vw;height:auto}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img{height:auto;width:100% !important}.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img{height:auto;width:100%}.wp-block-uagb-image--layout-overlay__color-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;opacity:0.2;background:rgba(0,0,0,0.5);transition:opacity 0.35s ease-in-out}.wp-block-uagb-image--layout-overlay-link{position:absolute;left:0;right:0;bottom:0;top:0}.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity:1}.wp-block-uagb-image--layout-overlay__inner{position:absolute;left:15px;right:15px;bottom:15px;top:15px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-color:#fff;transition:0.35s ease-in-out}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.top-center,.wp-block-uagb-image--layout-overlay__inner.top-right{justify-content:flex-start}.wp-block-uagb-image--layout-overlay__inner.bottom-left,.wp-block-uagb-image--layout-overlay__inner.bottom-center,.wp-block-uagb-image--layout-overlay__inner.bottom-right{justify-content:flex-end}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.center-left,.wp-block-uagb-image--layout-overlay__inner.bottom-left{align-items:flex-start}.wp-block-uagb-image--layout-overlay__inner.top-right,.wp-block-uagb-image--layout-overlay__inner.center-right,.wp-block-uagb-image--layout-overlay__inner.bottom-right{align-items:flex-end}.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{color:#fff;transition:transform 0.35s, opacity 0.35s ease-in-out;transform:translate3d(0, 24px, 0);margin:0;line-height:1em}.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width:30%;border-top-width:2px;border-top-color:#fff;border-top-style:solid;margin-bottom:10px;opacity:0;transition:transform 0.4s, opacity 0.4s ease-in-out;transform:translate3d(0, 30px, 0)}.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity:0;overflow:visible;color:#fff;transition:transform 0.45s, opacity 0.45s ease-in-out;transform:translate3d(0, 35px, 0)}.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption{opacity:1;transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1.05)}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{width:calc(100% + 40px) !important;max-width:none !important;transform:translate3d(-40px, 0, 0);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-grayscale img{filter:grayscale(0%);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-grayscale:hover img{filter:grayscale(100%)}.wp-block-uagb-image--effect-blur img{filter:blur(0);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-blur:hover img{filter:blur(3px)}
.uagb-block-1b4ce92d.wp-block-uagb-image{text-align: center;justify-content: center;align-self: center;}.uagb-block-1b4ce92d .wp-block-uagb-image__figure{align-items: center;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure img{width: px;height: auto;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-1b4ce92d.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}@media only screen and (max-width: 976px) {.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure img{width: px;height: auto;}}@media only screen and (max-width: 767px) {.uagb-block-1b4ce92d.wp-block-uagb-image .wp-block-uagb-image__figure img{width: px;height: auto;}}