.hero-section_verlauf {
  width: 100vw;
  min-height: 720px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(135deg, #ff914d 0%, #b367e6 100%);
  position: relative;
  overflow: hidden;
  font-family: 'PP Neue Montreal', sans-serif; 
  /* Standard: kein extra Padding oben/unten */
}

.hero-section_verlauf .hero-content {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  margin: 0;
}

.hero-section_verlauf .hero-left {
  flex: 2.5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 0;
}

.hero-section_verlauf .hero-right {
  flex: 1.1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 48px;
  padding-left: 2vw;
}

.hero-section_verlauf .hero-intro {
  color: #222;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 500; /* Medium */
  margin-bottom: 40px;
  margin-top: 0;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0.85;
  letter-spacing: 0.14em;
  font-family: 'PP Neue Montreal Medium', 'PP Neue Montreal', sans-serif;
}

.hero-section_verlauf .hero-heading {
  color: #fff;
  font-size: 54px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.08;
  max-width: 90%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-family: 'PP Neue Montreal', sans-serif;
}

.hero-section_verlauf .hero-paragraph {
  color: #222;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 0 0;
  line-height: 1.47;
  max-width: 38vw;
  opacity: 0.9;
  text-align: left;
  box-sizing: border-box;
  font-family: 'PP Neue Montreal Book', 'PP Neue Montreal', sans-serif;
}

@media (max-width: 1200px) {
  .hero-section_verlauf .hero-left {
    padding-left: 32px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero-section_verlauf .hero-right {
    padding-right: 32px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero-section_verlauf .hero-paragraph {
    max-width: 50vw;
  }
  .hero-section_verlauf .hero-heading {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .hero-section_verlauf .hero-content {
    flex-direction: column;
    align-items: flex-start;
    min-height: 640px;
  }
  .hero-section_verlauf .hero-left,
  .hero-section_verlauf .hero-right {
    flex: unset;
    width: 100%;
    padding: 80px 32px 80px 32px;
  }
  .hero-section_verlauf .hero-heading {
    font-size: 32px;
    max-width: 100%;
  }
  .hero-section_verlauf .hero-paragraph {
    font-size: 17px;
    max-width: 100%;
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .hero-section_verlauf {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    min-height: 440px;
  }
  .hero-section_verlauf .hero-content {
    min-height: 440px;
    max-width: 100% !important;
    width: 100% !important;
  }
  .hero-section_verlauf .hero-left,
  .hero-section_verlauf .hero-right {
    padding: 0 16px 0 16px !important; /* Mobil: oben/unten = 0, nur 16px Rand links/rechts */
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-section_verlauf .hero-heading {
    font-size: 40px !important;
    margin-bottom: 40px !important;
    max-width: 100% !important;
  }
  .hero-section_verlauf .hero-paragraph {
    font-size: 16px;
    margin-top: 40px !important;
    max-width: 100% !important;
  }
  .hero-section_verlauf .hero-intro {
    font-size: 12px !important;
    margin-bottom: 40px !important;
    max-width: 100% !important;
  }
}