/* =========================================
   Hero Split — formoline/hero-split
   ========================================= */
.hero-split {
  display: flex;
  flex-direction: row;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

/* --- Left photo panel --- */
.hero-split__left {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
	display: none;
}

@media (min-width: 1240px) {
  .hero-split__left {
    flex: 0 0 40%;
	  display:block;
  }
}

@media (min-width: 1700px) {
  .hero-split__left {
    flex: 0 0 35%;
  }
}

@media (min-width: 1900px) {
  .hero-split__left {
    flex: 0 0 30%;
  }
}

.hero-split__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Right aqua panel --- */
.hero-split__right {
  flex: 1;
  background: var(--formoline-aqua-2);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* --- Floating needle --- */

.hero-split__needle-wrapper-mobile {
	display: block;
	margin-bottom: 32px;

}
.hero-split__needle-mobile {
	width: 100%;
	height: auto;
}

.hero-split__needle-wrapper {
	display: none;
}

@media (min-width: 1240px) {
	.hero-split__needle-wrapper-mobile {
		display: none;
	}

	.hero-split__needle-wrapper {
	  display: block;
	  position: absolute;
	  top: -15px;
	  left: -45%;
	  z-index: 2;
	  pointer-events: none;
	  width: 120%;
	}
	.hero-split__needle {
	  width: 100%;
	  height: auto;
	  display: block;
	}
	
}

@media (min-width: 1899px) {
	.hero-split__needle-wrapper {
	  top: -15px;
	  left: -25%;
	}
}

/* --- Content area --- */
.hero-split__content {
  position: relative;
  z-index: 3;
  padding: 80px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  flex: 1;
}

/* --- Header (ABNEHMSPRITZE style) --- */
.hero-split__header {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff !important;
  line-height: 1.1;
  margin: 0 0 24px 0 !important;
  letter-spacing: 1px !important;
}

/* --- Subheader (WAS KOMMT VORHER style) --- */
.hero-split__subheader {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

/* --- White text card --- */
.hero-split__card {
  background: #ffffff;
  max-width: 1000px;
}
.hero-split__body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--formoline-black, #1a1a1a);
  padding: 28px 32px;
}
.hero-split__body p {
  margin: 0 0 16px 0;
  color: inherit;
  font-size: 20px;
}
.hero-split__body p:last-child {
  margin-bottom: 0;
}
.hero-split__body strong,
.hero-split__body b {
  color: var(--formoline-aqua-2);
}

.hero-split__badge {
  background: var(--formoline-orange-1);
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 24px 32px;
  margin-bottom: 24px;
  margin-right: 32px;
  display: block;
}

@media (max-width: 991px) {
  .hero-split__badge {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-split__content {
    padding: 80px 32px 40px 32px;
  }
  .hero-split__needle-wrapper {
    width: 80%;
    left: -60px;
  }
}

@media (max-width: 991px) {
  .hero-split {
    flex-direction: column;
    min-height: unset;
  }
  .hero-split__left {
    flex: 0 0 320px;
    height: 320px;
  }
  .hero-split__needle-wrapper {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
  }
  .hero-split__content {
    padding: 72px 24px 40px 24px;
  }
  .hero-split__card {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-split__left {
    height: 240px;
  }
  .hero-split__content {
    padding: 64px 16px 32px 16px;
  }
  .hero-split__card {
    padding: 20px 20px;
  }
  .hero-split__body {
    font-size: 15px;
  }
	
  	.hero-split__badge {
		margin-right: 32px;
		margin-left: 32px;
	}
}