/*
 * Nova prepared effect: clip-path-image-reveal (nova/clip-path-image-reveal in the effects
 * catalog). Ships with every site's child theme and is conditionally enqueued via functions.php —
 * only on a page whose post_content actually contains a [data-nova-clip-reveal] hook.
 */
[data-nova-clip-reveal] {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 700ms ease;
}

[data-nova-clip-reveal].is-nova-revealed {
    clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
    [data-nova-clip-reveal] {
        clip-path: none;
        transition: none;
    }
}
