/* Static merchant pages use a compact three-item mobile navigation. */
@media (max-width: 767.98px) {
    html,
    body {
        overflow-x: hidden;
    }

    body:has(.recruiting-mobile-bottom-nav) {
        padding-bottom: calc(68px + env(safe-area-inset-bottom));
    }

    .recruiting-site-header .merchant-mobile-download-entry {
        display: none !important;
    }

    .recruiting-mobile-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1050;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        min-height: calc(72px + env(safe-area-inset-bottom));
        padding: 5px 10px env(safe-area-inset-bottom);
        border-top: 1px solid #dfe9e2;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 -8px 24px rgba(13, 31, 22, .12);
    }

    .recruiting-mobile-bottom-nav a {
        display: flex;
        min-width: 0;
        min-height: 62px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 8px;
        color: #718279;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.1;
        text-decoration: none;
    }

    .recruiting-mobile-bottom-nav a i {
        font-size: 19px;
        line-height: 1;
    }

    .recruiting-mobile-bottom-nav a.active {
        background: #e9f8ef;
        color: #0b7a43;
    }

    .recruiting-mobile-bottom-nav a:active {
        background: #d9f2e3;
    }
}
