/* Author Box Plugin Styles */

.abp-author-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin:30px 0 10px;
    padding:20px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    background:#ffffff;
    box-shadow:0 4px 14px rgba(0,0,0,0.05);
}

.abp-avatar img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #f1f5f9;
}

.abp-content{
    flex:1;
}

.abp-name{
    margin:0 0 8px;
    font-size:22px;
    line-height:1.3;
    font-weight:700;
}

.abp-name a{
    text-decoration:none;
    color:#111827;
}

.abp-name a:hover{
    color:#2563eb;
}

.abp-bio{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:#4b5563;
}

/* Mobile Responsive */
@media (max-width:768px){

    .abp-author-box{
        flex-direction:column;
        text-align:center;
        padding:18px;
    }

    .abp-avatar{
        width:100%;
    }

    .abp-avatar img{
        margin:0 auto;
    }

    .abp-name{
        font-size:20px;
    }

    .abp-bio{
        font-size:14px;
    }
}