#empty-keyvisual {
    border-radius: 30px;
}

#why-we-exist {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: var(--font-180);
}

#why-we-exist p {
    font-size: var(--font-40);
    margin: 0;
    margin-top: 2rem;
}

#meet-the-team-header {
    border-top: 1px solid var(--col-dividers);
    border-bottom: 1px solid var(--col-dividers);
    margin-bottom: 20px;
}

#meet-the-team-header h2 {
    font-size: var(--font-85);
    line-height: 100%;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 12rem;
}

#leadership {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.team-cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.team-card {
    width: calc(100% - 50px);
    height: 15vh;
    display: flex;
    background-color: white;
    color: black;
    padding: 15px;
    margin: 10px;
    border-radius: 15px;
}

.team-card img {
    height: 100%;
    border-radius: 8px;
}

.team-card .team-member-desc {
    margin-left: var(--font-16);
    width: 100%;
    height: 100%;
    line-height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card .team-member-desc h4 {
    margin: 0;
    display: block;
    margin-bottom: auto;
    font-size: var(--font-28);
    line-height: 100%;
}

.team-card .team-member-desc p {
    margin: 0;
    margin-top: auto;
    font-family: 'Geist Mono', monospace;
    font-size: var(--font-16);
    line-height: 100%;
}

#call-to-action {
    font-size: var(--font-180);
    line-height: 100%;
    margin-top: 10rem;
    padding-bottom: 100px;
    padding-top: 100px;
    border-top: solid 1px var(--col-dividers);
}

#call-to-action .empty-button {
    display: block;
    margin-top: 1rem;
    line-height: 100%;
}

footer {
    margin-top: 0 !important;
}

@media screen and (min-width: 960px) {
    #why-we-exist {
        flex-direction: row;
    }

    #why-we-exist .cat-mark {
        margin-right: auto;
    }

    #why-we-exist p {
        margin-top: 0;
        width: 65%;
    }

    #leadership {
        flex-direction: row;
    }

    #leadership>p {
        width: 30%;
        margin-right: auto;
    }

    .team-cards {
        width: 65%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-card {
        width: calc(50% - 50px);
    }

    #call-to-action .empty-button {
        display: inline;
        margin-left: 50px;
        margin-top: unset;
        vertical-align: center;
    }
}
