:root {
    --color-blue: #205999;
    --color-sky: #3db1ff;
    --color-night: #143861;
    --color-cloud: #a6d4fc;
    --color-sea: #fde0ee;
    --color-sun: #ffda4a;
    --color-storm: #4F5A5E;
}

.grid {
    --grid-columns: var(--grid-cols);
    display: grid;
    gap: var(--grid-gap, 1rem);
    grid-template-columns: repeat(var(--grid-columns, 1), 1fr);
    align-items: flex-start;
}

.grid.grid--center {
    align-items: center;
}

.grid--clear-margin > * > * {
    margin-top: 0px;
}

.grid > * {
    grid-column: span var(--grid-span, 1);
}

.grid picture, .grid img {
    max-width: 100%;
    height: auto;
}

.grid > .grid__row, .grid > hr {
    grid-column: 1 / -1;
}

.grid.grid--images :is(figure, img, picture) {
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    max-width: var(--grid-image-size, 35vw);
}

.grid:has(> .card) {
    margin-bottom: 2rem;
}

.grid--clear-margin > div > * {
    margin-top: 0px;
}

.grid .row-label {
    grid-column: 1 / -1;
    background: var(--color-blue);
    color: var(--color-white);
    font-weight: bold;
    padding-inline: 1rem; justify-self: flex-start;
}

.grid[data-child-vspace="between"] > div {
    display: grid;
    align-content: space-between;
    height: 100%;
}

.grid .image-fill {
    height: 100%;
}

.grid .image-fill * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid .image-fill[data-focus="left"] * {
    object-position: left center;
}

.grid .image-fill[data-focus="right"] * {
    object-position: right center;
}

@media (max-width: 1000px) {
    .grid:not(:is(.grid--small, .grid--mobile)) {
        grid-template-columns: 1fr;
    }

    .grid:not(:is(.grid--small, .grid--mobile)) > * {
        grid-column: span 1;
    }

    .grid--small {
        --grid-columns: var(--grid-cols-small, calc(var(--grid-cols) / 2)) !important;
        --grid-gap: var(--grid-gap-small, calc(var(--grid-gap) / 2)) !important;
    }
}

@media (max-width: 600px) {
    .grid--small {
        --grid-columns: var(--grid-cols-tiny, var(--grid-cols-small, calc(var(--grid-cols) / 2))) !important;
    }
}

.grid .subgrid {
    --_subgrid-span: var(--subgrid-span, 1 / -1);
    grid-column: var(--_subgrid-span);
    display: grid;
    grid-template-columns: subgrid;
    margin: 0px;
}

.subgrid > * {
    grid-column: span var(--grid-span, 1);
}

.grid .subgrid > :has(> .subgrid) {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: var(--_subgrid-span, 1/-1);
}

.flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-gap, 1rem);
    place-content: stretch center;
}

.flex-grid > :is(*, .card.card) {
    width: calc(100% / var(--grid-cols, auto) - var(--grid-gap, 1rem));
    height: auto;
}

@media (max-width: 1000px) {
    .flex-grid > * {
        width: 100%;
    }
}

.flex-auto-column {
    display: flex;
    flex-wrap: wrap;
}

.grid-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
    scale: 1;
    transition: scale 300ms;
    position: relative;
}

.grid-image--square :where(:hover, :focus-visible) img {
    scale: 1.15;
    z-index: 1;
}

.grid-image--square img {
    aspect-ratio: 1 / 1;
}

.grid-image--4x3 img {
    aspect-ratio: 4 / 3;
}

.grid-image--16x9 img {
    aspect-ratio: 16 / 9;
}

.grid-image :is(button, .button, a, li) {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    color: inherit;
    padding: 0px;
    margin: 0px;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    text-decoration: none;
    display: block;
}

.grid-image :is(button, .button, a, li) span {
    display: inline-block;
    line-height: 1;
    margin-block: 1rem; }

.grid-image :is(button, .button, a):hover {
    background: var(--color-cloud);
    outline: solid 5px var(--color-cloud);
}

.grid-image :is(img, figure, figure .field__item) {
    padding: 0px;
    margin: 0px;
}

.flexbox {
    display: flex;
    gap: var(--grid-gap, 2rem);
    align-items: center;
}

.flexbox.align-top {
    align-items: flex-start;
}

.flexbox > * {
    flex: var(--flex, var(--grid-span, 1));
}

.flexbox.flexbox--reverse {
    flex-direction: row-reverse;
}

@media (max-width: 1000px) {
    .flexbox.flexbox {
        flex-direction: column;
        gap: 0px;
    }
}

@media (min-width: 768px) {
    .flex-separate {
        display: flex;
        justify-content: space-between;
        padding-inline: 1rem; gap: 1rem;
    }

    .flex-separate--line {
        border-bottom: 1px solid rgb(221, 221, 221);
        margin-bottom: 5px;
    }

    .flex-separate > :last-child {
        text-align: right;
    }
}

.alternating-columns {
    position: relative;
    gap: 6rem;
    padding-block: 5rem; margin-inline: min(5rem, 3%); align-items: flex-start;
}

.alternating-columns > * {
    &:nth-child(1) {
        flex: var(--col-1-size, 1);
        order: 2;
    }

    &:nth-child(2) {
        flex: var(--col-2-size, 1);
        order: 1;
    }
}

.alternating-columns:nth-of-type(2n)::before {
    content: "";
    display: block;
    width: 200vw;
    height: 100%;
    position: absolute;
    margin-left: -50vw;
    background: var(--color-cloud);
    z-index: -1;
    inset: 0px;
}

@media (width > 1000px) {
    .alternating-columns: nth-of-type(2n) > :nth-child(1), .alternating-columns:nth-of-type(2n+1) > :nth-child(2) {
        order: 2;
    }
}

:is(.grid, .flex, .flex-grid, .flexbox) > * {
    --_order: var(--order, unset);
    order: var(--_order);
}

@media (max-width: 1000px) {
    :is(.grid, .flex, .flex-grid, .flexbox) > * {
        --_order: var(--mobile-order, var(--order, unset));
    }
}

.image-framed {
    display: block;
    transition: 300ms;
    position: relative;
    top: 10px;
    left: -10px;
}

.image-framed::before {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    background: transparent;
    position: absolute;
    translate: 30px -30px;
    width: 100%;
    border: solid 3px var(--color-sun);
    z-index: 1;
    top: 0px;
    left: 0px;
    transition: 300ms;
}

.image-framed:hover {
    top: 0px;
    left: 0px;
}

.image-framed:hover::before {
    top: 20px;
    left: -20px;
}

.image-framed img {
    width: 100%;
}

.offset-y {
    --_offset: var(--offset, 0);
    margin-top: var(--_offset);
}

.offset-x {
    --_offset: var(--offset, 0);
    margin-left: var(--_offset);
}

@media (max-width: 1000px) {
    .offset-y {
        --_offset: var(--mobile-offset, 0);
    }

    .offset-x {
        --_offset: var(--mobile-offset, 0);
    }
}

.list-reset, .list-reset > li {
    list-style: none;
    padding-inline: 0px; margin-inline: 0px; }

ul.list-columns {
    column-count: var(--list-cols, 2);
}

.list-filter__item-content ul.list-columns {
    column-count: 1;
    display: grid;
    grid-template-columns: repeat(var(--list-cols, 2), 1fr);
}

:is(ul, ol):not(.list-reset) > li > :first-child:is(h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6) {
    margin-block: 1rem; }

ol.list-headings li {
    padding-left: 0rem;
    margin-left: 2rem;
}

ol.list-headings li::marker {
    font-weight: bold;
    color: var(--color-blue);
}

ol.list-headings li:has(> :is(.h2, h2))::marker {
    font-size: 3.5rem;
    @media (max-width: 767px) {
        font-size: 3.2rem;
    }
}

ol.list-headings li:has(> :is(.h3, h3))::marker {
    font-size: 2.8rem;
}

ol.list-headings li:has(> :is(.h4, h4))::marker {
    font-size: 2.3rem;
}

ol.list-headings li:has(> :is(.h5, h5))::marker {
    font-size: 1.9rem;
}

ol.list-headings li:has(> :is(.h6, h6))::marker {
    font-size: 1.7rem;
}

.list-checklist {
    margin-left: 2rem;
}

.list-checklist > li {
    padding-left: 0.5rem;
}

.list-checklist > li + li {
    margin-top: 1.5rem;
}

.list-checklist > li::marker {
    font-size: 1.6em;
    line-height: 1em;
    content: "☐" !important;
}

dl.definition-table {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem clamp(0px, 2vw, 5rem);
    margin-inline-start: clamp(0px, 2vw, 5rem); margin-block-end: 2rem; @media (width < 900px) {
        grid-template-columns: 1fr;
    }
}

dl.definition-table dd {
    grid-column: 2;
    @media (width < 900px) {
        grid-column: 1;
    }
}

dl.definition-table :is(dd, dt) {
    margin-block: 0px; @media (width < 900px) {
        margin-block: 0.5rem;
    }
}

dl.definition-table :is(dd, dt) > * {
}

dl.definition-table dd + dd {
    margin-block: -1.5rem 0px; }

dl.definition-table dt {
    grid-column: 1;
    color: var(--bs-body-color);
    font-weight: 500;
}

table.styled {
    table-layout: auto;
    margin-block: 1rem; width: 100%;
    --_padding: 0.2em 0.5em;
    --_border: solid 1px hsl(0deg 0% 20% / 20%);
    --_head-background: var(--color-blue);
    --_head-font-size: 1.8rem;
    --_head-color: var(--color-white);
    --_alt-row-bg: #e4ebf2;
}

table.styled.subtle {
    --_padding: 0.1rem 0.5em;
    --_head-background: var(--color-cloud);
    --_head-font-size: 1.6rem;
    --_head-color: var(--color-night);
}

table.styled.simple {
    --_padding: 0.1rem 0.5em;
    --_head-background: none;
    --_head-font-size: 1.6rem;
    --_head-color: var(--color-night);
    --_border: solid 1px #ccc;
    --_alt-row-bg: #fff;
}

table.styled caption {
    font-weight: bold;
    color: var(--color-blue);
    padding-inline: 0.5rem; }

table.styled :is(td, th) {
    padding: var(--_padding);
    border: var(--_border);
}

table.styled :is(td, th) > * {
    padding-block: 0px; margin-block: 0px; }

table.styled :is(td, th) > p ~ p {
    margin-top: 1rem;
}

table.styled tr:nth-child(2n+1) td {
    background: var(--_alt-row-bg);
}

table.styled tr:nth-child(2n) {
    background: var(--color-white);
}

table.styled tr.head :is(td, th), table.styled tr th {
    background: var(--_head-background);
    color: var(--_head-color);
    border: var(--_border);
    font-size: var(--_head-font-size);
    font-weight: bold;
}

table.styled.subtle :is(td, th) {
    padding: var(--_padding);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
}

@media (min-width: 1000.1px) {
    table.styled.hover-row-highlight tr:has(:hover) td {
        background: var(--color-white);
    }

    table.styled.hover-row-highlight tr:has(:hover) {
        outline: solid 3px var(--color-blue);
    }
}

@media (max-width: 1000px) {
    table.styled:not(.mobile-table), table.styled:not(.mobile-table) :is(td, tr, tbody) {
        display: block;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: none;
    }

    table.styled:not(.mobile-table) td[data-heading] {
        padding: 0.6rem 0.75rem;
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
        text-align: left !important;
    }

    table.styled:not(.mobile-table) .head, table.styled:not(.mobile-table) thead {
        display: none;
    }

    table.styled:not(.mobile-table) td[data-heading]::before {
        content: attr(data-heading);
        font-weight: bold;
    }

    table.styled:not(.mobile-table) tr td {
        background: white;
        border: 1px solid rgb(221, 221, 221);
        margin-top: -1px;
    }

    table.styled:not(.mobile-table) tr td:nth-child(2n) {
        background: rgb(249, 249, 249);
    }

    table.styled:not(.mobile-table) tr td:nth-child(2n+1) {
        background: var(--color-white);
    }

    table.styled:not(.mobile-table) tr td:first-child {
        background: var(--color-white);
        color: var(--color-blue);
        font-size: 1.8rem;
        font-weight: bold;
        grid-auto-flow: column;
        grid-template-columns: max-content;
    }

    table.styled:not(.mobile-table) tr {
        border: 1px solid rgb(228, 235, 242);
        margin-bottom: 2rem;
    }
}

:is(.link-list, .button-list) {
    background: none;
}

:is(.link-list, .button-list).text-center :is(a, button) {
    text-align: center;
}

:is(.link-list, .button-list) li {
    padding-block: 0.2em; &:has(a, button) {
        padding: 0px;
    }

    & :is(a, button) {
        display: block;
        padding: 0.2em 0.5em;
        text-decoration: none;
        background: rgb(235, 239, 244);
        width: 100%;
        text-align: left;
        border: 0px;
        color: inherit;
        font-weight: normal;
        position: relative;
        &:is([target="_blank"], [href$=".pdf"], [href$=".zip"]) {
            padding-right: 2em;
            &::after {
                place-content: center;
                padding-inline: 1rem; display: inline-block;
                position: absolute;
                top: 0px;
                right: 0px;
                font-style: ;
                font-variant-ligatures: ;
                font-variant-caps: ;
                font-variant-numeric: ;
                font-variant-east-asian: ;
                font-variant-alternates: ;
                font-variant-position: ;
                font-variant-emoji: ;
                font-weight: ;
                font-stretch: ;
                line-height: ;
                font-family: ;
                font-optical-sizing: ;
                font-size-adjust: ;
                font-kerning: ;
                font-feature-settings: ;
                font-variation-settings: ;
                font-language-override: ;
                font-size: 75%;
                text-align: center;
                width: 3rem !important;
                height: 100% !important;
            }
        }

        &[target="_blank"]: :after {
            content: " ";
        }

        &[href$=".pdf"]: :after {
            font-size: 90%;
            content: " ";
        }

        & [href$=".zip"]: :after {
            content: " ";
        }
    }

    & :is(a, button): is(:hover, :focus-visible) {
        background: rgb(241, 246, 251);
    }
}

.list-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.list-cards li {
    margin: 0px;
    & > :first-child {
        margin-top: 0px;
    }

    & > :last-child {
        margin-bottom: 0px;
    }
}

.list-cards li:not(:has(a)), .list-cards li a {
    display: block;
    background: rgb(238, 238, 238);
    padding: 1rem;
    margin: 0px;
    text-decoration: none;
    height: 100%;
    align-content: center;
    &:is(a) {
        background: rgb(238, 238, 238);
        color: var(--color-blue);
        font-weight: bold;
        &:is(:hover, :focus-visible) {
            background: rgb(204, 204, 204);
        }
    }
}

.card.card {
    background: rgb(246, 246, 246);
    border: 1px solid rgb(238, 238, 238);
    height: 100%;
    padding: 0px 2rem 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
}

.card.card:has(img) {
    padding: 1rem;
    & :first-of-type {
        margin-top: 1rem;
    }

    & :last-of-type {
        margin-block-end: 0px; }

    & :not(:is(img, figure, figure .field__item, a)) {
        margin: 1rem;
    }

    & :is(img, figure, figure .field__item) {
        margin: 0px;
    }
}

.card > div:nth-child(1) {
    overflow: hidden;
    margin-bottom: 0.5em;
}

.card:not(.card--icon) img {
    display: block;
    align-self: center;
    object-fit: cover;
    object-position: center center;
    border-radius: 0.4rem;
}

.card.card--icon figure, .card.card--icon .fa-solid {
    width: 100%;
    aspect-ratio: 2 / 1;
    place-content: center;
    text-align: center;
    margin-block: 1rem; font-size: 8rem;
    color: var(--color-blue);
}

.card.card--icon figure + :is(h2, h3, h4, h5, h6) .card.card--icon .fa-solid + :is(h2, h3, h4, h5, h6) {
    margin-top: 0px;
}

.card > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    padding: 0px 1rem;
    aspect-ratio: auto;
}

.card > div:nth-child(2) :last-child:has(.button) {
    margin-top: auto;
}

.card :last-child:has(.button) {
    margin-block: auto 0px; flex: 1 1 0%;
    align-content: flex-end;
}

.card :last-child:has(.button) > .button {
    display: block;
    margin: 0px;
    padding: 0.25rem 1rem;
}

.card-2 {
    --_bs-blur: 10px;
    --_bs-position-y: 10px;
    --_bs-inset: 0px;
    display: grid;
    position: relative;
    box-shadow: 0px var(--_bs-position-y) var(--_bs-blur) var(--_bs-inset) rgb(0 0 0 / 0.2);
    scale: 1;
    transition: scale 300ms, box-shadow 300ms;
    background: var(--color-white);
    border: 1px solid rgb(238, 238, 238);
}

.card-2:hover {
    --_bs-blur: 20px;
    --_bs-position-y: 15px;
    --_bs-inset: -10px;
    scale: 1.075;
    z-index: 1;
}

.card-2__date {
    --_border: 1rem;
    margin: calc(-1 * var(--_border));
    position: absolute;
    z-index: 1;
    inset: calc(-1 * var(--_border)) auto auto calc(-1 * var(--_border));
    display: flex;
    flex-wrap: wrap;
    gap: var(--_border);
    list-style: none;
    filter: drop-shadow(rgba(0, 0, 0, 0.4) 2px 4px 6px);
}

.card-2__date li {
    margin-inline: calc(-1 * var(--_border)); padding: calc(0.5 * var(--_border)) calc(2.5 * var(--_border));
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 900;
    background: var(--color-blue);
    color: white;
    backface-visibility: hidden;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.card-2__date li:first-child {
    font-size: 2em;
}

.card-2__date li:nth-child(n+3) {
    background: var(--color-sun);
    color: var(--color-blue);
}

.card-2__date sup {
    font-size: 0.6em;
}

.card-2__figure {
    aspect-ratio: 5 / 3;
    overflow: clip;
    margin: 0px;
}

.card-2__figure * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-2__heading {
    text-align: center;
    margin-top: 0px;
}

.card-2__content {
    padding: 0px 1rem 1rem;
}

.feature-card {
    display: grid;
    grid-template-columns: auto;
    grid-auto-flow: dense;
    background: rgb(235, 239, 245);
    padding: 1rem;
    box-shadow: rgb(102, 102, 102) 0px 5px 10px -5px;
    border: solid 1px var(--color-blue);
    margin-block: 4rem; }

.feature-card > :is(h2, h3, h4, h5, h6) {
    margin-top: 0px;
}

.feature-card img {
    grid-row: 1;
    display: block;
    padding: 2rem;
}

.feature-card > :not(img) {
    grid-row: auto;
}

@media (min-width: 1000px) {
    .feature-card {
        grid-template-columns: minmax(1rem, auto) auto;
    }

    .feature-card p:has(> img), .feature-card .media--type-image {
        grid-area: span 20 / 1;
        display: block;
        padding: 2rem;
        width: 100%;
    }

    .feature-card > :not(img) {
        grid-column: 2;
    }
}

.hatch-marks > * {
    padding: 0 calc(0.25rem * var(--_border));
    height: calc(0.2rem * var(--_border));
    margin-inline: calc(-0.05rem * var(--_border)); background: currentcolor;
    font-size: 0px;
    font-weight: bold;
    backface-visibility: hidden;
    clip-path: polygon(calc(0.2rem * var(--_border)) 0%, 100% 0%, calc(100% - calc(0.2rem * var(--_border))) 100%, 0% 100%);
}

.hatch-marks {
    --_border: 10;
    display: grid;
    grid-auto-flow: column;
    gap: 0px;
    justify-content: center;
    margin-block: 1rem; color: var(--color-blue);
}

.callout {
    background: rgb(235, 239, 244);
    padding: 3rem;
    margin: 2rem;
}

.callout > :first-child {
    margin-top: 0px;
}

.callout > :last-child {
    margin-bottom: 0px;
}

.callout > :last-child:has(.button) {
    margin-block: 0px -1rem; }

.bleed-to-edge {
    position: relative;
    left: 50%;
    transform: translateX(-50vw);
    width: 100vw;
}

.field__item.field__item:has(.bleed-to-edge) {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.parallax {
    position: relative;
    height: clamp(300px, 55vh, 850px);
    overflow: clip;
    display: grid;
    align-content: center;
}

.parallax__image {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translateY(calc(var(--_scroll-percent) - calc(var(--_height) * var(--_scroll-value) / 100)));
}

.parallax .container {
    position: relative;
    z-index: 1;
}

.parallax .box-blue {
    width: min-content;
    padding: 2em;
    background: var(--color-blue);
}

.parallax .box-blue > :first-child {
    margin-top: 0px;
}

.parallax .box-blue > * {
    color: white;
    font-weight: bold;
}

.parallax .box-blue h2 {
    font-family: Montserrat;
    font-size: calc(4vh + 2vmin + 4vw);
    line-height: 0.8;
    text-transform: uppercase;
    text-align: center;
    font-weight: 900;
    color: var(--color-sun);
}

.fade-in-text {
    --_background: var(--background, var(--color-blue));
    --_color: var(--color, var(--color-white));
    --_padding: var(--padding, 10vh);
    padding-block: clamp(min(8rem, var(--_padding)), var(--_padding), 20rem); text-align: center;
    color: var(--_color);
    line-height: 1.3;
}

.fade-in-text .container {
    width: min(800px, 100%);
}

.fade-in-text span {
    color: color-mix(in srgb, var(--_color) 10%, transparent);
    background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-image: linear-gradient(var(--_color), var(--_color));
    animation-duration: auto;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: fade-in-text;
    animation-timeline: view(y);
    animation-range-start: cover calc(20vh + var(--fade-start, 0));
    animation-range-end: cover max(30vh, calc(30vh + var(--fade-start, 0)));
}

@keyframes fade-in-text {
    100% {
        background-size: 100% 100%;
    }
}

.fade-in-text:not(.fade-in-text--normal-text) :where(h2, .h2) {
    margin-block: 0px; font-size: 4.2rem;
}

.fade-in-text:not(.fade-in-text--normal-text) p {
    font-size: 2.4rem;
}

.fade-in-text:not(.fade-in-text--normal-text) {
    font-family: Montserrat;
}

@media (prefers-reduced-motion) {
    .fade-in-text span {
        color: var(--_color);
    }
}

.checkbox-chip {
    background: var(--color-blue);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem;
    border-radius: 50vw;
    font-weight: bold;
    border: solid 1px var(--color-blue);
    margin: 0.5rem;
    corner-shape: squircle;
}

.checkbox-chip input {
    width: 2rem;
}

.checkbox-chip:has(input:checked) {
    background: var(--color-white);
    color: var(--color-blue);
}

.round-input {
    display: block;
    border-radius: 4rem;
    width: min(100%, 70ch);
    padding: 1.5rem 2rem;
    line-height: 1;
    border-width: 1px;
    margin-inline: auto; margin-block-end: 1rem; corner-shape: squircle;
}

.video-wrapper {
    aspect-ratio: 16 / 9;
    width: min(96%, 70rem);
    margin: 4rem auto;
}

.video-wrapper--4-3 {
    aspect-ratio: 4 / 3;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.hover-gallery > * {
    --_hg-scale-unfocus: var(--hover-scale-unfocus, 0.8);
    --_hg-scale-standard: var(--hover-scale-standard, 1);
    --_hg-scale-focus: var(--hover-scale-focus, 1.4);
    transition: scale 300ms, z-index 100ms, filter 300ms;
    z-index: 1;
    position: relative;
    margin: 0px;
}

@media (max-width: 1000px) {
    .hover-gallery > * {
        --_hg-scale-unfocus: 0.9;
        --_hg-scale-standard: var(--_hg-scale-unfocus);
        --_hg-scale-focus: 1.1;
    }
}

.hover-gallery :is(figure, figure *, img, #specify) {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: auto;
    margin: 0px;
}

.hover-gallery:is(:hover, :focus-within) > * {
    scale: var(--_hg-scale-unfocus);
    filter: saturate(0.15);
}

.hover-gallery:is(:hover, :focus-within) > :is(:hover, :focus-visible) {
    scale: var(--_hg-scale-focus);
    z-index: 3;
    filter: saturate(1);
}

.hover-gallery:is(:hover, :focus-within) > :is(:hover, :focus-visible) + *, .hover-gallery:is(:hover, :focus-within) > :has(+ :is(:hover, :focus-visible)) {
    scale: var(--_hg-scale-standard);
    filter: saturate(0.45);
}

.hover-gallery--square * {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
}

.hover-gallery--cards {
    background: rgb(241, 246, 251);
    padding: 1rem;
}

.hover-gallery--cards > * {
    display: block;
    background: var(--color-white);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: rgb(102, 102, 102) 0px 5px 10px -3px;
    text-align: center;
}

.hover-gallery--cards a {
    text-align: center;
    text-decoration: none;
}

.hover-gallery--cards a:is(:focus-visible, :hover) {
    text-decoration: underline;
}

.tab-list {
    display: flex;
    width: 100%;
    & [role="tab"] {
        padding: 0.25em 0.5em;
        background: rgb(235, 239, 244);
        color: var(--color-blue);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: none;
        line-height: 1.2;
    }

    & [aria-expanded="true"] {
        background: var(--color-blue);
        color: var(--color-white);
    }

    & + :is(*, .priority) {
        margin-top: 0px;
        padding-top: 0px;
    }

    & span {
        display: block;
        font-size: 0.8em;
    }
}

.full-span {
    --_full-span-content-width: 1200px;
    width: 100vw;
    position: relative;
    left: -50vw;
    margin-left: 50%;
    margin-bottom: 8rem;
    display: grid;
    grid-template-columns: 1fr min(var(--_full-span-content-width), 100%) 1fr;
    padding-block: 3rem; background: var(--color-blue);
}

.full-span > * {
    grid-column: 2;
    padding-inline: max(4rem, 5vw); color: var(--color-white) !important;
}

.full-span :is(p, h1, h2, h3, h4, h5, h6) {
    color: var(--color-white);
}

.full-span > :first-child {
    margin-top: 0px;
}

.full-span.full-span--dark {
    background: var(--color-night);
}

.full-span--wide {
    --_full-span-content-width: 1600px;
}

.body-content:has(.field--name-body > div > .full-span:first-child) .block-system-breadcrumb-block {
    position: absolute;
    z-index: 1;
    translate: 0px -100%;
}

.body-content:has(.field--name-body > div > .full-span:first-child) .breadcrumb {
    padding-block: 1rem; }

.body-content:has(.field--name-body > div > .full-span:first-child) .breadcrumb *, .body-content:has(.field--name-body > div > .full-span:first-child) .breadcrumb .breadcrumb-item::before {
    color: var(--color-white);
}

body:has(.full-span:first-child) .block-system-breadcrumb-block {
    display: none;
}

body:has(.full-span:first-child) .region.region-hero, body:has(.full-span:first-child) .field__item {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.image-fill-contain:is(img), .image-fill-contain img {
    object-fit: contain;
}

.image-profile:is(img), .image-profile img {
    aspect-ratio: 5 / 7;
    width: 100%;
    max-width: 150px;
    object-fit: cover;
}

.image-square:is(img), .image-square img, .image-1x1:is(img), .image-1x1 img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
}

.image-5x7:is(img), .image-5x7 img {
    aspect-ratio: 5 / 7;
    width: 100%;
    object-fit: cover;
}

.image-16x9:is(img), .image-16x9 img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
}

.image-4x3:is(img), .image-4x3 img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
}

.image-fit-container:is(img), .image-fit-container.image-fit-container img {
    object-fit: contain;
}

dialog[open] {
    max-width: min(90ch, 95%);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 0px;
    animation: 600ms ease 0s 1 normal forwards running dialog-show;
    background: transparent;
    overflow: visible;
    place-self: center;
}

dialog[open].wide {
    width: min(160ch, 95%);
    max-width: none;
}

::backdrop {
    background: rgba(5, 21, 37, 0.667);
    backdrop-filter: blur(0.25rem);
    opacity: 0;
    animation: 300ms ease 0s 1 normal forwards running fade-in;
}

dialog[open] .close-modal {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    aspect-ratio: 1 / 1;
    padding: 1rem;
    line-height: 0;
    background: rgb(156, 206, 252);
    border-radius: 100%;
    translate: 50% -50%;
    font-weight: normal;
    font-size: 0px;
}

dialog[open] .close-modal::before {
    content: "✕";
    font-size: 3rem;
    vertical-align: middle;
    line-height: 0;
    color: var(--color-blue);
}

dialog[open] .close-modal:is(:hover, :focus-visible, :active, :focus) {
    background: var(--color-white);
    outline: none;
    border-width: 0.5rem;
}

dialog[open] > .dialog__content {
    position: relative;
    padding: 2rem;
    background: var(--color-white);
    max-height: 90vh;
    margin-inline: auto; overflow-y: auto;
}

.dialog__header {
    margin: -2rem -2rem 2rem;
    background: var(--color-blue);
    padding: 1rem 2rem;
    color: var(--color-white);
    font-size: 2.3rem;
}

.dialog__subheader {
    margin: -2.75rem -2rem 2rem;
    background: var(--color-blue);
    padding: 1rem 2rem;
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
}

.dialog--image-container img {
    width: min(100%, 90vw);
    height: min(100%, 90vw);
    object-fit: scale-down;
}

.dialog--iframe-container[open] {
    width: min(90%, 80rem);
    height: 90vh;
    background: rgb(255, 255, 255);
    & iframe {
        display: block;
        width: 100%;
        height: calc(100% - 5rem);
    }

    & .dialog__header {
        margin: 0px;
    }
}

.dialog--video-wrapper[open] {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    background: transparent;
    &:has(h2) {
        aspect-ratio: 16 / 10;
    }
}

body:has(dialog[open]) {
    overflow: hidden;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes dialog-show {
    0% {
        translate: 0px -20%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        translate: 0px;
    }
}

.fixed-bottom-left {
    position: fixed;
    left: 0px;
    bottom: 0px;
    margin: 1rem;
}

[popover] {
    margin-inline: auto; max-width: 60ch;
    padding: 2rem;
}

[data-popover-image] img {
    z-index: 1;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
    scale: 1;
    transition: scale 300ms;
    cursor: pointer;
}

[data-popover-image] :has(> img) {
    overflow: hidden;
}

[data-popover-image] :where(:hover, :focus-visible) img {
    scale: 1.15;
}

.grid-image button:has(img) {
    overflow: hidden;
}

.grid-image button img:is(:hover, :focus-visible) {
    scale: 1.1;
}

.h0 {
    font-family: roboto, Arial, sans-serif;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-size: 6rem;
    color: var(--color-blue);
}

.hover--underline:is(:hover, :focus-visible) {
    text-decoration: underline !important;
}

.list-filter__title {
    margin: 3rem auto -2.5rem;
    max-width: 70rem;
    padding-inline-start: 1rem; }

.list-filter__form {
    display: grid;
    grid-template-columns: 1fr minmax(13rem, auto);
    gap: 0px;
    align-items: flex-start;
    margin: 3rem auto;
    max-width: 70ch;
}

.list-filter__form--subtle {
    grid-template-columns: 1fr 8ch;
}

.list-filter__form :where(input, button) {
    width: 100%;
    height: 100%;
    padding-inline: 2rem 0.5em; line-height: 1;
    border-width: 1px;
}

.list-filter__form input {
    border-radius: 4rem 0px 0px 4rem;
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
    corner-shape: squircle;
}

.list-filter__form input:is(:focus-visible) {
    outline: solid 3px var(--color-sky);
}

.list-filter__form button.button {
    border-radius: 0px 4rem 4rem 0px;
    corner-shape: squircle;
}

.list-filter__content > ul > li {
    display: block;
    padding: 0px 0.5em;
    margin-block: 0.2em; }

.list-filter__content li > :where(button, .button) {
    text-align: left;
}

.list-filter__no-results.list-filter__no-results {
    display: block !important;
}

.list-filter__no-results.list-filter__no-results:has(~ :not([hidden="true"])) {
    display: none !important;
}

.list-filter__content--grid .grid {
    --grid-cols-small: 3;
    --grid-cols-tiny: 2;
    --grid-cols: 4;
    --grid-gap: 3rem;
}

.list-filter__content--grid :is(button, .button, a, li) {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    color: inherit;
    padding: 0px;
    margin: 0px;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    text-decoration: none;
    display: block;
}

.list-filter__content--grid :is(button, .button, a, li) span {
    display: inline-block;
    line-height: 1;
    margin-block: 1rem; }

.list-filter__content--grid :is(button, .button, a):hover {
    background: var(--color-cloud);
    outline: solid 5px var(--color-cloud);
}

.list-filter__content--grid :is(img, figure, figure .field__item) {
    padding: 0px;
    margin: 0px;
}

.list-filter__content [data-hidden] {
    display: none;
}

[data-list-toggle] > :is(ul, ul > li) {
    list-style: none;
    padding-left: 0px;
}

.list-toggle__item {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    color: var(--color-night);
    background: var(--color-cloud);
    display: flex;
    margin-block: 0px 1.5rem; border-radius: 4px;
    cursor: pointer;
    padding: 0px;
    position: relative;
    z-index: 1;
}

.list-toggle__item-content {
    padding-inline: 2rem; margin: 0px 3px 1.5rem;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 4px -1px var(--color-night);
    border-radius: 0px 0px 10px 10px;
    corner-shape: squircle;
    margin-block-start: -1.5rem; overflow: hidden;
    transition: 200ms allow-discrete;
    & .list-toggle__item {
        background: rgb(221, 221, 221);
        margin-bottom: 0px;
        font-size: 1.6rem;
    }

    .list-toggle__item:has([aria-expanded="true"]) + & {
        display: block;
        padding-block: 1.5rem; height: calc-size(auto, size);
        @starting-style {
            display: block;
            height: 0px;
            padding-block: 0px; }
    }

    .list-toggle__item:has([aria-expanded="false"]) + & {
        display: none;
        height: 0px;
        padding-block: 0px; }
}

.list-toggle__button {
    width: 100%;
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    color: inherit;
    font-size: inherit;
    text-align: inherit;
    font-weight: bold;
    padding: 0.75em;
    display: flex;
    text-decoration: none;
    margin-bottom: 0px !important;
    a&: :after {
        content: "";
    }
}

.list-toggle__button::after {
    content: "";
    font-family: FontAwesome;
    font-size: 1.8rem;
    color: var(--color-blue);
    background: 0px 0px;
    height: auto;
    flex-shrink: 0;
    margin-left: auto;
    text-align: right;
    transition: transform 0.2s ease-in-out;
    rotate: 90deg;
    transform: scaleX(1);
    align-content: center;
}

.list-toggle__item:has([aria-expanded="true"]) {
    & .list-toggle__button::after {
        transform: scaleX(-1);
    }
}

.list-toggle__item-content ul {
    list-style: disc;
}

.list-toggle__item-content ul ul {
    list-style: circle;
}

.list-toggle__item-content ul ul ul {
    list-style: square;
}

[data-list-toggle].subtle {
    & .list-toggle__item {
        background: none;
        margin-block-end: 0px; font-weight: normal;
    }

    & li: has(.list-toggle__item) {
        margin-block: 0px;
        padding-inline: 0px; }

    & li: has(.list-toggle__item) + li:has(.list-toggle__item) {
        border-block-start: 1px solid rgb(204, 204, 204);
    }

    & .list-toggle__item-content:not(.link-list) {
        background: rgb(246, 246, 246);
        box-shadow: none;
        border-radius: 0px;
        margin-block: 0px; }
}

.form-styled :is(input, select) {
    width: 90%;
    background-image: none;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(167, 167, 167);
    border-radius: 0px;
    position: relative;
}

.form-styled select {
    appearance: auto;
    padding: 0.4em;
}

.form-styled input:is([type="text"], [type="email"]) {
    padding-block: 0.5rem; border: 1px solid rgb(167, 167, 167);
    background-color: rgb(255, 255, 255);
}

.form-styled .form-styled__inline {
    display: inline-block;
    width: auto;
    padding: 0.1em;
    text-align: center;
}

.form-styled input[type="button"] {
    width: auto;
}

.additional-side-nav {
    text-align: center;
}

.additional-side-nav, .additional-side-nav li {
    list-style: none;
    padding-inline: 0px; margin-inline: 0px; }

.additional-side-nav li {
    margin-block: 1px 0px !important; }

.additional-side-nav a {
    --_color: var(--color-cloud);
    padding-block: 0.2em; background: var(--_color);
    color: var(--color-blue);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    display: block;
    text-decoration: none;
    font-weight: bold;
}

.additional-side-nav a:is(:hover, :focus-visible) {
    background: color-mix(in srgb, var(--_color), #fff 60%);
}

.manual-contact {
    list-style: none;
    padding-inline: 1rem; margin-inline: 0px; & li {
        display: flex;
        align-items: center;
    }

    & a {
        text-decoration: none;
        color: rgb(0, 0, 0);
        &:hover {
            color: rgb(32, 89, 153);
            text-decoration: underline;
        }
    }
}

.manual-contact--social {
    display: flex;
    gap: 1rem;
    & .fab {
        background: var(--color-blue);
        color: rgb(255, 255, 255);
        width: 4rem;
        aspect-ratio: 1 / 1;
        display: inline-block;
        vertical-align: middle;
        place-content: center;
        text-align: center;
        border-radius: 50%;
        font-size: 0px;
        &:is(:hover, :focus-visible) {
            background: rgb(255, 255, 255);
            color: var(--color-blue);
            text-decoration: none;
            border: solid 2px var(--color-blue);
        }
    }

    & .fab::before {
        font-size: 2rem;
    }
}

.callout.js-template-notes {
    background: rgb(255, 204, 204);
    position: relative;
}

.callout.js-template-notes::before {
    content: "✱";
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 7rem;
    translate: -50% -40%;
}

#block-groupcontentmenu ul.nav .nav-link.js-template-notes::after {
    position: absolute;
    left: 0px;
    top: 0px;
    content: "✱";
    font-size: 2rem;
    translate: -300% 40%;
}

#block-groupcontentmenu ul.nav .nav-link.js-template-notes {
    box-shadow: rgb(255, 204, 204) -80px 0px 0px 0px, rgb(255, 204, 204) 50px 0px 0px 0px;
    background: rgb(255, 204, 204);
}

#block-groupcontentmenu ul.nav ul.show-submenu:has(.js-template-notes) {
    overflow: visible !important;
}

.fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
