.people.grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
    gap: 88px 20px;
}

.people.posts .post .postBox {
    flex-direction: row;
    gap: 20px;
}

.people.posts .imgBox {
    flex: 0 0 186px; /* grow shrink basis */
    height: 198px;
}

.people.posts .infoBox {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex: 2 1 auto; /* grow shrink basis */
    gap: 16px;
}

.people.posts .tags {
    margin: 0;
}

.people.posts .name,
.people.posts .details p {
    margin: 0;
}

.people.posts .role {
    font-weight: 700;
}

.people.posts .lab {
    font-size: 16px;
    font-size: 1rem;
    line-height: 28px;
    line-height: 1.75rem;
}

/* .columncount3 ul.people-list {
    grid-template-columns: minmax(0, 3fr) minmax(0, 3fr) minmax(0, 3fr);
}

.columncount4 ul.people-list {
    grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr);
}

.foldable li.people-list_item {
    padding:0;
    background-color: transparent;
}

.foldable li.people-list_item div.people--img {
    justify-content: flex-start;
}

.foldable li.people-list_item div.item--details .h4,
.foldable li.people-list_item div.item--details p,
.foldable .item--details {
    text-align: left;
}

.foldable .moreDetails {
    display: none;
}
.foldable li.people-list_item div.item--details > div {
    justify-content: flex-start;
}

ul.people-list {
    display: grid;
    grid-template-columns: calc(50% - 40px) calc(50% - 40px);
    grid-column-gap: 78px;
    grid-row-gap: 36px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li.people-list_item {
    background-color: var(--white);
    text-align: center;
    padding: 44px 46px;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
}

.people-list_item .item--details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

li.people-list_item div.people--img {
    height: 161px;
    width: 161px;
    margin-bottom: 44px;
    display: flex;
    justify-content: center;
    border-radius: 100%;
}

li.people-list_item div.people--img img {
    max-width: 161px;
    object-fit: cover;
    border-radius: 100%;
}

li.people-list_item div.item--details > div {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
}

li.people-list_item div.item--details .h4 {
    margin-bottom: 26px;
}

li.people-list_item div.item--details p {
    margin-bottom: 36px;
}

li.people-list_item div.item--details a.morelink {
    font-family: var(--open-sans);
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.25rem;
    color: black;
    text-decoration: underline;
}

li.people-list_item div.item--details a.morelink:hover {
    color: var(--blue);
    text-decoration: underline;
}

.morecontent span {
	display: none;
} */


/* ============================================ */
/*          BB "LARGE" DESKTOP, and down        */
/* ============================================ */

@media only screen and (max-width: 1365px) {
    .people.grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
        gap: 88px 48px;
    }   
}

/* ================================ */
/*          TABLET, and down        */
/* ================================ */
@media only screen and (max-width: 992px) {
    .people.grid {
        gap: 66px 20px;
    }
    .people.posts .imgBox {
        flex: 0 0 124px;
        height: 142px;
    }
    .people.posts .imgBox img {
        height: 142px;
    }
}

/* ======================================= */
/*          BB "SMALL" Mobile, only        */
/* ======================================= */
@media only screen and (max-width: 768px) {
    .people.grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 66px;
    }
    .people.posts .imgBox {
        height: 126px;
    }
    .people.posts .imgBox img {
        height: 126px;
    }
    .people.posts .infoBox {
        gap: 8px;
    }
}