.author-header {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info {
    width: var(--site-width);
    color: white
}

.author-info .author-name {
    color: inherit;
    margin: 0
}

.author-info .author-bio {
    width: 60%;
    line-height: 1.4;
}

.author-info a {
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease-in
}

.author-info a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.author-post-count {
    margin-left: 30px
}

@media (max-width:768px){
    .author-header {
        padding: 30px
    }
}

@media (max-width:480px) {
    .author-info .author-bio {
        width: 100%;
    }

    .author-post-count {
        margin-left: 15px
    }
}