/*==========================================================
ARTICLE AUTHOR
==========================================================*/

.tpc-author-box{

    max-width:900px;
    margin:60px auto 80px;

    display:flex;
    align-items:center;
    gap:30px;

    padding:34px 38px;

    background:#ffffff;

    border:1px solid #e6edf2;

    border-radius:24px;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

}

.tpc-author-avatar{

    width:78px;
    height:78px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    font-size:34px;

}

.tpc-author-content{

    flex:1;

}

.tpc-author-label{

    display:inline-block;

    margin-bottom:10px;

    color:#16a34a;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.tpc-author-content h3{

    margin:0 0 14px;

    font-size:38px;

    line-height:1.2;

    color:#182235;

}

.tpc-author-content p{

    margin:0;

    font-size:18px;

    line-height:1.8;

    color:#5d6f82;

    max-width:700px;

}

@media (max-width:768px){

    .tpc-author-box{

        flex-direction:column;

        text-align:center;

        padding:28px 24px;

        gap:22px;

        margin:50px auto;

    }

    .tpc-author-content h3{

        font-size:28px;

    }

    .tpc-author-content p{

        font-size:16px;

        line-height:1.8;

    }

    .tpc-author-avatar{

        width:70px;
        height:70px;

        font-size:30px;

    }

}