/* seELentAumel Startseiten-Hero */

.sth-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 18px;
  background:
    url("../img/seelentaumel-hero-watercolor.png")
    center center / cover no-repeat;
  box-shadow: 0 12px 34px rgba(76, 63, 84, 0.12);
}

.sth-hero__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 48px 24px;
  background: rgba(255, 253, 252, 0.12);
}

.sth-hero__content {
  width: min(680px, 100%);
  text-align: center;
  color: #4c3f54;
}

.sth-hero__content h1 {
  margin: 0 0 12px;
  font-family: "Bubbler One", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #8a5bb8;
  text-shadow: 0 3px 10px rgba(76, 63, 84, 0.18);
}

.sth-hero__lead {
  margin: 0 0 8px;
  font-family: "Bubbler One", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #70439e;
}

.sth-hero__text {
  margin: 0 0 26px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.sth-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.8rem;
  border-radius: 28px;
  text-transform: none;
}

.sth-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 42px;
}

.sth-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 118px;
  padding: 18px;
  background: #fffdfc;
  border: 1px solid #eadbe8;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(76, 63, 84, 0.08);
}

.sth-benefit__icon {
  display: inline-flex;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #eee3f6, #dff4f6, #f8e3ed);
  color: #8a5bb8;
  font-size: 2rem;
  line-height: 1;
}

.sth-benefit h2 {
  margin: 0 0 4px;
  font-family: "Bubbler One", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #4c3f54;
}

.sth-benefit p {
  margin: 0;
  color: #75687d;
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .sth-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .sth-hero,
  .sth-hero__overlay {
    min-height: 520px;
  }

  .sth-hero {
    border-radius: 14px;
    background-position: center center;
  }

  .sth-hero__overlay {
    padding: 36px 18px;
    background: rgba(255, 253, 252, 0.30);
  }

  .sth-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sth-benefit {
    min-height: 100px;
  }
}
