#about-page .about-intro img {
    aspect-ratio: 638/421;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 32px;
}

#about-page {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
}

#about-page p {
    margin-bottom: 1em;
}

#about-intro {
    margin-bottom: 80px;
}

#about-numbers {
    margin-bottom: 72px;
}

#about-numbers .wrapper {
    background-color: var(--background-blue);
    color: var(--white);
    padding: 64px 40px;
}

#about-numbers h2 {
    margin: 0 0 32px 0;
    padding: 0 0 24px 0;
    color: var(--white);
    border-bottom: 4px solid var(--gold);
    font-weight: 200;
}

#about-numbers .numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

#about-numbers .numbers .number {
    background-color: var(--background-blue-shift);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

#about-numbers .numbers .number p {
    margin: 0;
}

#about-numbers .numbers sup {
    top: -.33em;
    font-size: .6667em;
}

#about-numbers .numbers .number .large {
    font-weight: 100;
    font-size: 96px;
    line-height: 1em;
    margin-bottom: 16px;
}


@media screen and (max-width: 1024px) {

    #about-numbers .numbers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {

    #about-numbers .wrapper {
        width: 100%;
        max-width: unset;
    }

    #about-numbers .numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    #about-numbers .numbers .number {
        padding: 24px 12px;
    }

    #about-numbers .numbers .number p {
        font-size: 14px;
        line-height: 1.33em;
    }

    #about-numbers .numbers .number .large {
        font-size: 48px;
    }
}

#about-the-office {
    margin-bottom: 90px;
}

#about-the-office h2 {
    border-top: 4px solid var(--background-blue);
    padding-top: 24px;
    margin-bottom: 50px;
}

#about-the-office ul {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 2;
}

@media screen and (max-width: 768px) {
    #about-the-office ul {
        column-count: unset;
    }
}

#about-the-office ul li {
    padding-left: 2em;
    padding-right: 1em;
    position: relative;
    margin-bottom: 16px;
}

#about-the-office ul li::before {
    content: url('https://www.ilsos.gov/images/refresh-2023/bullet-checkmark.svg');
    position: absolute;
    top: .125em;
    left: -.25em;
}

#about-large-quote .wrapper {
    background-color: var(--background-blue);
    color: var(--white);
    padding: 100px;
}

#about-large-quote figure {
    max-width: 960px;
    margin: 0 auto;
}

#about-large-quote figure blockquote {
    margin: 0;
    padding: 1.5em 0 0 0;
    border: none;
    font-style: italic;
    font-weight: 300;
    font-size: 36px;
    line-height: 1.33em;
    margin-bottom: .6667em;
    position: relative;
}

#about-large-quote figure blockquote::before {
    content: url('https://www.ilsos.gov/images/refresh-2023/quote-opening-section.svg');
    position: absolute;
    top: -0.75em;
    left: 0;
}

#about-large-quote figure figcaption {
    font-weight: 300;
    font-size: 24px;
    line-height: 1em;
}

#about-large-quote figure figcaption::before {
    content: '\2014';
}

@media screen and (max-width: 768px) {

    #about-page {
        font-size: 16px;
    }

    #about-large-quote .wrapper {
        padding: 50px 25px;
        width: 100%;
        max-width: unset;
    }

    #about-large-quote figure blockquote {
        font-size: 24px;
    }

    #about-large-quote figure figcaption {
        font-size: 18px;
    }

    #about-numbers, #about-large-quote{
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
}