.team {
    display: grid;
    grid-template-columns: repeat(4, 20%);
    justify-content: space-around;
    row-gap: 40px;
}

.team .rounded img {
    border-radius: 20px;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.member .position {
    height: 80px;
    word-wrap: break-word;
}

.member .position h4 {
    font-size: 18px;
    line-height: 28px;
}

.member .text {
    line-height: 28px;
}

@media only screen and (max-width: 1000px) {
    .team {
        grid-template-columns: repeat(2, 45%);
    }

    .member .position {
        height: 55px;
    }

    .team .rounded img {
        height: 550px;
    }
}

@media only screen and (max-width: 750px) {
    .team {
        grid-template-columns: 1fr;
    }

    .team .rounded img {
        height: auto;
    }
}

@media only screen and (min-width: 751px) and (max-width: 1100px) {


}

@media only screen and (min-width: 1001px) and (max-width: 1099px) {


}
