/* Shared public-site foundation. Avoid page-specific selectors here. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bv-surface);
    color: var(--bv-navy-950);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.5;
}

body > main {
    min-height: 1px;
}

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

img {
    height: auto;
}

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.16);
}

:focus-visible {
    outline: 3px solid rgba(47, 111, 237, 0.28);
    outline-offset: 2px;
}

.bv-container {
    width: min(var(--bv-container), calc(100% - 40px));
    margin-inline: auto;
}

.bv-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 620px) {
    .bv-container {
        width: min(var(--bv-container), calc(100% - 28px));
    }
}
