.team-block__item-wrapper {
    margin-bottom: 32px;
}
.team-block__item {
    position: relative;
    display: block;
    background: #FFFFFF;
    box-shadow: 18px 18px 20px #E9E9E9, -18px -18px 20px #FAFAFA;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    padding: 20px;
    height: 100%;
    text-align: center;
    max-width: 310px;
    margin: 0 auto;
}
.team-block__img-wrapper {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 120%;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    background: #eee;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.team-block__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center bottom;
    object-fit: cover;
}
.team-block__name {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #231F25;
    margin-bottom: 6px;
}
.team-block__helper {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.3;
    color: #231F25;
    opacity: 0.7;
}
@media screen and (min-width: 576px) {
    .team-block__item {
        max-width: 100%;
    }
}