/*=========================================
ABOUT AUTHOR
==========================================*/

.about-author{

    padding:140px 8%;

    background:#faf8f4;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    display:block;

    border-radius:12px;

    box-shadow:0 35px 80px rgba(0,0,0,.15);

}

.about-image::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border:3px solid #D4AF37;

    top:25px;

    left:25px;

    z-index:-1;

    border-radius:12px;

}

.about-content h2{

    font-size:58px;

    font-family:'Playfair Display',serif;

    color:#0D1B2A;

    margin:20px 0;

}

.about-content p{

    font-size:18px;

    line-height:2;

    color:#666;

    margin-bottom:40px;

}

.author-achievements{

    display:flex;

    gap:60px;

    margin-bottom:45px;

}

.author-achievements h3{

    font-size:46px;

    color:#D4AF37;

}

.author-achievements span{

    color:#666;

    font-size:15px;

}

.about-buttons{

    display:flex;

    gap:20px;

}