.staff-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.staff-img-wrapper {
    height: 180px;
    text-align: center;
}

.staff-info {
    margin-top: 12px;
    font-size: 15px;
}

.staff-img-wrapper img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

.m-top {
    margin-top: 40px !important;
}

@media(max-width: 800px){
    
    .staff-list {
        grid-template-columns: 1fr 1fr;
    }

    .staff-img-wrapper {
        height: 200px;
    }

    .staff-info {
        font-size: 13px;
    }
}

@media(max-width: 750px){
    .staff-img-wrapper {
        height: 300px;
    }
}

@media(max-width: 600px){
    .staff-list {
        grid-template-columns: 1fr;
    }

    .staff-img-wrapper {
        margin-bottom: 30px;
        height: auto;
    }

    .staff-img-wrapper img {
        width: 70%;
    }

    .staff-info {
        font-size: 15px;
    }
}