/* ===== Hero-Column anpassen ===== */
.hero .vc_col-sm-5 > .vc_column-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.hero .vc_col-sm-5 > .vc_column-inner > .wpb_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

/* Standardmäßig: alle normalen Elemente bleiben oben */
.hero .vc_col-sm-5 .wpb_wrapper > * {
  flex: 0 0 auto;
}

/* Nur der Textblock mit dem Countdown soll nach unten gedrückt werden */
.hero .vc_col-sm-5 .wpb_text_column:last-child {
  margin-top: auto;
}

/* ===== Countdown Styling bleibt clean ===== */
.kmu-countdown-wrapper {
  background: #ffffff;
  border-radius: 14px 14px 0px 0px;
  padding: 1.8rem 1.2rem;
  width: 100%;
  max-width: 440px;
  text-align: center;
  margin: 0 auto;
}

/* Inhalt Countdown */
.kmu-countdown {
  font-family: 'Inter', sans-serif;
  color: #b59b2b;
}

.kmu-title {
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 10px;
  color: #b59b2b;
  letter-spacing: -1.2px; /* engeres Kerning */
}

.kmu-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.kmu-timer div {
  background: #ffffff;
  border: 2px solid #b59b2b;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  min-width: 80px;
}

.kmu-timer span {
  display: block;
  font-weight: 700;
  font-size: 2.8rem;
  color: #b59b2b;
}

.kmu-timer label {
  display: block;
  font-size: 0.9rem;
  color: #333;
}


@media (max-width: 1220px) and (min-width: 1150px) {
  .kmu-title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .kmu-timer {
    gap: 0.6rem;
  }

  .kmu-timer div {
    min-width: 80px;
    padding: 0.5rem 0.7rem;
  }

  .kmu-timer span {
    font-size: 2.0rem;
  }

  .kmu-timer label {
    font-size: 0.8rem;
  }
}

@media (max-width: 1149px) and (min-width: 1000px) {
  .kmu-timer > div:last-child {
    display: none !important;
  }
}


/* ===== Mobile: Countdown fließt normal ===== */
@media (max-width: 768px) {
  .hero .vc_col-sm-5 > .vc_column-inner,
  .hero .vc_col-sm-5 > .vc_column-inner > .wpb_wrapper {
    display: block;
  }
  .hero .vc_col-sm-5 .wpb_text_column:last-child {
    margin-top: 2rem;
  }
}

@media (max-width: 485px) {
  .kmu-countdown-wrapper {
    padding: 12px;
    max-width: 100%;
  }

  .kmu-title {
    font-size: 34px;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
  }

  .kmu-timer {
    gap: 0.4rem;
  }

  .kmu-timer div {
    min-width: 65px;
    padding: 0.4rem 0.5rem;
    border-width: 1.5px;
    border-radius: 6px;
  }

  .kmu-timer span {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  .kmu-timer label {
    font-size: 0.7rem;
  }
}

@media (max-width: 350px) {
  .kmu-timer > div:last-child {
    display: none !important;
  }
	
}