.nape-flow {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 32px;
}
.nape-flow__step {
  flex: 1 1 200px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nape-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.nape-flow__arrow svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 700px) {
  .nape-flow {
    flex-direction: column;
  }
  .nape-flow .nape-flow__arrow {
    transform: rotate(90deg);
  }
}