/* Lesefreundliche Bullet-Liste für WIIFM */
.wiifm-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.wiifm-list li {
  margin-bottom: 1.2rem;
  padding-left: 1.8em;
  position: relative;
  line-height: 1.6;
  font-size: 1.05rem;
  /*border-left: 3px solid #ff8c42;*/
}

.wiifm-list li::before {
  content: '🧭';
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.1rem;
}

/* Fahrplan-/Timeline-Stil */
/* Timeline: Fahrplan */
.timeline {
  position: relative;
  margin: 3rem 0;
  padding-left: 37px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 68px;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #ff8c42 0%,
    #ff8c42 90%,
    rgba(255, 140, 66, 0) 100%
  );
}


.step {
  position: relative;
  margin-bottom: 2.5rem;
}


.circle {
  position: absolute;
  top: 0;
  left: 21px; /* NEU: exakt auf Linie zentriert */
  width: 25px;
  height: 25px;
  background: #fff;
  border: 3px solid #ff8c42;
  border-radius: 50%;
  z-index: 1;
}

.text {
  margin-left: 50px; /* etwas mehr Abstand zur Linie */
  font-size: 1.05rem;
  line-height: 1.6;
}



