/**
 * Presentation overrides applied on top of the compiled block styles.
 *
 * Hide the decorative step-label rail that each section block renders as its
 * first child (`hidden 2xl:flex absolute left-3 top-10 ... pointer-events-none z-10`).
 * Targeting the class combination instead of editing 24 save.js files keeps the
 * saved markup byte-identical, so no block validation errors are introduced.
 *
 * The five classes below only ever occur together on that rail — other
 * `left-3` elements (search icons, image badges) use `top-1/2` or `top-3`.
 */
.absolute.left-3.top-10.pointer-events-none.z-10 {
    display: none !important;
}
