/* Preserve the site palette and layout. This link occupies no flow space. */
.tz-skip-link {
    position: fixed;
    z-index: 100001;
    top: 12px;
    left: 12px;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.tz-skip-link:focus {
    width: auto;
    height: auto;
    max-width: calc(100vw - 24px);
    min-height: 44px;
    box-sizing: border-box;
    padding: 12px 18px;
    overflow: visible;
    clip-path: none;
    white-space: normal;
    color: #172026;
    background: #fff;
    border: 2px solid #172026;
    outline: 3px solid #ae2029;
    outline-offset: 2px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: underline;
}

#content.site-main {
    scroll-margin-top: var(--tz-keyboard-offset, 112px);
}

#content.site-main:focus {
    outline: 3px solid #ae2029;
    outline-offset: -3px;
}

@media (forced-colors: active) {
    .tz-skip-link:focus,
    #content.site-main:focus {
        outline-color: Highlight;
    }
}
