/* Final desktop pass for the field-services scroll sequence. */
@media (min-width: 761px) {
  .ss-page {
    /* Clip visual overflow without creating a vertical scroll container. */
    overflow: clip;
  }

  .ss-highlight-stack {
    padding-bottom: 0;
  }

  .ss-highlight {
    margin-bottom: 0;
  }

  /* The next front must advance over the previous one, never beneath it. */
  .ss-highlight:nth-child(1) {
    top: 28px;
    z-index: 1;
  }

  .ss-highlight:nth-child(2) {
    top: 28px;
    z-index: 2;
  }

  .ss-highlight:nth-child(3) {
    top: 28px;
    z-index: 3;
  }

  .ss-highlight.ss-reveal,
  .ss-highlight.ss-reveal.is-visible {
    opacity: 1;
    transform: none;
    transform-origin: top center;
    transition: none;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-highlight.ss-reveal,
  .ss-highlight.ss-reveal.is-visible {
    transform: none;
    will-change: auto;
  }
}
