.wrap {
    width: 100%;
    height: auto;
    padding: 5.4rem 1.5rem 2rem;
    box-sizing: border-box;
}

.teachers-list-item {
    width: 100%;
    height: 9rem;
    padding: 1.5rem;
    margin-bottom: 1.8rem;
    background: #FFFFFF;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    box-sizing: border-box;
}
.teachers-list-item-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.teachers-list-item-img{
    display: block;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
}
.teachers-list-item-content{
    display: block;
    width: 80%;
    height: 100%;
    padding: .6rem 0;
    margin-left: 2rem;
    box-sizing: border-box;
}
.teachers-list-item-name{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: bold;
    color: #333;
}
.teachers-list-item-occupation{
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.7rem;
    color: #777;
}