.teamgrid {
    gap: 5px;
    display: flex;
    flex-wrap: wrap;
}

.teamgrid .team-member {
    width: 24%;
}

.team-member h3 {
    min-height: auto;
}

.team-member-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: #a6a6a6;
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 24pt;
    color: #7e939e;
}

@media only screen and (max-width:760px) {
    .team-member-image {
        height: 270px;
    }

    .teamgrid {
        flex-direction: row;
        align-items: center;
    }

    .teamgrid .team-member {
        width: 49%;
    }

    .team-member img {
        height: 270px;
    }
}