.private-process {
  padding: 68px 0 62px;
}

.private-process .section-head {
  margin-bottom: 32px;
}

.private-process .steps-row {
  position: relative;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 0;
  padding-top: 30px;
  border-top: 0;
}

.private-process .steps-row::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 26px;
  border-top: 1px solid #343838;
  border-bottom: 1px solid #050606;
  background-color: #171919;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 9px, rgba(255,255,255,.72) 9px, rgba(255,255,255,.72) 10px);
  box-shadow: inset 0 5px 8px rgba(255,255,255,.07), 0 3px 7px rgba(23,25,25,.15);
}

.private-process .steps-row li {
  padding: 28px 24px 4px 0;
}

.private-process .steps-row li::before {
  top: -30px;
  width: 4px;
  height: 34px;
  border-radius: 0;
  background: var(--red);
  box-shadow: 0 0 0 2px #fff;
}

.private-process .steps-row strong {
  margin-bottom: 10px;
}

.private-process .steps-row h3 {
  margin-bottom: 7px;
}

.feature-grid article:not(:has(> svg)) {
  padding-top: clamp(28px, 4vw, 46px);
}

.private-unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.private-unit-grid article {
  overflow: hidden;
  border: 1px solid #dfe1e1;
  background: #fff;
}

.private-unit-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.private-unit-grid article > div {
  padding: 25px 26px 29px;
}

.private-unit-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.private-unit-grid h3 {
  margin: 0 0 9px;
}

.private-unit-grid p {
  margin: 0;
  color: #626869;
}

.private-unit-types__action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 880px) {
  .private-unit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .private-process {
    padding: 54px 0;
  }

  .private-process .steps-row {
    padding-top: 0;
    background: none;
  }

  .private-process .steps-row::before {
    display: none;
  }

  .private-process .steps-row li {
    padding: 5px 10px 22px 24px;
    border-left: 22px solid #171919;
  }

  .private-process .steps-row li::before {
    top: 11px;
    left: -22px;
    width: 12px;
    height: 3px;
    box-shadow: none;
  }
}

@media (max-width: 580px) {
  .private-unit-grid {
    grid-template-columns: 1fr;
  }
}
