.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.process__steps::before {
  content:''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: var(--gold);
}
.process__step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
}
.process__num {
  width: 56px; height: 56px; background: var(--cream-mid);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--gold-dark);
  margin-bottom: 16px;
}
.process__title { font-size: 14px; font-weight: 600; }
.process__desc { font-size: 12px; color: var(--grey-mid); margin-top: 6px; padding: 0 12px; }

@media (max-width: 1024px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .process__steps::before { display: none; }
}
@media (max-width: 720px) {
  .process__steps { grid-template-columns: 1fr; }
}
