#our-mission {
    display: grid;
    text-align: center;
    justify-content: center;
    gap: 5%;
    padding-left: 5em;
    padding-right: 5em;
}
#our-mission .img-slides {
    width: 100%;
    height: 75vh;
}
#our-mission .img-slides img {
    max-width: 100%;
    height: 50%;
    border-radius: 10% / 10%;
    position: absolute;
    box-shadow:
        3px 3px 0.4em var(--red-midlight),
        -10px -10px 0.4em var(--purple-foreground);
}

#how-we-work .overview {
    width: 80%;
    text-align: center;
    object-fit: contain;
}
#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: auto;
    object-fit: contain;
    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;
}

@media (max-width: 1025px) {
    :root {
        --about-grid-columns: 1;
    }
    #our-mission {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    #our-mission .img-slides {
        grid-row: 2;
        height: 50vh;
    }
    #our-mission .img-slides img:first-child {
        top: 5%;
        left: -2%;
    }
    #our-mission .img-slides img:nth-child(2) {
        top: 30%;
        right: 1%;
    }
    #our-mission .img-slides img:last-child {
        top: 45%;
        left: 8%;
    }
}
@media (min-width: 1025px) {
    :root {
        --about-grid-columns: 3;
    }
    #our-mission {
        grid-template-columns: 40% 1fr;
    }
    #our-mission .img-slides img:first-child {
        top: 5%;
        left: -5%;
    }
    #our-mission .img-slides img:nth-child(2) {
        top: 10%;
        right: 10%;
    }
    #our-mission .img-slides img:last-child {
        top: 40%;
        left: 15%;
    }
}