/*
 * Lion2 Signal — Wave 1 guest/member game-nav parity, immutable revision 1.
 *
 * Guest destinations are buttons while authenticated destinations are mostly
 * anchors. A compatibility rule leaves buttons with a 36px minimum height,
 * but the 7px image-part border reduces the nav plate's usable track to 30px.
 * Normalize the two element types to that live track without changing labels,
 * routes or authentication behavior.
 */

@media screen and (min-width: 981px) {
    body.lion2-skin.lion-skin .top_wrap .nav_wrap .navdiv > :is(a, button) {
        appearance: none !important;
        box-sizing: border-box !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: 100% !important;
        margin-block: 0 !important;
        padding-block: 0 !important;
        align-self: stretch !important;
    }
}
