.workflow .items {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.workflow .items > div {
  grid-area: auto;
}
@media (min-width: 576px) {
  .workflow .items {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .workflow .items {
    grid-template-columns: repeat(3, 400px);
    gap: 72px;
  }
}