.quote_container {
    max-width: 1152px;
    margin: 120px auto;
    display: block;
    position: relative;
    z-index: 0; /* wichtig */
    border-radius: 40px;
    overflow: visible; /* Glow darf "überhängen" */
    position: relative;
}

.quote_container::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  border-radius: 200px;
  background: radial-gradient(ellipse at center, #FFFD82F2 0%, #FFFD82F2 70%);
  z-index: -1;
  filter: blur(30px);
  opacity: 0.7;
}

.quote_autor_container {
  display: grid;
  grid-template-columns: 380px auto;
  gap: 37px;
  text-align: left;
  align-items: center;
  /* padding: 32px; */
  background-color: #fff;
  border-radius: 200px; /* z. B. 12px Rundung */
}

.quote_left {
  display: flex;
}

.quote_right {
  max-width: 610px;
  padding-right: 30px;
}

.quote_image {
  width: 380px;
  height: 380px;
  border-radius: 200px;
  object-fit: cover;
  margin: auto;
}

.quote_title {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -2%;
  margin-bottom: 24px;
  color: #002E2D;
}

.quote_content {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 34px;
}

.quote_autor_container blockquote {
  border: inherit;
  padding: 0;
  font-style: inherit;
  margin: 0 0 34px;
  color: #002E2D;
}

.quote_author {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  max-width: 400px;
  color: #002E2D;
}

.quote_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.quote_slider_nav {
  position: absolute;
  bottom: 50px;
  right: 110px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.quote_slider_nav button {
  background-color: #fff;
  border: 1px solid #668888;
  cursor: pointer;
  border-radius: 50px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px; /* z. B. feste Größe für schöne Buttons */
  height: 48px;
  padding: 0;
  cursor: pointer;
}

.quote_slider_nav button:hover {
  background-color: #E5EAEA;
}

.quote_prev svg {
  margin-left: -2px;
}

.quote_next svg {
  margin-left: 2px;
}

@media (max-width:1140px) {

  .quote_autor_container {
    align-items: flex-start;
  }

  .quote_slider_nav {
    position: relative;
    bottom: 60px;
    justify-content: center;
    left: 0;
  }

  .quote_right {
    padding-top: 32px;
  }

}

@media (max-width:980px) {

  .quote_container .splide__slide {
    display: grid;
  }

  .quote_container {
    margin: 33px auto 96px;
  }

  .quote_image {
    position:relative;
    z-index:1;
    width: 160px;
    height: 160px;
    margin-top: -80px;
  }

  .quote_left{
    position:relative;
    display:inline-block;
  }

/* Glow‑Ellipse hinter dem Bild */
  .quote_left::before{
    content:"";
    position:absolute;
    top: -80px;
    left: 10px;
    right: 10px;
    bottom: 30px;
    border-radius:200px;
    background:radial-gradient(ellipse at center,#FFFD82F2 0%,#FFFD82F2 70%);
    filter:blur(30px);
    opacity:0.7;
    z-index:0;
  }

  .quote_autor_container {
    display: block;
    text-align: center;
    border-radius: 24px;
    padding: 0 24px 32px;
    margin-top: 95px;
  }

  .quote_right {
   padding-top: 26px;
   max-width: 100%;
   padding-right: 0;
   padding-bottom: 72px;
  }

  .quote_title {
   font-size: 24px;
   line-height: 30px;
   margin-bottom: 20px;
  }

  .quote_autor_container blockquote {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 32px;
  }

  .quote_slider_nav {
    bottom: 76px;
  }

  .quote_slider_nav button {
    width: 44px;
    height: 44px;
  }

  .quote_author {
    font-size: 16px;
    line-height: 22px;
    max-width: unset;
  }

  .quote_container::before {
    top: 80px;
    left: -10px;
    right: -10px;
    bottom: 42px;
    border-radius: 0px;
  }
}

@media (max-width:720px) {

}
