@media only screen and (max-width: 768px) {
    .block-author .author_wrapper {
        margin-bottom: 36px;
    }
}


.author_wrapper {
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.author_image {
    position: relative;
    min-width: 20%;
    height: auto;
    border-radius: 100%;
    overflow: hidden;


    border: double 5px transparent;
    background-image: linear-gradient(white, white), radial-gradient(circle at top left, #1e3c50, #bea594);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-sizing: border-box;
}

.author_image img {
    border-radius: 100%;
    display: block;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;

    padding: 10px;
    object-fit: cover;
    object-position: center;

    transition: all .2s ease;
}

.author_image:hover img {
    transform: scale(1.1);
}

.author_text {
    margin-left: 36px;
}

body .author_wrapper h1 {
    font-size: 20px;
    font-weight: 900 !important;
    margin: 0 !important;
}

.author_wrapper h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}


@media only screen and (max-width: 991px) {

    .author_image {
        min-width: 33% !important;
    }
}

@media only screen and (max-width: 768px) {
    .author_wrapper {
        flex-direction: column;
        margin-top: 24px;
    }

    .author_image {
        min-width: 0 !important;
        max-width: 66% !important;
        margin: 0 auto !important;
    }

    .author_text {
        margin-left: 0;
    }

    body .author_wrapper h1 {
        margin-top: 36px !important;
    }
}