.cw3-author {
    display: flex;
    align-items: center;
}

.cw3-author.align-right {
    justify-content:flex-end;
}

.cw3-author .image {
    position: relative;
    z-index: 1;
    flex: 0 0 143px;
    max-width: 143px;
    margin-right: 31px;
    border-radius: 50%;
    overflow: hidden;
}

.cw3-author .image:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    box-shadow: inset 0px 0px 24px 0px rgba(51, 45, 39, 0.46);
}

.cw3-author .image img {
    display: block;
}

.cw3-author .info .name {
    font-size: 30px;
    font-weight: bold;
}

.cw3-author .info .label {
    margin-top: 3px;
}

@media screen and (max-width: 459px) {
    .cw3-author {
        display: block;
        text-align: center;
    }

    .cw3-author .image {
        margin: 0 auto 20px;
    }
}