/**
 * GSAP column curtain mode — cross-document View Transitions off.
 *
 * With `navigation: auto`, supporting browsers still snapshot and composite the
 * outgoing/incoming documents; that can produce a brief flash alongside the overlay.
 * `navigation: none` keeps a normal full navigation so only the curtain is visible.
 *
 * https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@view-transition
 */

@view-transition {
    navigation: none;
}

.okd-page-transition__col {
    border: 0;
    box-shadow: none !important;
    overflow: visible;
    position: relative;
}

.okd-page-transition__col::before,
.okd-page-transition__col:last-child::after {
    background: rgb(124 137 130 / 0.34);
    content: "";
    inset-block: 0;
    pointer-events: none;
    position: absolute;
    width: 0.5px;
    z-index: 2;
}

.okd-page-transition__col::before {
    left: 0;
}

.okd-page-transition__col:last-child::after {
    right: 0;
}
