.process {
  background: var(--cream);
  position: relative;
}
.process .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 1024px) {
  .process .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .process .steps {
    grid-template-columns: 1fr;
  }
}
.process .step {
  position: relative;
  padding: 36px 28px 32px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
}
.process .step:last-child {
  border-right: 0;
}
.process .step:hover {
  background: var(--white);
}
@media (max-width: 1024px) {
  .process .step:nth-child(even) {
    border-right: 0;
  }
}
@media (max-width: 640px) {
  .process .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process .step:last-child {
    border-bottom: 0;
  }
}
.process .step .num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--sand-text);
  font-style: italic;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.process .step .num small {
  font-size: 14px;
  color: var(--ink-faint);
  font-style: normal;
  letter-spacing: 0.16em;
  font-family: var(--sans);
}
.process .step h3 {
  margin: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 600;
}
.process .step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.process .step .ico {
  position: absolute;
  top: 36px;
  right: 28px;
  width: 32px;
  height: 32px;
  color: var(--sand-text);
}