#process { padding: 7rem 0; }

.psteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  position: relative;
}
.psteps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brd), var(--brd), transparent);
}

.step { padding: 0 2rem; text-align: center; }

.snum {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: var(--bg);
  transition: all .3s;
  position: relative;
  z-index: 1;
}
.step:hover .snum { background: var(--gold); color: var(--bg); }

.step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--tx); margin-bottom: .75rem; }
.step p  { font-size: .82rem; font-weight: 200; line-height: 1.85; color: var(--txm); }
