:root {
    --um-blue: #2a4b9a;
    --um-blue-dark: #1d376f;
    --um-blue-deep: #10234c;
    --um-text: #202020;
    --um-muted: #535353;
    --um-border: #d9dce4;
    --um-soft: #f1f3f7;
    --um-white: #ffffff;
    --um-shadow: 0 18px 48px rgb(12 28 64 / 18%);
    --site-header-max-width: 1280px;
    --site-header-height: 96px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--um-text);
    background: var(--um-white);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

#main-content {
    min-height: 40vh;
}

#main-content:focus {
    outline: none;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 12px 16px;
    color: #ffffff;
    background: var(--um-blue-deep);
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 150ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.prototype-note {
    display: none !important;
}

:focus-visible {
    outline: 3px solid rgb(42 75 154 / 34%);
    outline-offset: 3px;
}
