/* 
 * Variables 
 */
:root {
    /* Colors */
    --navy: #122C6C;
    --navy-dark: #001448;
    --blue-light: #506EFA;
    --green: #184113;
    --red: #660333;
    --gold: #D49829;
    --gold-dark: #B8852B;
    --gold-10: #FBF5EA;
    --gold-40: #F2E0BF;
    --white: #FFF;
    --black: #000;
    /* Typography */
    --display-font: "grand-central", serif;
    --primary-font: "special-gothic", sans-serif;
    --secondary-font: "special-gothic-semicondensed", sans-serif;
}

/* 
 * Utilities 
 */
.desktop {
    display: none !important;
}

@media screen and (min-width: 900px) {
    .mobile {
        display: none !important;
    }

    .desktop {
        display: initial !important;
    }
}

.visually-hidden:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

[class^="btn-"] {
    align-items: center;
    color: var(--white);
    display: inline-flex;
    font-family: var(--secondary-font);
    font-size: 1rem;
    font-weight: 600;
    gap: 0.25rem;
    letter-spacing: 1%;
    line-height: 1.375;
    padding: 0.75rem 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
    transition-duration: .2s;

    svg {
        display: none;
        transition-behavior: allow-discrete;
        transition-duration: .2s;
    }

    &:hover,
    &:focus {

        svg {
            display: block;
        }
    }
}

@starting-style {
    [class^="btn-"] {
        svg {
            opacity: 0;
        }
    }
}

.btn-white {
    background-color: var(--white);
    color: var(--navy);

    &:hover,
    &:focus {
        background-color: var(--gold);
        color: var(--white);
    }
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);

    &:hover,
    &:focus {
        background-color: var(--gold-dark);
    }
}

.btn-blue {
    background-color: var(--blue-light);

    &:hover,
    &:focus {
        background-color: var(--navy);
    }
}

.btn-navy {
    background-color: var(--navy);

    &:hover,
    &:focus {
        background-color: var(--blue-light);
    }
}

.btn-navy-alt {
    background-color: var(--navy);

    &:hover,
    &:focus {
        background-color: var(--white);
        color: var(--navy);

        svg {
            path {
                stroke: var(--navy);
            }
        }
    }
}

/* 
 * Global Styles 
 */
* {
    box-sizing: border-box;
}

html {
    background-color: var(--navy);
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--primary-font);
    font-size: 1rem;
}

section {

    .container {
        margin: 0 auto;
        max-width: 75rem;
        padding: 0 1.25rem;
    }

    .container-wide {
        /* padding: 0 1.25rem;  */
    }
}

p {

    a {
        color: inherit;
        text-decoration: underline;

        &:hover,
        &:focus {
            color: var(--gold);
        }
    }
}

/* 
 * Header & Navigation 
 */
header {
    width: 100%;

    .container {
        align-content: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: none;
        padding: 0;
        position: relative;

        a.header-logo {
            display: block;
            margin: 1.375rem 1.25rem;
            text-decoration: none;

            svg {
                height: auto;
                width: 12.3125rem;
            }
        }

        button.menu-icon {
            background-color: transparent;
            border: 0;
            cursor: pointer;
            margin: 1.375rem 1.25rem;
            padding: 0;

            div {
                background-color: var(--navy);
                height: 0.25rem;
                margin-bottom: 0.375rem;
                transition-duration: .2s;
                width: 2rem;

                &:last-of-type {
                    margin: 0;
                }
            }

            &[aria-expanded="true"] {
                div:first-of-type {
                    transform: rotate(45deg) translate(7px, 7px);
                }

                div:nth-of-type(2) {
                    opacity: 0;
                }

                div:last-of-type {
                    transform: rotate(-45deg) translate(7px, -7px);
                }
            }
        }

        #site-navigation {
            display: none;
            font-family: var(--secondary-font);
            font-size: 1.125rem;
            font-weight: bold;
            line-height: 1.44;
            text-transform: uppercase;
            width: 100%;

            &.expanded {
                display: block;
            }

            nav {

                ul {
                    list-style: none;
                    margin: 0;
                    padding: 0;

                    li.menu-item {

                        a.menu-item {
                            color: var(--navy);
                            display: inline-block;
                            text-decoration: none;

                            &:hover,
                            &:focus {
                                color: var(--gold);
                                text-decoration: underline;
                            }
                        }
                    }
                }

                &.primary-nav {

                    ul#primary-navigation {
                        padding: 0 1.25rem 1.375rem;

                        li.menu-item {
                            border-bottom: 1px solid var(--navy);

                            a.menu-item {
                                padding: 0.6875rem 0;
                            }

                            &:nth-last-of-type(-n+2) {
                                border: 0;
                            }

                            &:last-of-type {
                                margin-top: 0.5625rem;

                                a.menu-item {
                                    background-color: var(--blue-light);
                                    color: var(--white);
                                    padding: 0.625rem 0.875rem;

                                    &:hover,
                                    &:focus {
                                        background-color: var(--navy);
                                    }
                                }
                            }
                        }
                    }
                }

                &.secondary-nav {
                    background-color: var(--navy);

                    ul#secondary-navigation {

                        li.menu-item {

                            button.menu-item {
                                align-content: center;
                                background-color: transparent;
                                border: 0;
                                border-bottom: 1px solid var(--white);
                                color: var(--white);
                                cursor: pointer;
                                display: flex;
                                font-family: var(--secondary-font);
                                font-size: 1.125rem;
                                font-weight: 700;
                                justify-content: space-between;
                                letter-spacing: 2%;
                                line-height: 1.55;
                                margin: 0 1.25rem;
                                padding: 1rem 0;
                                text-transform: uppercase;
                                width: calc(100% - 2.5rem);

                                svg {
                                    stroke: var(--white);
                                    transition-duration: .2s;
                                }

                                &:hover,
                                &:focus {
                                    color: var(--gold);

                                    svg {
                                        stroke: var(--gold);
                                    }
                                }

                                &[aria-expanded="true"] {
                                    svg {
                                        transform: rotate(45deg);
                                    }
                                }
                            }

                            ul.sub-menu {
                                background-color: var(--navy-dark);
                                display: none;
                                transition: opacity 0.5s ease, max-height 0.5s ease, display 0.5s;
                                transition-behavior: allow-discrete;
                                transition-duration: .2s;

                                &.expanded {
                                    display: block;
                                }

                                li.menu-item {

                                    a.menu-item {
                                        color: var(--white);
                                        font-family: var(--primary-font);
                                        font-weight: 400;
                                        letter-spacing: 2%;
                                        line-height: 1.11;
                                        padding: 1rem 1.25rem;
                                        text-transform: none;

                                        &:hover,
                                        &:focus {
                                            color: var(--gold);
                                        }
                                    }
                                }
                            }

                            &:last-of-type {
                                button.menu-item {
                                    border: 0;
                                }
                            }
                        }
                    }
                }

                &.social-nav {
                    background-color: var(--gold-dark);
                    padding: 1.375rem 1.25rem;

                    ul#social-navigation {
                        align-content: center;
                        display: flex;
                        justify-content: space-between;

                        li.menu-item {
                            display: block;
                            height: 2.1875rem;

                            button.search-toggle {
                                background-color: transparent;
                                border: 0;
                                cursor: pointer;

                                svg {
                                    stroke: var(--white);

                                    &:hover,
                                    &:focus {
                                        stroke: var(--black);
                                    }
                                }
                            }

                            a.menu-item {
                                display: block;

                                svg {
                                    display: block;
                                    fill: var(--white);

                                    &:hover,
                                    &:focus {
                                        fill: var(--black);
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@starting-style {
    header {
        .container {
            #site-navigation {
                nav {
                    &.secondary-nav {
                        ul#secondary-navigation {
                            li.menu-item {
                                ul.sub-menu {
                                    opacity: 0;
                                    max-height: 0;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 900px) and (max-width: 1340px) {
    header {
        .container {
            #site-navigation {
                nav {
                    &.secondary-nav {
                        ul#secondary-navigation {
                            li.menu-item {
                                &:first-of-type {
                                    ul.sub-menu {
                                        left: 6.5rem;
                                    }
                                }

                                &:last-of-type {
                                    ul.sub-menu {
                                        left: -2px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 900px) {
    header {

        .container {

            a.header-logo {

                svg {
                    width: 18.5625rem;
                }
            }

            button.menu-icon {
                display: none;

                div {

                    &:last-of-type {
                    }
                }
            }

            #site-navigation {
                display: block;
                width: calc(100% - 21.0625rem);

                nav {

                    ul {

                        li.menu-item {

                            a.menu-item {
                            }
                        }
                    }

                    &.primary-nav {

                        ul#primary-navigation {
                            align-content: center;
                            display: flex;
                            gap: 2.25rem;
                            justify-content: flex-end;
                            padding: 3.375rem 1.25rem 1rem;

                            li.menu-item {
                                border: 0;

                                &:last-of-type {
                                    margin: 0;
                                }

                                a.menu-item {
                                }
                            }
                        }
                    }

                    &.secondary-nav {
                        border-bottom: 1px solid var(--white);
                        left: -21.0625rem;
                        position: relative;
                        width: calc(100% + 21.0625rem);

                        ul#secondary-navigation {
                            align-content: center;
                            display: flex;
                            justify-content: space-between;
                            margin: 0 auto;
                            max-width: 75rem;
                            padding: 0 1rem;

                            li.menu-item {
                                position: relative;

                                button.menu-item {
                                    border: 0;
                                    font-size: 1rem;
                                    margin: 0;
                                    width: 100%;

                                    &:hover,
                                    &:focus {
                                    }

                                    svg {
                                        display: none;
                                    }
                                }

                                ul.sub-menu {
                                    display: none;
                                    left: 50%;
                                    position: absolute;
                                    text-align: center;
                                    top: 3.625rem;
                                    transform: translateX(-50%);
                                    width: 14.75rem;
                                    z-index: 100;

                                    li.menu-item {

                                        a.menu-item {
                                        }
                                    }
                                }
                            }
                        }
                    }

                    &.social-nav {
                        border-bottom-left-radius: 0.625rem;
                        border-bottom-right-radius: 0.625rem;
                        padding: 0.5rem 0.875rem;
                        position: absolute;
                        right: 1.25rem;
                        top: 0;

                        ul#social-navigation {
                            gap: 0.875rem;

                            button.search-toggle {

                                svg {
                                    height: auto;
                                    width: 1.5rem;
                                }
                            }

                            li.menu-item {
                                height: 1.5rem;

                                a.menu-item {

                                    svg {
                                        height: auto;
                                        width: 1.5rem;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/* 
 * Section: Hero 
 */
section#hero {
    background-color: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding: 7rem 0 2rem;
    position: relative;
    width: 100%;

    .container {

        .frame-top {
            left: 50%;
            position: absolute;
            top: -5rem;
            transform: translateX(-50%);
            width: 90rem;
            z-index: 1;

            svg#frame-full {
                display: none;
            }
        }

        h1 {
            font-family: var(--display-font);
            font-size: 3.125rem;
            font-weight: 700;
            line-height: 1.16;
            position: relative;
            text-align: center;
        }

        img {
            aspect-ratio: 353 / 289;
            display: block;
            object-fit: cover;
            width: 100%;
        }

        button.play-btn {
            align-content: center;
            background-color: var(--gold);
            border: 0;
            border-radius: 4rem;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            font-family: var(--secondary-font);
            font-size: 1.25rem;
            font-weight: 600;
            gap: .5rem;
            letter-spacing: 1%;
            line-height: 1.1;
            margin: 0 auto;
            padding: .5rem 1rem;
            position: relative;
            text-align: center;
            text-transform: uppercase;
            top: -5rem;
            z-index: 10;

            svg {
                height: auto;
                width: 0.75rem;
            }

            &:hover,
            &:focus {
                color: var(--white);
                background-color: var(--gold-dark);

                svg {
                    path {
                        fill: var(--white);
                    }
                }
            }
        }

        .frame-bottom {
            left: 50%;
            position: relative;
            top: -14rem;
            transform: translateX(-50%);
            width: 90rem;
            z-index: 1;

            svg {
            }
        }

        p {
            font-size: 1.25rem;
            line-height: 1.5;
            margin-top: -12.5rem;
            text-align: center;
        }

        #video-modal {
            background-color: transparent;
            border: none;
            max-width: 62.5rem;
            padding: 1.75rem 0 0;
            width: calc(100% - 2rem);

            &::backdrop {
                backdrop-filter: blur(4px);
                background: rgba(0, 0, 0, 0.55);
            }

            iframe {
                aspect-ratio: 16 / 9;
            }

            .dialog-close {
                background-color: var(--gold);
                border: 0;
                border-radius: 4px;
                color: var(--white);
                cursor: pointer;
                font-family: var(--secondary-font);
                font-size: 3rem;
                height: 1.5rem;
                line-height: 1rem;
                padding: 2px;
                position: absolute;
                right: 0;
                top: 0;
                width: 1.5rem;

                &:hover,
                &:focus {
                    background-color: var(--gold-dark);
                }

                &:focus {
                    border: initial;
                }
            }
        }
    }
}

@media screen and (min-width: 900px) {
    section#hero {

        .container {

            .frame-top {
                max-width: 87.5rem;
                top: -3rem;
                width: 123%;

                svg#frame-full {
                    display: block;
                }

                svg#frame-top {
                    display: none;
                }
            }

            h1 {
                font-size: 3.875rem;
                font-weight: 700;
                margin: 1.5rem auto;
                max-width: 43.75rem;
            }

            img {
                aspect-ratio: 1168 / 446;
            }

            button.play-btn {
                top: -7rem;

                svg {
                }
            }

            .frame-bottom {
                display: none;

                svg {
                }
            }

            p {
                font-size: 1.375rem;
                font-weight: 500;
                line-height: 1.45;
                margin-top: 2.5rem;
            }

            #video-modal {


                iframe {
                }
            }
        }
    }
}

@media screen and (min-width: 1000px) {
    section#hero {
        .container {
            .frame-top {
                top: -6rem;
            }
        }
    }
}

/* 
 * Section: Intro 
 */
section#intro {
    overflow: hidden;
    padding: 3.5rem 0;
    position: relative;

    .container {
        position: relative;
        z-index: 2;

        &::before,
        &::after {
            border: 1px solid var(--gold);
            content: "";
            display: block;
            position: absolute;
            width: calc(200vw);
            z-index: -2;
        }

        &::before {
            height: calc(100% + 3.875rem);
            right: 0.75rem;
            top: -2rem;
        }

        &::after {
            height: calc(100% + 3.375rem);
            right: 0.5rem;
            top: -1.75rem;
        }

        .copy {

            h2 {
                color: var(--navy);
                font-family: var(--secondary-font);
                font-size: 3.375rem;
                font-weight: 500;
                margin: 0 0 0.75rem 0;
            }

            p {
                font-size: 1.25rem;
                font-weight: 500;
                line-height: 1.5;
                margin-top: 0;
            }
        }

        .feature {
            background-color: var(--red);
            color: var(--white);
            margin: 0 0 1.25rem 0;
            padding: 0 1.25rem 1.25rem 1.25rem;

            .image {
                margin-bottom: 1.25rem;
                position: relative;

                img {
                    aspect-ratio: 313 / 340;
                    height: auto;
                    object-fit: cover;
                    width: 100%;
                }

                svg {
                    bottom: 1rem;
                    height: auto;
                    position: absolute;
                    right: -5.9375rem;
                    width: 17.0625rem;
                    z-index: 10;
                }
            }

            .copy {

                p.eyebrow {
                    align-items: center;
                    display: flex;
                    flex-wrap: nowrap;
                    font-family: var(--secondary-font);
                    font-size: 1rem;
                    font-weight: 600;
                    gap: 0.875rem;
                    line-height: 1.5;
                    margin-bottom: 0.75rem;

                    &::after {
                        background-color: var(--gold);
                        content: "";
                        display: block;
                        flex-grow: 1;
                        height: 1px;
                    }
                }

                h3 {
                    font-family: var(--secondary-font);
                    font-size: 1.625rem;
                    font-weight: 600;
                    line-height: 1.3;
                    margin: 0 0 0.375rem 0;
                }

                p {
                    font-size: 1.125rem;
                    font-weight: 400;
                    line-height: 1.44;
                }
            }

            &:nth-of-type(odd) {
                background-color: var(--green);
            }
        }

        .kicker {
            position: relative;

            &::after {
                background-color: var(--white);
                bottom: -2.5rem;
                content: "";
                display: block;
                height: 1.25rem;
                left: -1.25rem;
                position: absolute;
                width: 1.25rem;
            }

            h3 {
                color: var(--navy);
                font-family: var(--secondary-font);
                font-size: 1.375rem;
                font-weight: 500;
                line-height: 1.36;
                margin: 0.25rem 0 0.375rem 0;
            }

            p {
                font-size: 1.125rem;
                font-weight: 400;
                line-height: 1.44;
                margin: 0;

                a {
                }
            }
        }
    }
}

@media screen and (min-width: 900px) {
    section#intro {
        padding-top: 7.5625rem;

        .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.875rem 3.125rem;

            &::before {
                height: calc(100% + 1.6875rem);
                right: -2.625rem;
                top: -4.25rem;
            }

            &::after {
                height: calc(100% + 1.1875rem);
                right: -2.875rem;
                top: -4rem;
            }

            .copy {
                width: 26%;

                h2 {
                    font-size: 3.375rem;
                }

                p {
                }
            }

            .feature {
                display: flex;
                flex-direction: row-reverse;
                flex-wrap: nowrap;
                isolation: isolate;
                justify-content: space-between;
                margin-bottom: 0;
                padding: 0 2.25rem 2.0625rem 3.375rem;
                position: relative;
                width: calc(74% - 3.125rem);
                z-index: 10;

                > * {
                    position: relative;
                    z-index: 1;
                }

                .image {
                    margin-bottom: 0;
                    width: 40%;

                    img {
                        aspect-ratio: unset;
                        height: 100%;
                        width: 100%;
                    }

                    svg {
                        bottom: -7.1875rem;
                        right: -16.875rem;
                        width: 28.25rem;
                    }
                }

                .copy {
                    padding-top: 2.8125rem;
                    width: 47%;

                    p.eyebrow {


                        &::after {
                        }
                    }

                    h3 {
                    }

                    p {
                        padding-right: 2rem;
                    }
                }

                &:nth-of-type(odd) {
                    padding: 2.0625rem 2.25rem 0 3.375rem;
                    position: relative;

                    .copy {
                        padding-top: 1rem;
                        width: 60%;
                    }
                }
            }

            .kicker {
                margin-top: 3.0625rem;
                width: 26%;

                &::before {
                    background-color: var(--white);
                    content: "";
                    display: block;
                    height: 100%;
                    position: absolute;
                    left: calc(-200vw - 1.125rem);
                    top: 0;
                    width: 200vw;
                    z-index: 0;
                }

                &::after {
                    display: none;
                }

                h3 {
                    font-size: 1.625rem;
                    font-weight: 600;
                }

                p {


                    a {
                    }
                }
            }
        }
    }
}

/* 
 * Section: Advocate 
 */
section#advocate {
    background-color: var(--gold-10);
    padding: 3.5rem 0 15.9375rem 0;
    position: relative;
    overflow-x: clip;

    svg.pointer {
        height: auto;
        left: -3.9375rem;
        position: absolute;
        top: -3.4375rem;
        width: 9.1875rem;
        z-index: 10;
    }

    img.float {
        object-fit: cover;
        position: absolute;

        &#float-1 {
            display: none;
        }

        &#float-2 {
            bottom: -4rem;
            height: 15.3125rem;
            left: 50%;
            transform: translateX(-90%);
            width: 12.375rem;
            z-index: 4;
        }

        &#float-3 {
            bottom: 2.3125rem;
            height: 12.375rem;
            right: 50%;
            transform: translateX(80%);
            width: 15.375rem;
            z-index: 3;
        }
    }

    .container {

        h2 {
            color: var(--navy);
            font-family: var(--secondary-font);
            font-size: 2.75rem;
            font-weight: 500;
            line-height: 1.18;
            margin: 0 0 2.1875rem 0;
            text-align: center;
        }

        .resources {
            display: flex;
            flex-wrap: wrap;
            row-gap: 2rem;

            .resource {
                background-color: var(--blue-light);
                color: var(--white);
                padding: 2rem 1.25rem;
                position: relative;
                width: 100%;

                &::before,
                &::after {
                    background-color: var(--gold);
                    content: "";
                    display: block;
                    left: 0;
                    position: absolute;
                    width: 100%;
                }

                &::before {
                    height: 2px;
                    top: -0.6875rem;
                }

                &::after {
                    height: 1px;
                    top: -0.3125rem;
                }

                h3 {
                    font-family: var(--secondary-font);
                    font-size: 1.625rem;
                    font-weight: 600;
                    line-height: 1.3;
                    margin: 0 0 0.75rem 0;
                }

                p {
                    font-size: 1.125rem;
                    font-weight: 400;
                    line-height: 1.44;
                }

                a {
                }
            }
        }
    }
}

@media screen and (min-width: 900px) {
    section#advocate {
        padding-bottom: 18.875rem;

        svg.pointer {
            height: 18.5625rem;
            top: -4.4375rem;
            width: 17.875rem;
        }

        .container {

            h2 {
                margin-bottom: 4.1875rem;
            }

            .resources {
                flex-wrap: nowrap;
                column-gap: 2rem;

                .resource {
                    flex-grow: 1;

                    &::before,
                    &::after {
                    }

                    &::before {
                    }

                    &::after {
                    }

                    h3 {
                    }

                    p {
                    }

                    a {
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 1100px) {
    section#advocate {

        img.float {

            &#float-1 {
                bottom: -6.1875rem;
                display: block;
                height: 20.625rem;
                left: 10.375rem;
                width: 25.625rem;
            }

            &#float-2 {
                bottom: -14.5rem;
                height: 25.625rem;
                left: unset;
                right: 20.5rem;
                transform: none;
                width: 20.625rem;
            }

            &#float-3 {
                bottom: -3.9375rem;
                height: 20.625rem;
                right: 2.1875rem;
                transform: none;
                width: 25.625rem;
            }
        }
    }
}

/* 
 * Section: Spotlight 
 */
section#spotlight {
    overflow: hidden;
    padding: 8.875rem 0 7.25rem;

    .container-wide {
        position: relative;

        &::before {
            border: 1px solid var(--gold);
            content: "";
            display: block;
            height: 4px;
            left: 50%;
            position: absolute;
            top: -2.5625rem;
            transform: translateX(-50%);
            width: 200vw;
        }

        h2 {
            color: var(--blue-light);
            font-family: var(--display-font);
            font-size: 2.625rem;
            font-weight: 700;
            line-height: 1.19;
            margin: 0 auto 1.1875rem;
            padding: 0 1.25rem;
            text-align: center;
        }

        .splide {

            .splide__track {

                ul.members {

                    li.member {
                        overflow: hidden;
                        padding: 0 1.25rem;

                        div.frame {
                            display: flex;
                            flex-direction: column;

                            div.image {
                                order: 5;
                                width: 100%;

                                img.portrait {
                                    aspect-ratio: 353 / 410;
                                    height: auto;
                                    object-fit: cover;
                                    width: 100%;
                                }
                            }

                            .bio {

                                h3 {
                                    color: var(--navy);
                                    font-family: var(--secondary-font);
                                    font-size: 1.875rem;
                                    font-weight: 600;
                                    line-height: 1.13;
                                    margin: 0 auto 0.75rem;
                                }

                                p.subtitle {
                                    color: var(--navy);
                                    font-family: var(--secondary-font);
                                    font-size: 1.25rem;
                                    font-weight: 500;
                                    line-height: 1.3;
                                    margin: 0 auto 0.75rem;
                                }

                                p {
                                    font-family: var(--primary-font);
                                    font-size: 1.125rem;
                                    font-weight: 400;
                                    line-height: 1.44;
                                    margin: 0 auto 1.875rem;
                                }
                            }

                            .quote {
                                background-color: var(--gold-10);
                                margin: 0 0 1.625rem;
                                overflow: visible;
                                padding: 3.875rem 5.5rem 1.875rem 1.25rem;
                                position: relative;

                                svg.mark {
                                    height: auto;
                                    left: 1.25rem;
                                    position: absolute;
                                    top: 1.5rem;
                                    width: 1.9375rem;
                                }

                                svg.sign {
                                    height: auto;
                                    position: absolute;
                                    right: -2.875rem;
                                    top: -3.25rem;
                                    width: 8rem;
                                }

                                p {
                                    color: var(--navy);
                                    font-family: var(--secondary-font);
                                    font-size: 1.125rem;
                                    font-weight: 500;
                                    line-height: 1.33;
                                    margin: 0;
                                }
                            }
                        }
                    }
                }
            }

            .splide__pagination--spotlight {
                bottom: -5.25rem;
                justify-content: space-around;
                left: 0;
                padding: 0;
                width: 100%;

                &::before,
                &::after {
                    background-color: var(--gold);
                    content: "";
                    display: block;
                    height: 1px;
                    left: 0;
                    position: absolute;
                    width: 100%;
                }

                &::before {
                    top: 0.8125rem;
                }

                &::after {
                    top: 1.25rem;
                }

                li {


                    button.splide__pagination__page {
                        background: none;
                        border-radius: 0.25rem;
                        color: var(--navy);
                        font-family: var(--secondary-font);
                        font-size: 0.875rem;
                        font-weight: 500;
                        height: auto;
                        line-height: 1.5;
                        opacity: 1;
                        position: relative;
                        transform: none;
                        width: auto;

                        &::before {
                            background-color: var(--gold);
                            border-radius: 100%;
                            content: "";
                            display: block;
                            height: 1.5rem;
                            left: 50%;
                            margin-top: 0.5rem;
                            position: relative;
                            top: -0.4375rem;
                            transform: translateX(-50%);
                            width: 1.5rem;
                        }

                        &.is-active {

                            &::before {
                                background-color: var(--blue-light);
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 900px) {
    section#spotlight {
        padding: 16.75rem 0 4.6875rem;

        .container-wide {

            &::before {
                display: none;
            }

            h2 {
            }

            .splide {

                .splide__track {
                    overflow: visible;

                    ul.members {

                        li.member {
                            overflow: visible;
                            padding: 0 3.625rem;

                            div.frame {
                                align-items: flex-start;
                                border-image-outset: 7.75rem 0.5rem 0 0.5rem;
                                border-image-repeat: repeat repeat;
                                border-image-slice: 13 13 13 13;
                                border-image-source: url("../assets/svg/frame-spotlight.svg");
                                border-image-width: 0.8125rem 0.8125rem 0.8125rem 0.8125rem;
                                border-style: solid;
                                flex-direction: row;
                                flex-wrap: nowrap;

                                div.image {
                                    left: -1.875rem;
                                    order: initial;
                                    position: relative;
                                    top: 2.6875rem;
                                    width: 32%;

                                    &::before {
                                        background-color: var(--white);
                                        content: "";
                                        display: block;
                                        height: calc(100% + 1rem);
                                        position: absolute;
                                        right: -3.75rem;
                                        top: -1rem;
                                        width: calc(100% + 3.75rem);
                                    }

                                    img.portrait {
                                        aspect-ratio: 415 / 482;
                                        position: relative;
                                        width: 100%;
                                    }
                                }

                                .bio {
                                    margin-bottom: 2.6875rem;
                                    margin-left: 1.25rem;
                                    padding-right: 2.875rem;
                                    position: relative;
                                    top: 2.6875rem;
                                    width: 46%;

                                    h3 {
                                    }

                                    p.subtitle {
                                    }

                                    p {
                                    }
                                }

                                .quote {
                                    margin-bottom: 3.6875rem;
                                    margin-right: 3.625rem;
                                    min-width: 13.5625rem;
                                    padding: 5.5rem 1.5rem 2.6875rem;
                                    top: 2.6875rem;
                                    width: 19%;

                                    svg.mark {
                                        height: 2.125rem;
                                        top: 2.0625rem;
                                        width: 2.625rem;
                                    }

                                    svg.sign {
                                        height: 19.125rem;
                                        right: -4.1875rem;
                                        top: -15.3125rem;
                                        width: 12.625rem;
                                    }

                                    p {
                                    }
                                }
                            }
                        }
                    }
                }

                .splide__pagination--spotlight {
                    bottom: -2.5625rem;
                    justify-content: space-between;
                    left: 40%;
                    width: 52%;

                    &::before,
                    &::after {
                        display: none;
                    }

                    li {


                        button.splide__pagination__page {
                            font-size: 1rem;
                            font-weight: 600;

                            &::before {
                            }

                            &.is-active {

                                &::before {
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/* 
 * Section: Celebrate 
 */
section#celebrate {
    background-color: var(--red);
    color: var(--white);
    padding: 2.8125rem 0 3.5rem;
    position: relative;

    svg.star {
        height: 6.375rem;
        left: -2.25rem;
        position: absolute;
        top: -1.5rem;
        width: 7rem;
    }

    .container {

        h2 {
            font-family: var(--display-font);
            font-size: 2.625rem;
            font-weight: 700;
            margin: 0 auto 0.375rem;
            line-height: 1.19;
            position: relative;
            text-align: center;
        }

        p.intro {
            font-size: 1.25rem;
            font-weight: 500;
            line-height: 1.4;
            text-align: center;
        }

        h3 {
            font-family: var(--secondary-font);
            font-size: 1.875rem;
            font-weight: 600;
            line-height: 1.13;
            margin: 0 auto 1.5rem;
        }

        a.inline {
            color: var(--white);
            display: inline-block;
            font-family: var(--secondary-font);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1%;
            line-height: 1.37;
            margin: 0 auto 1.5rem;
            text-transform: uppercase;

            &:hover,
            &:focus {
                color: var(--gold);
            }
        }

        .ways {

            .involved {
                margin-top: 3.625rem;
                position: relative;

                &::before,
                &::after {
                    background-color: var(--gold);
                    content: "";
                    display: block;
                    left: 0;
                    position: absolute;
                    width: 100%;
                }

                &::before {
                    height: 2px;
                    top: -1.75rem;
                }

                &::after {
                    height: 1px;
                    top: -1.375rem;
                }

                h3 {
                }

                .item {
                    border-bottom: 1px solid rgba(212, 152, 41, .5);
                    margin: 0 auto 1.5rem;

                    &:last-of-type {
                        border-bottom: none;
                        margin-bottom: 0;

                        a.inline {
                            margin-bottom: 0;
                        }
                    }

                    h4 {
                        font-family: var(--secondary-font);
                        font-size: 1.125rem;
                        font-weight: 600;
                        line-height: 1.33;
                        margin: 0 auto 0.75rem;
                    }

                    a.inline {
                    }
                }
            }

            .aside {

                & > div {
                    margin-top: 3.625rem;
                    position: relative;

                    &::before,
                    &::after {
                        background-color: var(--gold);
                        content: "";
                        display: block;
                        left: 0;
                        position: absolute;
                        width: 100%;
                    }

                    &::before {
                        height: 2px;
                        top: -1.75rem;
                    }

                    &::after {
                        height: 1px;
                        top: -1.375rem;
                    }
                }

                .publications {

                    h3 {
                    }

                    .publication {
                        border-bottom: 1px solid rgba(212, 152, 41, .5);
                        display: flex;
                        flex-wrap: nowrap;
                        gap: 1.5rem;
                        margin-bottom: 1.5rem;
                        padding-bottom: 1.5rem;

                        &:last-of-type {
                            border-bottom: none;
                            margin-bottom: 0;
                            padding-bottom: 0;
                        }

                        img {
                            display: block;
                            height: 6.375rem;
                            object-fit: cover;
                            width: 5.5625rem;
                        }

                        .copy {
                            flex-grow: 1;

                            h4 {
                                color: var(--white);
                                font-family: var(--secondary-font);
                                font-size: 1.25rem;
                                font-weight: 600;
                                line-height: 1.4;
                                margin: 0 auto 0.75rem;
                            }

                            a.inline {
                                margin: 0 auto;
                            }
                        }
                    }
                }

                .quick-links {

                    h3 {
                    }

                    ul {
                        list-style: none;
                        margin: 0;
                        padding: 0;

                        li {
                            margin: 0 auto 1.75rem;

                            &:last-of-type {
                                margin: 0 auto;
                            }

                            a {
                                color: var(--white);
                                font-family: var(--secondary-font);
                                font-size: 1.25rem;
                                font-weight: 600;
                                line-height: 1.4;

                                &:hover,
                                &:focus {
                                    color: var(--gold);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 900px) {
    section#celebrate {
        padding-top: 4.9375rem;

        svg.star {
            height: 14.75rem;
            left: -4rem;
            top: -2.875rem;
            width: 17.1875rem;
        }

        .container {

            h2 {
                font-size: 3.125rem;
                font-weight: 700;
                line-height: 1.16;
                margin: 0 auto 0.5rem;
                width: 84%;
            }

            p.intro {
                margin: 0 auto 1.25rem;
                width: 66%;
            }

            h3 {
                font-size: 2.25rem;
                line-height: 1.22;
            }

            a.inline {


                &:hover,
                &:focus {
                }
            }

            .ways {
                display: flex;
                flex-wrap: nowrap;
                gap: 3.5rem;

                &::before,
                &::after {
                }

                &::before {
                }

                &::after {
                }

                .involved {
                    width: 40%;

                    h3 {
                    }

                    .item {


                        &:last-of-type {


                            a.inline {
                            }
                        }

                        h4 {
                            font-size: 1.375rem;
                            font-weight: 500;
                            line-height: 1.36;
                        }

                        a.inline {
                        }
                    }
                }

                .aside {
                    flex-grow: 1;

                    & > div {


                        &::before,
                        &::after {
                        }

                        &::before {
                        }

                        &::after {
                        }
                    }

                    .publications {

                        h3 {
                        }

                        .publication {


                            &:last-of-type {
                            }

                            img {
                            }

                            .copy {


                                h4 {
                                    font-size: 1.375rem;
                                    font-weight: 500;
                                    line-height: 1.36;
                                }

                                a.inline {
                                }
                            }
                        }
                    }

                    .quick-links {

                        h3 {
                        }

                        ul {
                            display: flex;
                            flex-wrap: nowrap;
                            gap: 8%;

                            li {
                                flex: 1;
                                margin-bottom: 0;

                                &:last-of-type {
                                }

                                a {
                                    font-size: 1.375rem;
                                    font-weight: 500;
                                    line-height: 1.45;

                                    &:hover,
                                    &:focus {
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/* 
 * Section: Donate
 */
section#donate {
    overflow: hidden;
    padding: 4.75rem 0 9rem;
    position: relative;

    .container {

        .frame {
            border-image-outset: 2.3125rem 0.625rem 3.4375rem 0.625rem;
            border-image-repeat: repeat repeat;
            border-image-slice: 20 141 42 20;
            border-image-source: url("../assets/svg/frame-donate-mobile.svg");
            border-image-width: 1.25rem 8.8125rem 2.625rem 1.25rem;
            border-style: solid;
            padding: 0 1rem;
            text-align: center;

            h2 {
                color: var(--blue-light);
                font-family: var(--secondary-font);
                font-size: 2.75rem;
                font-weight: 500;
                line-height: 1.18;
                margin: 0 auto 1.25rem;
            }

            p {
                font-size: 1.25rem;
                font-weight: 500;
                line-height: 1.4;
                margin: 0 auto 1.25rem;
            }

            a.btn-navy {
                margin: 0 auto 0.875rem;
            }

            svg.point-left {
                bottom: -0.75rem;
                height: auto;
                position: absolute;
                right: -2.8125rem;
                width: 11.375rem;
            }

            &.alternate-border {
                border-image-source: url("../assets/svg/frame-donate-alternate-mobile.svg");
            }
        }
    }
}

@media screen and (min-width: 900px) {
    section#donate {
        padding: 5rem 0 6.5rem;

        .container {
            max-width: 83.25rem;

            .frame {
                border-image-outset: 2.5rem 0px 2.8125rem 0px;
                border-image-repeat: round round;
                border-image-slice: 42 190 186 40;
                border-image-source: url("../assets/svg/frame-donate.svg");
                border-image-width: 2.625rem 11.875rem 11.625rem 2.5rem;
                border-style: solid;
                position: relative;
                z-index: 1;

                &.alternate-border {
                    border-image-source: url("../assets/svg/frame-donate-alternate.svg");
                }

                h2 {
                    font-size: 3.375rem;
                    line-height: 1.07;
                }

                p {
                    font-size: 1.375rem;
                    line-height: 1.45;
                    max-width: 41.875rem;
                }

                a.btn-navy {

                    &:last-of-type {
                        margin-bottom: 0;
                    }
                }

                svg.point-left {
                    bottom: -7.8125rem;
                    right: -5.9375rem;
                    width: 21.75rem;
                }
            }
        }
    }
}

@media screen and (min-width: 900px) and (max-width: 1180px) {
    section#donate {
        .container {
            .frame {
                svg.point-left {
                    bottom: -7.8125rem;
                    right: -5.9375rem;
                    width: 18.75rem;
                }
            }
        }
    }
}

/* 
 * Footer
 */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 2.8125rem 0 3.75rem;

    .container {
        padding: 0 1.25rem;

        .logo {
            margin-bottom: 2.625rem;
            text-align: center;

            svg.logo-alt {
                height: auto;
                width: 17.4375rem;
            }
        }

        .contact {
            padding: 1.75rem 0 1.5rem;
            position: relative;

            &::before,
            &::after {
                background-color: var(--blue-light);
                content: "";
                display: block;
                height: 1px;
                left: 0;
                position: absolute;
                width: 100%;
            }

            &::before {
                top: 0;
            }

            &::after {
                top: 4px;
            }

            p {
                font-size: 1rem;
                font-weight: 500;
                line-height: 1.62;
                margin: 0 0 1.875rem;

                &:last-of-type {
                    margin-bottom: 0;
                }
            }
        }

        nav#footer-nav {
            display: flex;
            flex-wrap: wrap;
            padding-top: 2.375rem;
            position: relative;

            &::before,
            &::after {
                background-color: var(--blue-light);
                content: "";
                display: block;
                height: 1px;
                left: 0;
                position: absolute;
                width: 100%;
            }

            &::before {
                top: 0;
            }

            &::after {
                top: 4px;
            }

            a.donate {
                display: block;
                font-size: 1.125rem;
                font-weight: 700;
                line-height: 1.11;
                margin-bottom: 2rem;
                text-align: center;
                width: 100%;
            }

            ul {
                flex: 1;
                list-style: none;
                margin: 0;
                padding: 0;

                li {
                    margin: 0 0 2.25rem;

                    a {
                        color: var(--white);
                        font-family: var(--secondary-font);
                        font-size: 1.125rem;
                        font-weight: 700;
                        line-height: 1.11;
                        text-decoration: none;
                        text-transform: uppercase;

                        &:hover,
                        &:focus {
                            color: var(--gold);
                        }

                        &.donate {

                            &:hover,
                            &:focus {
                                color: var(--white);
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 900px) {
    footer {


        .container {
            display: flex;
            margin: 0 auto;
            max-width: 87.375rem;
            padding: 0 4.625rem;
            width: 100%;

            .logo {
                margin-bottom: 0;
                padding-right: 9.5%;
                width: 37%;

                svg.logo-alt {
                    width: 100%;
                }
            }

            .contact {
                padding: 0 2.375rem;
                width: 29%;

                &::before,
                &::after {
                    height: 100%;
                    top: 0;
                    width: 1px;
                }

                &::before {
                    left: -4px;
                }

                &::after {
                    left: 0;
                }

                p {


                    &:last-of-type {
                    }
                }
            }

            nav#footer-nav {
                flex-wrap: nowrap;
                padding: 0;
                width: 34%;

                &::before,
                &::after {
                    display: none;
                }

                a.donate {
                    display: inline-block;
                    margin: 0;
                    width: auto;
                }

                ul {
                    padding: 0 2.375rem;
                    position: relative;

                    &::before,
                    &::after {
                        background-color: var(--blue-light);
                        content: "";
                        display: block;
                        height: 100%;
                        position: absolute;
                        top: 0;
                        width: 1px;
                    }

                    &::before {
                        left: -4px;
                    }

                    &::after {
                        left: 0;
                    }

                    &:last-of-type {
                        padding-right: 0;
                    }

                    li {
                        margin-bottom: 1.5rem;

                        &:last-of-type {
                            margin-bottom: 0;
                        }

                        a {


                            &:hover,
                            &:focus {
                            }

                            &.donate {
                                margin-bottom: 0.875rem;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* ********************************
 * Begin Homepage styles
 *********************************/
/* 
 * Section: Home Hero
 */
#hero-home {
    position: relative;
    padding: 61px 0 0;
    background-color: var(--navy);
    color: var(--white);
    min-height: 653px;

    .container-left {
        margin: 0 auto;
        max-width: 75rem;
        padding: 0 1.25rem;
    }

    .hero-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 59px 0;
    }

    .hero-content {
        flex-basis: 100%;

        h1 {
            font-family: var(--display-font);
            font-size: 2.625rem;
            font-weight: 700;
            line-height: 1.16em;
            margin-top: 0;
            margin-bottom: 1.125rem;
        }

        .hero-copy {
            font-size: 1.2rem;
            font-family: var(--primary-font);
            font-weight: 500;
            line-height: 1.455em;
            margin-top: 0;
            margin-bottom: 2.25rem;
        }

        .btn-blue {

            &:hover,
            &:focus {
                background-color: var(--gold-dark);
            }
        }
    }

    .hero-images {
        position: relative;
        max-width: 445px;
        min-height: 366px;
        margin: 0 auto;
        flex-basis: 100%;
        display: flex;
        align-items: flex-end;
        flex-direction: column;

        .pbk-key {
            position: absolute;
            z-index: 2;
            left: -1.25rem;
            max-height: 187px;
            width: 124px;
            top: -30px;

            svg {
                width: 100%;
                height: auto;
            }
        }

        .home-hero-1 {
            width: 286px;
            height: 231px;
            position: relative;
            right: -1.25rem;
            z-index: 0;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .home-hero-2 {
            width: 216px;
            height: 175px;
            position: absolute;
            left: -1.25rem;
            bottom: 0;
            z-index: 1;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .tri-star {
            position: absolute;
            bottom: -3px;
            right: -1.25rem;
            width: 251px;
            z-index: 1;

            svg {
                width: 100%;
                height: auto;
            }
        }
    }
}

@media screen and (min-width: 992px) {
    #hero-home {
        position: relative;
        background-color: var(--navy);
        color: var(--white);
        min-height: 653px;

        .hero-inner {
            display: flex;
            flex-wrap: nowrap;
            gap: 0 59px;
        }

        .hero-content {
            flex-basis: 50%;
            max-width: 584px;

            h1 {
                font-size: 3.125rem;
            }

            .hero-copy {
                font-size: 1.375rem;
            }

            .btn-blue {

                &:hover,
                &:focus {
                    background-color: var(--gold-dark);
                }
            }
        }

        .hero-images {
            position: unset;
            max-width: unset;
            min-height: unset;
            margin: 0;
            flex-basis: 50%;

            .pbk-key {
                position: absolute;
                left: unset;
                width: unset;
            }

            .home-hero-1 {
                width: 468px;
                height: 377px;
                position: absolute;
                right: 0;
                z-index: 0;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .home-hero-2 {
                width: 352px;
                height: 285px;
                position: absolute;
                bottom: 0;
                left: unset;
                z-index: 1;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .tri-star {
                width: unset;
            }
        }
    }
}

@media screen and (min-width: 992px) and (max-width: 1180px) {
    #hero-home {
        overflow: clip;

        .hero-images {
            .pbk-key {
                right: 320px;
                top: 285px;
            }

            .tri-star {
                right: -156px;
                bottom: -3px;
            }
        }
    }
}

@media screen and (min-width: 1180px) {
    #hero-home {

        .container-left {
            position: relative;
            max-width: 1620px;
            margin-left: calc((100% - 75rem) / 2);
            padding: 0 0 0 1rem;
            min-height: 625px;
        }

        .hero-content {
            h1 {
                font-size: 3.875rem;
                line-height: 1.097em;
            }

            .hero-copy {
                font-size: 1.375rem;
            }
        }

        .hero-images {
            .pbk-key {
                position: absolute;
                right: 438px;
                top: 0;
                z-index: 1;
            }

            .home-hero-1 {
                top: 30px;
            }

            .home-hero-2 {
                right: 10vw;
            }

            .tri-star {
                position: absolute;
                bottom: -3px;
                right: 0;
                z-index: 1;
            }
        }
    }
}

/* 
 * Section: News & Stories
 */
section#news-stories {
    background-color: var(--gold-10);
    color: var(--navy-dark);
    padding: 2.8125rem 0 3.5rem;
    position: relative;

    .container {

        h2 {
            font-family: var(--secondary-font);
            font-size: 2.75rem;
            font-weight: 500;
            margin: 0 auto 0.375rem;
            line-height: 1.19;
            position: relative;
            text-align: center;
            color: var(--navy);
        }

        p.intro {
            font-size: 1.25rem;
            font-weight: 500;
            line-height: 1.4;
            text-align: center;
            color: var(--black);
        }

        h3 {
            font-family: var(--secondary-font);
            font-size: 1.875rem;
            font-weight: 600;
            line-height: 1.13;
            margin: 0 auto 1.5rem;
        }

        a.inline {
            color: var(--white);
            display: inline-block;
            font-family: var(--secondary-font);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1%;
            line-height: 1.37;
            margin: 0 auto 1.5rem;
            text-transform: uppercase;

            &:hover,
            &:focus {
                color: var(--gold);
            }
        }

        .posts-grid {

            .featured {
                margin-top: 1.8125rem;
                position: relative;
                background-color: #F5E7CD;
                padding: 20px 20px 24px;

                h3 {
                }

                .item {
                    margin: 0 auto 1.5rem;
                    border-bottom: none;
                    margin-bottom: 0;

                    .featured-image {
                        width: 100%;
                        max-width: 512px;
                        height: 254px;
                        margin-bottom: 24px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    a.post-title {
                        font-size: 1.875rem;
                        font-family: var(--secondary-font);
                        font-weight: 600;
                        line-height: 1.267em;
                        color: var(--navy-dark);
                        text-decoration: none;

                        &:hover,
                        &:focus {
                            text-decoration: underline;
                            color: var(--navy);
                        }
                    }


                    h4 {
                        font-family: var(--secondary-font);
                        font-size: 1.125rem;
                        font-weight: 600;
                        line-height: 1.33;
                        margin: 0 auto 0.75rem;
                    }

                    a.inline {
                    }
                }
            }

            .category {
                font-size: 1rem;
                font-family: var(--secondary-font);
                font-weight: 600;
                line-height: 1.5em;
                text-transform: uppercase;
                text-decoration: underline;
                margin-top: 0;
                margin-bottom: 8px;
            }

            .aside {

                & > div {
                    margin-top: 3.625rem;
                    position: relative;

                    &::before,
                    &::after {
                        background-color: var(--gold);
                        content: "";
                        display: block;
                        left: 0;
                        position: absolute;
                        width: 100%;
                    }

                    &::before {
                        height: 1px;
                        top: -1.75rem;
                    }

                    &::after {
                        height: 1px;
                        top: -1.375rem;
                    }
                }

                .stories {
                    display: flex;
                    flex-direction: column;
                    gap: 1rem 0;

                    .story {
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        flex-wrap: nowrap;
                        gap: 1.5rem;
                        margin-bottom: 1.5rem;
                        padding-bottom: 1.5rem;

                        &::before,
                        &::after {
                            background-color: var(--gold);
                            content: "";
                            display: block;
                            left: 0;
                            position: absolute;
                            width: 100%;
                        }

                        &::before {
                            height: 1px;
                            top: -1.75rem;
                        }

                        &::after {
                            height: 1px;
                            top: -1.375rem;
                        }

                        &:first-of-type {

                            &:before,
                            &:after {
                                display: none;
                            }
                        }

                        &:last-of-type {
                            border-bottom: none;
                            margin-bottom: 0;
                            padding-bottom: 0;
                        }

                        img {
                            display: block;
                            height: 6.375rem;
                            object-fit: cover;
                            width: 5.5625rem;
                        }

                        .copy {
                            flex-grow: 1;

                            a.post-title {
                                font-size: 1.375rem;
                                font-family: var(--secondary-font);
                                font-weight: 500;
                                line-height: 1.364em;
                                color: var(--navy-dark);
                                text-decoration: none;

                                &:hover,
                                &:focus {
                                    text-decoration: underline;
                                    color: var(--navy);
                                }
                            }
                        }
                    }
                }

                .quick-links {

                    h3 {
                    }

                    ul {
                        list-style: none;
                        margin: 0;
                        padding: 0;

                        li {
                            margin: 0 auto 1.75rem;

                            &:last-of-type {
                                margin: 0 auto;
                            }

                            a {
                                color: var(--white);
                                font-family: var(--secondary-font);
                                font-size: 1.25rem;
                                font-weight: 600;
                                line-height: 1.4;

                                &:hover,
                                &:focus {
                                    color: var(--gold);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 900px) {
    section#news-stories {
        padding-top: 4.9375rem;
        padding-bottom: 4.563rem;

        .container {

            h2 {
                font-size: 3.375rem;
                font-weight: 500;
                line-height: 1.16;
                margin: 0 auto 0.5rem;
                width: 84%;
            }

            p.intro {
                margin: 0 auto 1.25rem;
                width: 66%;
            }

            h3 {
                font-size: 2.25rem;
                line-height: 1.22;
            }

            a.inline {


                &:hover,
                &:focus {
                }
            }

            .posts-grid {
                display: flex;
                flex-wrap: nowrap;
                gap: 3.5rem;

                &::before,
                &::after {
                }

                &::before {
                }

                &::after {
                }

                .featured {
                    flex-basis: 50%;
                    padding: 36px;

                    h3 {
                    }

                    .item {
                        .featured-image {
                            width: 100%;
                            max-width: 512px;
                            height: 254px;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }

                        h4 {
                            font-size: 1.375rem;
                            font-weight: 500;
                            line-height: 1.36;
                        }
                    }
                }

                .aside {
                    flex-basis: 50%;

                    .stories {
                        display: flex;
                        flex-direction: column;
                        gap: 2.625rem 0;
                    }
                }
            }
        }
    }
}

/*
* Section: Home Feature
*/
#home-feature {
    padding: 3.375rem 0 3.375rem 0;
    overflow: hidden;

    .container {
        max-width: 83.25rem;
    }

    .feature {
        background-color: var(--red);
        color: var(--white);
        padding: 0 4.5rem 2.0625rem 4.125rem;
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        gap: 0 75px;
        isolation: isolate;
        justify-content: space-between;

        .image {
            margin-bottom: 0;
            width: 40%;
            width: 640px;
            height: 392px;

            img {
                object-fit: cover;
                height: 100%;
                width: 100%;
            }
        }

        .copy {
            padding-top: 2.8125rem;
            width: 47%;

            p.eyebrow {
                align-items: center;
                display: flex;
                flex-wrap: nowrap;
                font-family: var(--secondary-font);
                font-size: 1rem;
                font-weight: 600;
                text-transform: uppercase;
                gap: 0.875rem;
                line-height: 1.5;
                margin-bottom: 0.75rem;

                &::after {
                    background-color: var(--gold);
                    content: "";
                    display: block;
                    flex-grow: 1;
                    height: 1px;
                }
            }

            h3 {
                font-family: var(--secondary-font);
                font-size: 2.25rem;
                font-weight: 600;
                line-height: 1.222;
                margin: 0 0 0.375rem 0;
            }

            p {
                font-size: 1.125rem;
                font-weight: 400;
                line-height: 1.44;
            }
        }
    }

    @media screen and (max-width:899px) {
        padding: 0;
        margin: 1.25rem 0;

        .feature {
            padding: 0 1.25rem 1.25rem 1.25rem;
            flex-direction: column;
            flex-wrap: wrap;

            .image {
                margin: 0 auto;
                width: 100%;
                max-width: 313px;
                height: 340px;

                img {
                    object-fit: cover;
                    height: 100%;
                    width: 100%;
                }
            }

            .copy {
                width: 100%;
                padding-top: 1.25rem;

                p.eyebrow {
                    margin-top: 0;
                }

                h3 {
                    font-size: 1.625rem;
                }
            }
        }
    }
}

/*
* Section: Events
*/
#events {
    background-color: var(--blue-light);
    padding: 52px 0 56px;
    color: #FFF;
    text-align: center;

    h2 {
        font-family: var(--secondary-font);
        font-size: 2.75rem;
        font-weight: 500;
        margin: 0 auto 1.5rem;
        line-height: 1.19;
        position: relative;
        text-align: center;
    }

    p.intro {
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.4;
        text-align: center;
        margin: 0 auto 2.625rem;
        width: 66%;
    }

    .events-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        text-align: left;

        .event-item {
            padding: 30px 30px 54px;
            background-color: var(--navy);

            .event-image {
                width: 100%;
                max-width: 313px;
                height: 158px;
                margin: 0 auto;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .event-date {
                font-family: var(--secondary-font);
                text-transform: uppercase;
                font-weight: 600;
            }

            .event-link {
                color: #fff;
                font-family: var(--secondary-font);
                font-size: 1.875rem;
                font-weight: 600;
                line-height: 1.267em;

                &:hover,
                &:focus {
                    color: var(--gold);
                }
            }
        }
    }

    a.btn-white {
        margin: 2.625rem auto 0.875rem;
    }

    @media screen and (max-width:899px) {
        padding: 30px 0 34px;

        h2 {
            font-size: 2.75rem;
        }

        p.intro {
            font-size: 1.25rem;
            width: 100%;
            margin-bottom: 30px;
        }

        .events-grid {
            grid-template-columns: 1fr;
            gap: 20px 0;

            .event-item {
                padding: 20px 20px 54px;
            }
        }

        a.btn-white {
            margin: 1.5rem auto 0.875rem;
        }
    }
}

/*
* Section: Home Framed Section
*/
section#home-framed-section {
    padding: 5rem 0 3.5rem;

    .container {
        max-width: 83.25rem;

        .frame {
            border-image-outset: 2.5rem 0px 1rem 0px;
            border-image-repeat: round round;
            border-image-slice: 27 27 27 27;
            border-image-source: url("../assets/svg/frame-home.svg");
            border-image-width: 1.25rem 1.25rem 1.25rem 1.25rem;
            border-style: solid;
            position: relative;
            z-index: 1;
            text-align: center;

            h2 {
                max-width: 600px;
                font-size: 3.375rem;
                line-height: 1.07;
                color: var(--navy);
                font-family: var(--secondary-font);
                font-weight: 500;
                margin: 2.25rem auto 1.25rem;
            }

            p {
                color: var(--navy);
                font-size: 1.375rem;
                font-weight: 500;
                line-height: 1.45;
                max-width: 41.875rem;
                margin: 0 auto 1.25rem;
            }

            a.btn-blue {

                &:last-of-type {
                    margin-bottom: 0;
                }
            }

            .framed-banner {
                width: calc(100% - 40px);
                margin: 42px auto 0;

                img {
                    width: 100%;
                    height: auto;
                }
            }
        }
    }

    @media screen and (max-width:899px) {
        overflow: hidden;
        padding: 4.75rem 0 9rem;
        position: relative;

        .container {

            .frame {
                border-image-outset: 1.3125rem 0.625rem 1.725rem 0.625rem;
                border-image-repeat: repeat repeat;
                border-image-slice: 20 141 42 20;
                border-image-source: url("../assets/svg/frame-home.svg");
                border-image-width: 1.25rem 8.8125rem 2.625rem 1.25rem;
                border-style: solid;
                padding: 0 1rem;

                h2 {
                    margin-top: 20px;
                    font-size: 2.75rem;
                    line-height: 1.18;
                }

                .framed-banner {
                    width: 100%;
                    height: 157px;
                    margin-top: 30px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
            }
        }
    }
}

/* 
 * Section: Member Spotlight
 */
#member-spotlight {
    background-color: var(--green);
    padding-top: 86px;
    overflow: hidden;

    .headline {
        margin-bottom: 53px;

        h3 {
            margin: 0;
            color: #fff;
            font-family: var(--display-font);
            font-size: 3.125rem;
            line-height: 1.16em;
            display: flex;
            align-items: center;
            gap: 0 31px;

            .heading-txt {
                display: inline-block;
                min-width: 530px;
            }

            &::after {
                content: "";
                display: inline-block;
                height: 6px;
                width: 100%;
                max-width: 640px;
                border-top: 2px solid var(--gold);
                border-bottom: 1px solid var(--gold);
            }
        }
    }

    .content-flex {
        display: flex;
        gap: 0 69px;

        .spotlight-content {
            color: #fff;

            .member-name {
                margin: 0 0 4px;
                font-size: 2.25rem;
                font-weight: 600;
                line-height: 1.222em;
            }

            .member-title {
                font-family: var(--secondary-font);
                margin: 0;
                font-size: 1.25rem;
                font-weight: 500;
                line-height: 1.3em;
            }

            .member-copy {
                font-size: 1.125rem;
                line-height: 1.444em;
            }

            .spotlight-quote {
                background: rgba(251, 245, 234, 0.20);
                padding: 40px 30px 48px;
                margin: 0;
                display: flex;
                flex-wrap: nowrap;
                gap: 0 28px;

                .quote {
                    margin: 0;
                    font-size: 1.25rem;
                    font-weight: 500;
                    line-height: 1.3em;

                    &:after {
                        content: '”';
                    }
                }
            }
        }

        .spotlight-member-image {
            align-self: center;
            min-width: 411px;
            height: 522px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    @media screen and (max-width:899px) {
        padding-top: 40px;

        .headline {
            margin-bottom: 24px;

            h3 {
                font-size: 2.625rem;
                line-height: 1.16em;
                flex-wrap: wrap;
                width: 100%;
                gap: 12px;

                .heading-txt {
                    min-width: unset;
                }

                &::after {
                    max-width: unset;
                }
            }
        }

        .content-flex {
            flex-wrap: wrap;

            .spotlight-content {
                .member-title {
                    font-size: 1.125rem;
                    line-height: 1.333em;
                }

                .member-copy {
                    font-size: 1.125rem;
                    line-height: 1.444em;
                }

                .spotlight-quote {
                    padding: 20px 20px 28px;
                    flex-wrap: wrap;
                    gap: 12px;
                    margin-bottom: 20px;

                    .quote {
                        font-size: 1.125rem;
                        line-height: 1.333em;
                    }
                }
            }

            .spotlight-member-image {
                width: 100%;
                max-width: 440px;
                height: auto;
                margin: 0 auto;

                img {
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
}

/*.search-block {
    margin-left: 22px;
}*/

@media (max-width: 1023px) {
    .drop-holder:before, .popup-holder .open {
        display: none;
    }
}

@media (max-width: 1023px) {
    .popup input {
        padding: 10px 8px;
        height: auto;
    }
}
@media (max-width: 1023px) {
    .popup {
        top: 0px !important;
        font-size: 20px;
        font-weight: 300;
        width: 100% !important;
        position: relative;
        top: 0;
    }

        .popup input {
            height: auto !important;
           
        }
}

.popup-holder {
    display: flex;
    align-items: center;
    position: relative;
}

    .popup-holder .open {
        -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, position .2s ease-in-out, color .2s ease-in-out, margin-right .2s ease-in-out;
        transition: opacity .2s ease-in-out, visibility .2s ease-in-out, position .2s ease-in-out, color .2s ease-in-out, margin-right .2s ease-in-out;
        width: auto;
        opacity: 1;
        visibility: visible;
    }

.popup {
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
    top: -2px;
    bottom: 0;
    width: 0;
    right: 0;
    overflow: hidden;
    position:relative;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

.popup input {
    height: 22px;
    width: 100%;
    border: 0;
    outline: 0;
}

button, input[type=button], input[type=file], input[type=reset], input[type=submit] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    cursor: pointer;
}

#SearchBar input[type=submit], #SearchBar label {
    display: none;
}

.popup-active .open {
    opacity: 0;
    visibility: hidden;
    margin-right: -18px;
}



.form-control {
    display: block;
    font-size: 14px;
    line-height: 1.42857143;
}
a.btn-navy-alt {
    margin-top: auto;
    width: auto;
    align-self: flex-start;
}

.resource {
    display: flex;
    flex-direction: column;
}