/* ---- site nav ----
   One row of pills across the top of every page, above whatever the page
   itself draws. Colours match the greys the task pages use. */

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding: 10px 24px;
    border-bottom: 1px solid #eceff1;
    background: #fff;
}

.site-nav-link {
    padding: 6px 14px;
    border-radius: 999px;
    color: #495057;
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.site-nav-link:hover,
.site-nav-link:focus {
    background: #f1f3f5;
    color: #212529;
    text-decoration: none;
}

.site-nav-link.is-active,
.site-nav-link.is-active:hover {
    background: #495057;
    color: #fff;
}

.site-nav-link:focus-visible {
    outline: 2px solid #adb5bd;
    outline-offset: 1px;
}

@media (max-width: 575px) {
    .site-nav {
        padding: 8px 12px;
    }

    .site-nav-link {
        padding: 6px 10px;
        font-size: .875rem;
    }
}
