html {
    font-size: 62.5%;
}

body {
    color: var(--color-gray-dark);
    font-family: var(--font-family-main);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    max-width: 100vw;
}

:where(a[href]) {
    text-decoration: none;
}

:where(a[href]:hover) {
    text-decoration: underline;
}

:where(a[href] img) {
    border: none;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 3.2rem 0;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 3.2rem 0;
}

h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gray-dark);
}

p {
    line-height: 1.6;
    margin: 0 0 var(--margin-medium) 0;
}

hr {
    margin: 2rem 0;
}

p > iframe {
    margin-block: 2rem;
}

.screen-reader-text {
    clip: rect(0.1rem, 0.1rem, 0.1rem, 0.1rem);
    height: 0.1rem;
    overflow: hidden;
    position: absolute !important;
    width: 0.1rem;
}

a.skip-link {
    color: #fff;
}

.visually-hidden {
    position: absolute !important;
    clip: rect(0.1rem, 0.1rem, 0.1rem, 0.1rem);
    overflow: hidden;
    height: 0.1rem;
    width: 0.1rem;
    word-wrap: normal;
}

/** begin generic layout styles **/
main {
    background-color: var(--color-primary-white);
}

.site-header {
    position: sticky;
    z-index: 7;
    top: 0;
}

.admin-bar .site-header {
    top: var(--wp-admin--admin-bar--height);
}

@media screen and (max-width: 600px) {
    .admin-bar .site-header {
        top: 0;
    }
}

.site-header h2 {
    padding: unset;
}

.site-header ul {
    overflow: unset;
}

.site-header.visibility-hidden {
    position: relative;
    z-index: 5;
    visibility: hidden;
}

main .content-components:not(:first-of-type) > *:first-child,
.content-components:first-of-type .sidebar-safe > *:first-child {
    margin-top: 0;
}

main .content-components:first-of-type > .sidebar-safe {
    margin-top: 4rem;
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}

svg.blue circle {
    fill: var(--color-brand-navy) !important;
}

@supports selector(:has(+ *)) {
    /* Place this on narrow components that are left aligned */
    section.content-components:not(:has(.side-bar-nav)) .narrow-left-aligned,
    section.content-components.without-sidebar .narrow-left-aligned,
    section.content-components:has(.side-bar-nav),
    section.content-components.with-sidebar,
    .site-hero .narrow-left-aligned,
    .narrow-left-aligned:has(.single-state-heading),
    .breadcrumb-container .narrow-left-aligned,
    .resources-container .narrow-left-aligned,
    .resource-wrap .narrow-left-aligned,
    .hero-narrow-container .narrow-left-aligned {
        display: grid;
        margin-inline: auto;
        max-width: var(--content-width-wide-2);
        width: 100%;
        grid-template-columns: var(--grid-columns-narrow-component);
    }
}

.site-hero .narrow-left-aligned,
.breadcrumb-container .narrow-left-aligned,
section.content-components.with-sidebar,
.resources-container .narrow-left-aligned,
.resource-wrap .narrow-left-aligned,
.hero-narrow-container .narrow-left-aligned {
    display: grid;
    margin-inline: auto;
    max-width: var(--content-width-wide-2);
    width: 100%;
    grid-template-columns: var(--grid-columns-narrow-component);
}

.narrow-left-aligned:first-child > * {
    grid-column: 2;
}

.media-block-container.state-map {
    grid-row: 2;
}

@media screen and (max-width: 80rem) {
    section.content-components {
        grid-template-columns: 1fr;
    }
}

@supports selector(:has(+ *)) {
    main .content-components:first-of-type > .sidebar-safe:has(.form:first-child) {
        margin-top: 0;
    }
}

main .content-components.with-sidebar:first-of-type {
    margin-top: 0;
}

.single-state-heading {
    font-size: 3.6rem;
    color: var(--color-brand-navy);
    margin-block: 2rem;
    grid-column: 2;
}

.header-container {
    display: grid;
    grid-template-areas: "header";
}

.header-container > * {
    grid-area: header;
}

.header-spacer {
    width: 100%;
    min-height: 100%;
}

/**** responsive embeded videos ****/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed, .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* TODO: DELETE LATER */
.fpo {
    padding-block: 8rem;
    margin-block: 3rem;
    outline: solid red 2px;
    text-align: center;
    margin-inline: auto;
    width: 100%;
}

.italic {
    font-style: italic !important;
}

/* TODO: */
.st3 {
    fill: var(--color-brand-navy) !important;
}
