.kpab-author-box{
display:flex;
gap:20px;
align-items:center;
padding:20px;
margin-top:30px;
border:1px solid #ddd;
border-radius:12px;
background:#fff;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.kpab-avatar img{
border-radius:50%;
width:90px;
height:90px;
}

.kpab-content{
flex:1;
}

.kpab-content h3{
margin:0 0 8px;
font-size:22px;
}

.kpab-content p{
margin:8px 0;
line-height:1.6;
}

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

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

@media(max-width:768px){

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

}