.page-header {
    background-image: url(/images/misc/vision-banner.jpg);
    background-position: 0 -400px;
}

#about-main-content-container {
    margin-top: 50px;
}
.about-subsection-container {
    width: 100vw;

    display: grid;
    grid-template-columns: auto 1fr;
    margin: 20px 0;

    position: relative;

    .about-section-text-wrapper {
        background-color: rgba(229, 231, 235, 0.8);
        backdrop-filter: blur(10px) saturate(50%);
        height: auto;
        padding: 3vw;
        gap: 20px;
        max-width: 500px;
        min-width: 200px;
        grid-column: 1 / 2;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        z-index: 0;
        min-height: 300px;
        h2 {
            margin-bottom: 10px;
        }
        p, li, figcaption {
            margin-top: 10px;
        }
        figcaption:not(:last-child) {
            margin-bottom: 20px;
        }
        ul p {
            margin-top: 0;
        }
    }

    .about-section-image-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        align-content: center;
        z-index: -1;
        img {
            width: 100%;
            height: calc(100% - 40px);
            object-fit: cover;
        }
    }
}
#about-main-content-container > :nth-child(2n of .about-subsection-container) {
    grid-template-columns: 1fr auto;
    .about-section-text-wrapper {
        grid-column: 2 / 3;
    }
}

.people-list-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px 5vw;

    .person-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: auto;
        position: relative;
        width: 180px;
        text-align: center;
        text-wrap-style: pretty;

        img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            border-radius: calc(infinity * 1px);
            border: solid white 0.25vw;
            overflow: hidden;
            background-image: url(/images/textures/stripes.png);
            background-size: 12px;
            background-color: var(--gray);
        }
        h3 {
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 10px;
        }
        a {
            color: white;
            text-decoration: none;
            font-size: 8pt;
            transition: color .2s;
            &:hover {
                color: var(--light-gray);
            }
        }
    }
}
#leadership {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: #052b7c; */
    background-color: var(--navy);
    background-image: url(/images/textures/stripes.png);
    background-size: 12px;
    color: white;
    padding: 50px;

    h2 {
        padding-bottom: 20px;
        margin-bottom: 50px;
        min-width: 50vw;
        text-align: center;
        border-bottom: 2px solid white;
    }
}