/* section-single-author */
.section-single-author{
    padding: 150px 0 60px;
}
.section-single-author .container{
    max-width: 720px;
}
.section-single-author p.title{
    font-size: 12px;
    color: #535353;
    text-transform: uppercase;
    padding-left: 26px;
    background-image: url(../images/author/author-icon.svg);
    background-size: 16px;
    background-position: 0 50%;
    background-repeat: no-repeat;
    margin-bottom: 14px;
    font-family: "Geist Mono", monospace;
    font-weight: 500;
}
.section-single-author .about-author{
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 40px;
}
.section-single-author .about-author img{
    border-radius: 7px;
    aspect-ratio: 16 / 25;
    object-fit: cover;
}
.section-single-author .about-author .content{
    width: calc(100% - 190px);
}
.section-single-author .about-author h1{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}
.section-single-author .about-author .position{
    font-size: 14px;
    color: #8B8F97;
    margin-bottom: 20px;
}
.section-single-author .about-author .description-author{
    margin-top: 20px;
}
.section-single-author .about-author .description-author ol,
.section-single-author .about-author .description-author ul{
    padding-left: 20px;
    margin-bottom: 16px;
}
.section-single-author .about-author .description-author ul li{
    list-style: disc;
}
.section-single-author .about-author .description-author ol li{
    list-style: decimal;
}
.section-single-author .about-author .description-author li,
.section-single-author .about-author .description-author p{
    font-size: 16px;
    font-weight: 300;
    color: #8B8F97;
    line-height: 1.5;
    margin-bottom: 16px;
}
.section-single-author .about-author .description-author li:last-child,
.section-single-author .about-author .description-author p:last-child{
    margin-bottom: 0;
}   

.author-posts{
    padding: 40px 0;
    border-top: 1px solid #232325;
}
.author-posts h2{
    font-size: 16px;
    font-family: "Geist Mono", monospace;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin-bottom: 40px;
}
.author-posts ul{
    padding-left: 20px;
}
.author-posts ul li{
    list-style: disc;
    font-size: 18px;
    color: #8B8F97;
    line-height: 1.44;
    margin-bottom: 16px;
}
.author-posts ul li a{
    color: #8B8F97;
    text-decoration: underline;
    display: inline;
}
.author-posts ul li a:hover{
    color: #fff;
}
@media screen and (max-width: 991px){
    .section-single-author{
        padding: 100px 0 60px;
    }
}
@media screen and (max-width: 767px){
    .author-posts ul li{
        font-size: 16px;
    }
}
@media screen and (max-width: 479px){
    .section-single-author .about-author{
        flex-wrap: wrap;
    }
    .section-single-author .about-author img{
        width: 160px;
    }
    .section-single-author .about-author .content{
        width: 100%;
    }
    .section-single-author .about-author .description-author li,
    .section-single-author .about-author .description-author p{
        font-size: 14px;
    }
}
/* -- section-single-author */