.ics-journey-track {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
  padding-top: 20px;
}
.ics-journey-track::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 2px;
  background: #E5E7EB;
  z-index: 0;
}
.ics-journey-track::after {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(10% + 22px);
  width: 0%;
  height: 2px;
  background: #CB4074;
  z-index: 1;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ics-journey-track.ics-animate::after {
  width: calc(80% - 44px);
}
.ics-journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}
.ics-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E5E7EB;
  color: #6B7280;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.35s ease, outline-color 0.4s ease;
  border: 3px solid #FFFFFF;
  outline: 2px solid #E5E7EB;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.ics-journey-step.ics-active .ics-step-num {
  background: #0F766E;
  color: #ffffff;
  outline-color: #0F766E;
  transform: scale(1.12);
}
.ics-step-label {
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.ics-step-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.55;
  max-width: 140px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .ics-journey-track::before,
  .ics-journey-track::after { display: none; }

  .ics-journey-track {
    flex-direction: column;
    align-items: stretch;
    padding-left: 0;
    position: relative;
    gap: 0;
  }

  .ics-journey-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0 0 32px 64px;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
  }

  .ics-journey-step:last-child {
    padding-bottom: 0;
  }

  .ics-step-num {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }

  .ics-step-label {
    margin-top: 2px;
    margin-bottom: 4px;
    width: 100%;
  }

  .ics-step-desc {
    max-width: 100%;
    width: 100%;
  }

  /* vertical line through centers of circles, stops at last circle */
  .ics-journey-step::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: gray;
    z-index: 0;
  }

  .ics-journey-step:last-child::before {
    display: none;
  }

  /* animated green line overlay */
  .ics-journey-step::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 44px;
    width: 2px;
    height: 0;
    background: #CB4074;
    z-index: 1;
    transition: height 0.4s ease;
  }

  .ics-journey-step:last-child::after {
    display: none;
  }

  .ics-journey-step.ics-active::after {
    height: calc(100%);
  }
  
  .mob-vline { display: none !important; }
}

.ics-journey-track.no-animation::after {
  width: calc(80% - 44px);
}
.ics-journey-track.no-animation .ics-journey-step .ics-step-num {
  background: #0F766E;
  color: #ffffff;
  outline-color: #0F766E;
  transform: none;
}