/**
 * ==========================================================================
 * MultiPress Enterprise Author Page
 * ==========================================================================
 */

.author-hero{
    display:flex;
    align-items:center;
    gap:40px;
    padding:20px 0;
}

.author-avatar img{
    width:180px;
    height:180px;
    border-radius:50%;
    border:6px solid rgba(255,255,255,.15);
    object-fit:cover;
    box-shadow:0 10px 35px rgba(0,0,0,.25);
}

.author-details{
    flex:1;
}

.author-details .category-title{
    margin-bottom:15px;
}

.author-details .category-description{
    max-width:760px;
    line-height:1.9;
    margin-bottom:25px;
}

.author-details .category-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.author-details .category-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.12);
    color:#fff;
}

@media(max-width:768px){

.author-hero{
    flex-direction:column;
    text-align:center;
}

.author-avatar img{
    width:140px;
    height:140px;
}

.author-details .category-meta{
    justify-content:center;
}

}
