.author-block{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    min-width: 220px;
    width: 100%;
}
.author-block > a{
    display: flex;
    align-items: center;
}
.author-block > a > img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
    padding: 11px;
    background-color: #fff;
    border: 1px solid #dadada;
    border-radius: 50%;
}
.author-block h3{
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    margin: 0;
    margin-top: 5px;
}
.author-block span{
    font-size: 14px;
    line-height: 18px;
    color:#707070;
    font-weight: 400;
}
.author-block span.title{
    font-size: 16px;
    line-height: 17px;
    font-weight: 400;
    color: #242424;
    display: inline-block;
}
@media(max-width:767px){
    .author-block{
        flex-direction: column;
        min-width: 0;
        padding: 20px;
        min-height: 180px;
        width: 50%;
        background-color: #fff;
        border: 1px solid #dadada;
        border-radius: 25px;
    }
    .author-block + .author-block{
        margin-left: 20px;
    }
    .author-block > a > img{
        margin-right: 0;
        margin-bottom: 10px;
        width: 80px;
        height: 80px;
    }
    .author-block .content{
        text-align: center;
    }
    .author-block h3{
        line-height: 22px;
    }
    .author-block span.title{
        font-size: 14px;
        line-height: 16px;
        margin-top: 10px;
    }
}
