.author-header {
    padding: 60px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.author-content {
    display: flex;
    max-width: min(var(--site-width), 1000px);
    gap: 40px;
    color: #f5f5f5
}

.author-avatar img {
    border-radius: 10px
}

.author-info {
    margin: auto
}

.author-info .author-name {
    color: inherit;
    margin: 0;
}

.author-info .author-bio {
    width: 75%;
    line-height: 1.4;
    margin: 8px 0 20px
}

.author-content a {
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease-in
}

.author-content a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.social-links {
    display: flex;
    gap: 10px
}

@media (max-width:768px){
    .author-post-count {
        margin-left: 20px
    }
}

@media (max-width:480px){
    .author-header {
        padding: 20px;
    }
    .author-content {
        flex-direction: column;
    }

    .author-info .author-bio {
        width: 100%
    }

    .author-avatar img.avatar.photo {
        width: 100%;
        height: auto;
    }
    
}