/* Native crossfade only: no layout, font, image or transform changes.
   Identical blue outer backgrounds blend in place, without moving the frame. */
@view-transition {
    navigation: auto;
}

::view-transition-group(root) {
    animation: none;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 180ms;
    animation-timing-function: ease-out;
}

@media (prefers-reduced-motion: reduce) {
    @view-transition {
        navigation: none;
    }
}
