.author-header {
    padding: 60px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;            
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0,0,0,0.5)), var(--author-header-bg-image);
    background-size: cover;
    background-position: center;
}

.author-content {
    display: flex;
    max-width: min(var(--site-width), 1000px);
    gap: 40px;
    color: #f5f5f5;
    align-items: center
}

.author-avatar img {
    border-radius: 50%;
    border: double 10px white
}

.author-info {
    margin: auto
}

.author-info .author-name {
    color: inherit;
    margin: 0;
}

.author-info .author-bio {
    width: 75%;
    line-height: 1.4;
    margin: 20px 0 0 
}

.author-content .social-links a {
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease-out
}

.author-content .social-links a:hover {
    opacity: 1;
    transform: scale(1.2);
}

.social-links {
    display: flex;
    font-size: 14px;
    gap: 10px
}

.author-post-count {
    margin-left: 30px
}

@media (max-width:768px){

    .author-avatar img {
        width: 160px;
        height: auto
    }
}

@media (max-width:480px){
    .author-header {
        padding: 30px 20px;
    }
    .author-content {
        flex-direction: column;                
        align-items: flex-start;
        column-gap: 20px
    }

    .author-info .author-bio {
        width: 100%
    }

    .author-post-count {
        margin-left: 15px
    }    
}