.author-head{
    background: var(--white);
}
.blog-post__back-link {
    display: block;
    position: relative;
    line-height: 100%;
    color: var(--accent);
}
.blog-post__back-link:hover {
    color: var(--accent);
}
.author-head__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
}
.author-head__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 180px;
    width: 100%;
}
.author-head__img {
    max-width: 180px;
    width: 100%;
    border-radius: 180px;
}
.author-head__img--mob {
    display: none;
    max-width: 160px;
}
.author-head__socials{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}
.author-head__socials--mob{
    display: none;
}
.author-head__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}
.author-head__social path:first-child{
    fill: #2E363E;
    -webkit-transition: fill .2s;
    -o-transition: fill .2s;
    transition: fill .2s;
}
.author-head__social:hover path:first-child{
    fill: var(--accent);
}

.author-head__right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 64px;
    max-width: 736px;
    width: 100%;
}

.author-posts__title{
    display: block;
    max-width: 736px;
    width: 100%;
    margin-top: 80px;
    margin-left: auto;
    color: #2E363E;
}

@media(max-width: 1152px){
    .author-head{
        padding-top: 64px;
    }
    .author-head__left,
    .author-head__img {
        display: none;
    }
    .author-head__img--mob {
        display: block;
    }


    .author-head__right{
        max-width: 100%;
    }
    .author-head__info-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 48px;
    }
    .author-head__title{
        margin-bottom: 32px;
    }
    .author-posts__title{
        max-width: 100%;
    }
}


@media(max-width: 767px){
    .author-head__head{
        margin-top: 10px;
    }
    .author-head .page-center{
        max-width: 480px;
    }
    .author-head__info-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .author-head__socials{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }