/* Process */

.process-section {
  background-color: var(--white);
}

.process-line {
  position: relative;
}

.process-line::before {
  position: absolute;
  top: 34px;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background-color: #dde3ea;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-number {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--white);
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 0 0 1px #dce2e9;
}

.process-step:nth-child(even) .process-number {
  background-color: var(--wine);
}

.process-step h3 {
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.process-step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
