.kpab-author-box{
display:flex;
gap:20px;
align-items:flex-start;
padding:20px;
margin:30px 0;
background:#fff;
border:1px solid #e5e5e5;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.kpab-avatar img{
width:100px;
height:100px;
border-radius:50%;
object-fit:cover;
border:3px solid #0b6efd;
}

.kpab-content{
flex:1;
}

.kpab-content h3{
margin:0 0 10px;
font-size:24px;
font-weight:700;
}

.kpab-content p{
margin:10px 0;
line-height:1.7;
color:#555;
}

.kpab-button{
display:inline-block;
margin-top:15px;
padding:10px 18px;
background:#0b6efd;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.kpab-button:hover{
background:#084298;
color:#fff;
}

@media(max-width:768px){

.kpab-author-box{
display:block;
text-align:center;
}

.kpab-avatar{
margin-bottom:15px;
}

}