.p-home__welcome-col ol {
font-size: 0.9rem;
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}

.p-home__welcome-col ol li {
  display: flex;
  align-items: flex-start; /* Nummer bleibt oben */
  gap: 0.6rem;
  margin-bottom: 0.8em;
}

.p-home__welcome-col ol li::before {
  counter-increment: step;
  content: counter(step);

  width: 1.6rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  flex: 0 0 1.6rem; /* Fixe Größe, kein Shrinking */

  display: grid;
  place-items: center;

  background: #007bff;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-top: 0.15rem; /* optische Feinjustierung */
}

/* Der Textblock soll umbrechen dürfen */
.p-home__welcome-col ol li > * {
  flex: 1;
}