.process {
  padding: 6.5rem 2rem;
  background: #f1e9d8;
}

.process-steps {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  position: relative;
  padding: 0 1rem;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.3rem;
  right: -1rem;
  width: 2rem;
  height: 1px;
  background: #c9972f;
  display: none;
}

@media (min-width: 901px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

.process-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #c9972f;
  margin-bottom: 0.8rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.9rem;
  color: #6b5c4c;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 560px) {
  .process {
    padding: 5rem 1.4rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}
