section.process:not(.admin):first-child {
  padding-top: var(--header-height);
}
section.process.bg-nude {
  background-color: var(--nude);
}
section.process.bg-dark {
  background-color: var(--dark);
}
section.process.bg-dark * {
  color: var(--secondary);
}
section.process .excerpt p {
  font: var(--h3-font);
  font-weight: 400;
}
section.process .items-grid {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
section.process .items-grid::before {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--action-dark);
  top: 20px;
}
@container main (max-width: 64rem) {
  section.process .items-grid::before {
    content: none;
  }
}
section.process .items-grid.grid-3::before {
  left: 11px;
  right: calc((100% - 2 * var(--gutter)) / 3 - 11px);
}
section.process .items-grid.grid-4::before {
  left: 11px;
  right: calc((100% - 3 * var(--gutter)) / 4 - 11px);
}
section.process .items-grid.grid-5::before {
  left: 11px;
  right: calc((100% - 4 * var(--gutter)) / 5 - 11px);
}
section.process:not(.admin) .item-inner {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
section.process:not(.admin) .item-inner.faded {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
section.process .item {
  position: relative;
  padding-top: 64px;
}
section.process .item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--action-dark);
  z-index: 2;
}
section.process .item:first-child::before, section.process .item:last-child::before {
  top: 0;
  background: white;
  border: 10px solid var(--action-dark);
}
section.process .item h3 {
  font: var(--body-font);
}
section.process .item p {
  font: var(--body-small-font);
}
@container main (min-width: 85.4375rem) {
  section.process .item {
    padding-right: 1.25rem;
  }
}
@container main (min-width: 64.0625rem) and (max-width: 85.375rem) {
  section.process .item h3 {
    font-size: 1.25rem;
  }
  section.process .item p {
    font-size: 1rem;
  }
}
@container main (max-width: 64rem) {
  section.process .item {
    padding-top: 0;
    padding-left: 60px;
  }
  section.process .item::before {
    left: 10px;
  }
  section.process .item:first-child::before, section.process .item:last-child::before {
    left: 0;
  }
  section.process .item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 9px;
    bottom: calc(-1.875rem - 9px);
    left: 20px;
    width: 2px;
    background: var(--action-dark);
  }
}