.custom-author-box { 
    display:flex; 
    gap:24px; 
    padding:28px; 
    margin-top:48px; 
    border:1px solid #e2e2e2; 
    border-radius:12px; 
    background:#f8f9fa; 
    align-items:flex-start; 
}

.custom-author-box .author-box-image { 
    flex-shrink:0; 
} 

.custom-author-box .author-box-avatar { 
    width:100px; 
    height:100px; 
    border-radius:50%; 
    object-fit:cover; 
    border:3px solid #fff; 
    box-shadow:0 2px 8px rgba(0,0,0,0.1); 
} 

.custom-author-box .author-box-info { 
    flex:1; 
} 

.custom-author-box .author-box-name { 
    margin:0 0 10px; 
    font-size:1.2em; 
} 

.custom-author-box .author-box-name a { 
    text-decoration:none; 
    color:#1a1a1a; 
} 

.custom-author-box .author-box-name a:hover { 
    color:#0073aa; 
} 

.custom-author-box .author-box-bio { 
    font-size:0.95em; 
    line-height:1.7; 
    color:#444; 
    margin-bottom:12px; 
} 

.custom-author-box .author-box-link { 
    font-size:0.9em; 
    font-weight:600; 
    color:#0073aa; 
    text-decoration:none; 
}

.custom-author-box .author-box-link:hover { 
    color:#005177; 
} 

.author-page-header { 
    display:flex; 
    gap:30px; 
    padding:32px; 
    margin-bottom:40px; 
    border:1px solid #e2e2e2; 
    border-radius:12px; 
    background:#f8f9fa; 
    align-items:flex-start; 
} 

.author-page-image { 
    flex-shrink:0; 
} 

.author-page-avatar { 
    width:180px; 
    height:180px; 
    border-radius:50%; 
    object-fit:cover; 
    border:3px solid #fff; 
    box-shadow:0 2px 8px rgba(0,0,0,0.1); 
} 

.author-page-info { 
    flex:1; 
} 

.author-page-name { 
    margin:0 0 16px; 
    font-size:1.6em; 
} 

.author-page-bio { 
    font-size:1em; 
    line-height:1.8; 
    color:#444; 
} 


@media (max-width:600px) { 
    
.custom-author-box, .author-page-header { 
    flex-direction:column; 
    align-items:center; 
    text-align:center; 
} 

}
