/*
 * Nova prepared effect: tabs-switcher (nova/tabs-switcher in the effects catalog).
 * Ships with every site's child theme and is conditionally enqueued via functions.php.
 */
[data-nova-tab-trigger] {
    cursor: pointer;
}

[data-nova-tab-trigger].is-nova-active {
    box-shadow: inset 0 -2px 0 var(--wp--preset--color--accent-1, currentColor);
}

[data-nova-tab-panel] {
    animation: nova-tabs-fade-in 0.2s ease;
}

@keyframes nova-tabs-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
