@media (max-width: 1025px) {
    :root {
        --about-grid-columns: 1;
    }
}
@media (min-width: 1025px) {
    :root {
        --about-grid-columns: 3;
    }
}
#our-mission {
    text-align: center;
    justify-content: center;
    /* come up with background image */
}
#how-we-work .overview {
    width: 80%;
    text-align: center;
}
#how-we-work .grid {
    display: grid;
    grid-template-columns: repeat(var(--about-grid-columns, 3), 1fr);
    width: 100%;
    font-size: 0.8em;
}
#how-we-work .grid > * {
    display: block;
}
#how-we-work .grid > *:last-child {
    grid-column: min(var(--about-grid-columns, 2), 2);
}

#meet-the-team {
    text-align: center;
}

#meet-the-team .team-cards {
    display: grid;
    width: 85%;
    height: 100%;
    grid-template-columns: repeat(min(var(--grid-columns, 3), 3), 1fr);
}
#meet-the-team .team-cards .team-card {
    font-size: 0.8em;
    overflow: hidden;
    padding: 0;
}
#meet-the-team .team-cards .team-card::before {
    content: "";
    width: 100%;
    height: 0;
    padding-top: 100%;
    margin: 0;
}
#meet-the-team .team-cards .team-card > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}
#meet-the-team .team-card-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.26);
    width: 100%;
    margin: 0;
    padding: 1em 0 0.25em 0;
}
[class^='team-card-'] > .title {
    display: block;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    width: 100%;
}
[class^='team-card-'] > .subtitle {
    display: block;
    padding-top: 0.15em;
    padding-bottom: 0.15em;
    width: 100%;
}
[class^='team-card-'] > .tagline {
    display: block;
    width: 100%;
}
[class^='team-card-'] > .quote {
    display: block;
    width: 90%;
    margin-left: 5%;
    padding: 1.5em;
    border-color: currentColor;
    border-style: solid;
    border-width: 2px;
    border-left-width: 1.5em;
}
.team-card-popup {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--purple-background);
}
.team-card-popup-content {
    display: block;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1em;
}

/*
#testimonials {
    
}
*/