/* .archive-howto {
  display: flex;
  flex-direction: column;
  gap: 3rem; /* space between each step */
  max-width: 56rem; /* optional: constrain line length */
  margin: 0 auto 3rem auto;
}*/ 

.archive-howto {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  width: 100%;
  max-width: none;   /* was 56rem + margin auto — remove constraint */
  margin-bottom:=;
}

.archive-howto__step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr); /* ~1/4 and ~3/4 */
  column-gap: 0rem; /* gap between number column and text */
  align-items: start;
  margin-bottom: 5rem;
}

.archive-howto__number {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: inherit;
}

.archive-howto__content {
  text-align: left;
}

.archive-howto__content h3 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.archive-howto__content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

/* Mobile: number on top, centered; text below, left */
@media (max-width: 640px) {
  .archive-howto {
    gap: 3rem;
  }

  .archive-howto__step {
    grid-template-columns: 1fr;
    row-gap: 0.75rem; /* tight space under the number before the text */
    column-gap: 0;
  }

  .archive-howto__number {
    text-align: center;
    justify-self: center;
  }

  .archive-howto__content {
    text-align: left;
  }
}