/* Zentrierte Darstellung fuer den Auftragsablauf */
.page-hero .container {
  max-width: 920px;
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.order-visual {
  padding: 24px 0 20px;
  border-bottom: 1px solid #dce7f0;
  background: linear-gradient(180deg, #f4f8fb, #fff);
}

.order-visual .container {
  display: flex;
  justify-content: center;
}

.order-visual img {
  width: min(100%, 540px);
  height: auto;
  margin: 0 auto;
}

.order-visual + .section {
  padding-top: 54px;
}

.order-visual + .section > .container {
  max-width: 1040px;
}

.timeline {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  gap: 24px;
}

.timeline article {
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  padding: 32px 36px;
  border: 1px solid #dce7f0;
  border-left: 5px solid #0874c9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 45, 90, .07);
}

.timeline article > span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e8f3fb;
  font-size: 1.5rem;
  line-height: 1;
}

.timeline h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.timeline p {
  margin: 0;
  color: #465b6d;
}

@media (max-width: 600px) {
  .page-hero .container {
    text-align: left;
  }

  .page-hero .eyebrow {
    justify-content: flex-start;
  }

  .order-visual {
    padding: 18px 0 12px;
  }

  .order-visual img {
    width: min(100%, 390px);
  }

  .order-visual + .section {
    padding-top: 38px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 25px 22px;
  }

  .timeline article > span {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
  }
}
