section .aboutus {
    display: grid;
    grid-template-areas: "who support"
                         "teams teams";
    grid-template-columns: 2fr 1fr;
    gap: var(--sectionGridGap);
    align-items: flex-start;
    justify-content: center;
}

section .aboutus .whoweare {
    grid-area: who;
    display: flex;
    align-items: center;
}

section .aboutus p {
    padding-bottom: 1em;
}

section .aboutus p:last-child {
    padding-bottom: 0;
}

section .aboutus .support {
    grid-area: support;
    display: flex;
    flex-direction: column;
}

section .aboutus .support > div {
    display: flex;
    gap: 12px;
}

section .aboutus .support img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

section .aboutus .support a {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border: 3px solid var(--colorGreen);
    border-radius: 10px;
    transition: all .2s ease-in-out;
}

section .aboutus .support a:hover {
    transform: scale(1.1);
}

section .aboutus .support a img {
    width: 120px;
    height: auto;
    margin-bottom: 0;
}

section .aboutus .teams {
    grid-area: teams;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

section .aboutus .teams > div {
    width: 100%;
    display: flex;
    justify-content: center;
}

section .aboutus .teams p {
    padding: 0;
    margin-bottom: 24px;
    font-size: var(--sectionTeamsFontSize);
}

section .aboutus .teams .people {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--sectionGridGap) / 2);
}

section .aboutus .teams .people p {
    margin: 0;
    text-align: center;
}

section .aboutus .teams .people > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

section .aboutus .teams .people .profile {
    width: 80px;
    height: 80px;
    transition: all .2s ease-in-out;
    margin-bottom: 8px;
}

section .aboutus .teams .people img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

section .aboutus .teams .people .profile:hover {
    transform: scale(1.3);

}

section .aboutus .teams .people .name {
    font-size: var(--sectionAboutNameFontSize);
}

section .aboutus .teams .people .func {
    font-size: var(--sectionAboutFuncFontSize);
}

/*
section .aboutus .teams img {
    height: 80px;
    width: auto;
    margin-top: 24px;
}
*/

@media(min-width: 1400px) {
    section .aboutus {
        gap: calc(var(--sectionGridGap) * 2);
    }
}

@media(max-width: 950px) {
    section .aboutus {
        grid-template-areas: "who"
                             "teams"
                             "support";
        grid-template-columns: 1fr;
    }

    section .aboutus .teams {
        align-items: center;
    }

    section .aboutus .teams > div {
        justify-content: center;
    }
    
    section .aboutus .teams .people {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 500px) {
    section .aboutus .teams .people {
        grid-template-columns: repeat(2, 1fr);
    }
}
