/* AutomaNext – Ablauf-Section auf /web (seitenspezifisch, ergaenzt style.css; nur wp-*-Klassen) */
.wp-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.wp-process-eyebrow {
  margin: 0 0 .7rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}
.wp-process-lead {
  margin-top: .9rem;
  color: var(--muted);
  max-width: 32ch;
}
.wp-process-intro .arrow-link { margin-top: 1.6rem; }
.wp-process-track { list-style: none; margin: 0; padding: 0; }
.wp-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.wp-process-step::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 3.4rem;
  bottom: 0;
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(var(--brand), var(--brand-soft));
}
.wp-process-step:last-child { padding-bottom: 0; }
.wp-process-step:last-child::before { display: none; }
.wp-process-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.wp-process-content { padding-top: .35rem; }
.wp-process-content h3 { margin: 0; font-size: 1.15rem; letter-spacing: -.01em; }
.wp-process-content p { margin-top: .4rem; color: var(--muted); font-size: .95rem; max-width: 54ch; }
.wp-process-track .wp-process-step:nth-child(2) { transition-delay: .05s; }
.wp-process-track .wp-process-step:nth-child(3) { transition-delay: .1s; }
.wp-process-track .wp-process-step:nth-child(4) { transition-delay: .15s; }
.wp-process-track .wp-process-step:nth-child(5) { transition-delay: .2s; }
.wp-process-track .wp-process-step:nth-child(6) { transition-delay: .25s; }
@media (max-width: 860px) {
  .wp-process-layout { grid-template-columns: 1fr; gap: clamp(1.75rem, 6vw, 2.5rem); }
}
@media (prefers-reduced-motion: reduce) {
  .wp-process-track .wp-process-step { transition-delay: 0s !important; }
}
