@charset "utf-8";
/* CSS Document */

/* =========================
   IMAGE HOVER / ZOOM
========================= */

.img-hover-zoom {
    height: auto;
    overflow: hidden;
}

.img-hover-zoom button {
    border: none;
    background: none;
    padding: 0;
    width: 100%;
    cursor: pointer;
}

.img-hover-zoom img {
    width: 100%;
    display: block;
    transition: transform .3s ease;
}

.img-hover-zoom:hover img,
.img-hover-zoom:focus-within img {
    transform: scale(1.1);
}

.img-hover-zoom button > h3 {
    font-size: .9rem;
}

.img-hover-zoom h5 {
    text-align: center;
    margin-top: .5rem;
    font-size: .9rem;
}

.img-hover-zoom--point-zoom img {
    transform-origin: 65% 75%;
    transition: transform 1s, filter .5s ease-out;
}

.img-hover-zoom--point-zoom:hover img,
.img-hover-zoom--point-zoom:focus-within img {
    transform: scale(1.1);
}

/* =========================
   CAROUSEL
========================= */

.carouselSingleImg li {
    display: none;
}

/* =========================
   EXTERNAL LINKS
========================= */

a.external {
    color: #2b80b9;
}

a.external[target="_blank"] {
    white-space: nowrap;
}

a.external[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 1px;
    vertical-align: text-top;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232b80b9' d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3z'/%3E%3Cpath fill='%232b80b9' d='M5 5h6v2H7v10h10v-4h2v6H5z'/%3E%3C/svg%3E");
}

/* =========================
   ACCESSIBILITY
========================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 3px solid #005FCC;
    outline-offset: 3px;
}

.focusable-link:focus {
    outline: none;
}

.focusable-link:focus-visible {
    outline: 3px solid #005FCC;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0,95,204,.3);
    border-radius: 4px;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    pointer-events: none;
}

.lightbox-content * {
    pointer-events: auto;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    max-height: 80vh;
    opacity: 0;
    transition: opacity .2s ease;
}

.lightbox-content img.show {
    opacity: 1;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(0,0,0,.6);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: .5rem .75rem;
}

.lightbox-close {
    top: 10px;
    right: 10px;
}

.lightbox-nav.prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav.next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox button:focus-visible {
    outline: 3px solid #fff;
}

#lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    font-size: .95rem;
}

@media (prefers-reduced-motion: reduce) {
    .lightbox-content img {
        transition: none;
    }
}

/* =========================
   TYPOGRAPHY / CONTENT / LEGAL
========================= */

.storyCopy {
    max-width: 70ch;
}

.legal {
    margin-top: 2rem;
}

.legal sup {
    vertical-align: super;
    font-size: .75em;
}

.legal ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    counter-reset: none;
}

.legal li {
    padding-left: 1.5em;
    line-height: 1.5;
    font-size: .91em;
    margin-bottom: .95em;
}

.legal li sup {
    font-size: .75em;
    vertical-align: super;
    margin-right: .3em;
    display: inline;
}

.legal li:target {
    background: #f0f6ff;
    padding: .25em;
    border-radius: 4px;
}

.footnote-ref {
    font-weight: 700;
    font-size: 1em;
    color: #005FCC;
    text-decoration: none;
    padding: 0 2px;
    border-radius: 3px;
    line-height: 1;
}

.footnote-ref:hover {
    text-decoration: underline;
}

.footnote-ref:focus-visible {
    outline: 3px solid #005FCC;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0,95,204,.25);
}

/* =========================
   GRID
========================= */

.cols-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px,1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.cols-6 > * {
    margin: 0;
}

.cols-6::before,
.cols-6::after {
    content: none !important;
    display: none !important;
}

/* =========================
   UTILITIES
========================= */

.marginBottom {
    margin-bottom: 15px;
}

.textCenter {
    text-align: center;
}

