/* v7.62 — Exact home divider correction. main.launch is the launch root. */
:root { --one-divider-to-copy-gap: 40px; }

/* Exact rendered DOM: <main class="launch"> … <ol class="l754-hero-progress"> + <p class="l731-intro">. */
html body main.launch .l754-hero-progress + .l731-intro {
  display: block !important;
  margin-top: var(--one-divider-to-copy-gap) !important;
  padding-top: 0 !important;
}

/* Equivalent structured divider blocks followed by copy, including sections outside the home launch root. */
html body main :is(ol,ul,div,section):is([class*="-progress"],[class*="-lines"],[class*="-sequence"],[class*="-flow"],[class*="-steps"]) + p {
  display: block !important;
  margin-top: var(--one-divider-to-copy-gap) !important;
  padding-top: 0 !important;
}

@media (max-width: 760px) { :root { --one-divider-to-copy-gap: 28px; } }
