/* A-04 keyboard focus and skip-navigation support. */
:where(a, button, input, select, textarea, summary, [role="button"], [tabindex]):focus-visible {
    outline: 3px solid #005fcc !important;
    outline-offset: 3px !important;
}

.skip-to-main-content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    padding: 0.75rem 1rem;
    color: #fff;
    background: #005fcc;
    transform: translateY(-120%);
}

.skip-to-main-content:focus {
    color: #fff;
    transform: translateY(0);
}

.keyboard-main-target:focus {
    outline: none;
}
