/* ── modules/step-pin/style.css ── */
/* Vertical divider line, step number label, and downward arrow for steps layout */

/* Vertical divider lines */
.sSV-vline {
  position: absolute;
  top: 427px;
  height: 227px;
  width: 3px;
  background: #0e122f;
  z-index: 3;
  transform: translateX(-1.5px);
}

/* Step number labels */
.sSV-steg {
  position: absolute;
  top: 366px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font);
  font-size: 21px;
  font-weight: 500;
  color: #808080;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
  font-feature-settings: 'zero' 1, 'ss08' 1;
}

/* Arrows */
.sSV-arrow {
  position: absolute;
  top: 410px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #0e122f;
  z-index: 4;
}

/* PSR layout override — shorter vline */
#slidePSR .sSV-vline { height: 119px; }
#slideSV4 .sSV-vline { height: 119px; }
