.quote_container {
    max-width: 1152px;
    margin: 60px 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: linear-gradient( 90deg, #DFDFDFE3 82%, #948B9B00 100% );
  z-index: -1;
  filter: blur(30px);
  opacity: 0.7;
}

.quote_autor_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
  position: relative;
  /* padding: 32px; */
  background-color: #fff;
  border-radius: 200px; /* z. B. 12px Rundung */
}

.quote_autor_container.no_img {
  text-align: center;
}

.quote_left {
  display: flex;
  justify-content: center;
  width: 100%;
}

.quote_right {
  max-width: 100%;
  width: 100%;
  padding: 0 80px 90px;
}

.quote_autor_container.no_img .quote_right {
  max-width: unset;
  padding: 30px 120px 90px;
}

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

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

.quote_content {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 20px;
}

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

.quote_author {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  max-width: 400px;
  margin: 0 auto;
  color: #002E2D;
}

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

.quote_slider_nav {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 20px;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  z-index: 10;
}

.splide__slide.is-active .quote_slider_nav {
  display: flex;
}

.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: center;
  }

  .quote_right {
    padding: 0 64px 90px;
  }

  .quote_autor_container.no_img .quote_right {
    padding: 24px 96px 90px;
  }

}

@media (max-width:980px) {

  .quote_container .splide__slide {
    display: grid;
  }

  .quote_container {
    margin: 16px auto 48px;
  }

  .quote_image {
    width: 160px;
    height: 160px;
    margin: 40px auto 0;
  }

  .quote_left{
    position: static;
    display: flex;
  }

  .quote_left::before{
    display: none;
  }

  .quote_autor_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 120px;
    padding: 0 0 32px;
    margin-top: 0;
  }

  .quote_right {
   max-width: 100%;
   padding: 0 56px 60px;
  }

  .quote_autor_container.no_img .quote_right {
    padding: 24px 56px 60px;
  }

  .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 {
    left: 50%;
    right: auto;
    bottom: 20px;
    transform: translateX(-50%);
  }

  .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) {
  .quote_right {
    padding: 0 40px 56px;
  }

  .quote_autor_container.no_img .quote_right {
    padding: 20px 40px 56px;
  }

  .quote_image {
    width: 140px;
    height: 140px;
    margin-top: 32px;
  }

}
