.hhow {
  margin: var(--section-margin) 0;
  /* image on the left at desktop */
  /* ---------- Content ---------- */
}
.hhow__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}
.hhow__visual {
  order: -1;
}
.hhow__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: clamp(440px,40vw,486px);
  margin: 0 auto;
}
.hhow__title {
  margin-bottom: clamp(20px, 5vw, 80px);
}
.hhow__title span {
  color: var(--color-accent);
}
.hhow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hhow__step {
  display: flex;
  gap: clamp(20px, 3vw, 32px);
}
.hhow__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}
.hhow__num {
  flex: 0 0 auto;
  width: clamp(48px,5vw,74px);
  height: clamp(48px,5vw,74px);
  border-radius: 100%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px,2.5vw,31px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hhow__line {
  flex: 1 0 auto;
  width: 2px;
  background: var(--color-accent);
}
.hhow__step:last-child .hhow__line {
  display: none;
}
.hhow__step-body {
  padding-bottom: clamp(80px, 8vw, 120px);
}
.hhow__step:last-child .hhow__step-body {
  padding-bottom: 0;
}
.hhow__step-title {
  margin-bottom: 12px;
  font-size: clamp(20px, 2.2vw, 24px);
}
.hhow__step-text {
}
@media (width < 992px) {
  .hhow {
    /* content first, image after on mobile */
  }
  .hhow__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(24px, 6vw, 40px);
  }
  .hhow__visual {
    order: 0;
  }

  .hhow__title {
    text-align: center;
  }

  .hhow__step-body {
    padding-bottom: clamp(32px,6vw,56px);
  }
}