.process .section__head h2{
  white-space: nowrap;
  max-width: none;
  width: 100%;
  text-align: center;
  font-size: var(--section-heading-size);
}

.process-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--soft-line);
  border-left: 1px solid var(--soft-line);
}

.process-step{
  padding: 18px;
  border-right: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.step-number{
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper-light);
  font-weight: 900;
  font-size: 20px;
}

.process-step:nth-child(2) .step-number{
  background: var(--rust);
}

.process-step:nth-child(3) .step-number{
  background: var(--blue);
}

.process-step:nth-child(4) .step-number{
  background: var(--gold);
  color: var(--ink);
}

.process-step h3{
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1;
}

.process-step p{
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.28;
}

@media (max-width: 980px){
  .process .section__head{
    justify-items: center;
    text-align: center;
  }

  .process .section__head h2{
    white-space: nowrap;
    max-width: 100%;
    width: 100%;
    text-align: center;
    font-size: clamp(16px, 4.7vw, 28px);
    line-height: .95;
    letter-spacing: -.075em;
    overflow: hidden;
  }

  .process-list{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .process .section__head h2{
    font-size: clamp(15px, 4.45vw, 24px);
  }

  .process-list{
    grid-template-columns: 1fr;
  }
}