/* Author page */
.author-page.header-container {
    display: flex;
    align-items: center;
}
.author-page .featured-image {
    max-width: 180px;
    border-radius: 999px;
    border: solid 5px #fff;
    overflow: hidden;
}
.author-page .title-excerpt {
    padding-left: 50px;
}
.author-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.author-socials > div {
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 10px;
    margin-top: 40px;
    min-width: 300px;
    max-width: 33.33333%;
}
.author-socials > div:first-of-type {
    padding-left: 0;
}
.author-socials > div:last-of-type {
    padding-right: 0;
}
.author-socials .inner {
    background: #2f3148;
    border-radius: 99px;
    padding: 15px;
}
.author-socials .inner img {
    margin-right: 10px;
}
h2.author-news {
    text-align: center;
    margin-top: 1em;
    font-size: 35px;
}
@media (max-width: 991px) {
    .author-socials > div {
        width: 100%;
        margin-top: 15px;
        padding: 0;
        max-width: none;
        flex-basis: auto;
        flex-grow: 0;
    }
}
@media (max-width: 565px) {
    .author-page.header-container {
        flex-direction: column;
        text-align: center;
    }
    .author-page .title-excerpt {
        padding: 0 30px;
    }
}