/* -------------------------------------------- */
/*                                              */
/*              Authors archive                 */
/*                                              */
/* -------------------------------------------- */
.authors-archive .mp-breadcrumbs{
    background-color: #F6F4F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
.authors-archive .mp-breadcrumbs a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
}
.authors-archive .authors-content{
    padding: 30px var(--default-padding);
}
.authors-archive .authors-title{
    margin: 40px 0 60px 0;
    text-align: center;
}
.authors-archive .authors-lists{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 50px;
    padding: 0 20px;
    row-gap: 50px;
}
.authors-author-holder{
    position: relative;
    top: 0;
    left: 0;
    height: 400px;
}
.authors-author {
    box-shadow: 0 0 5px #c9c9c9;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}
.authors-author .author-profile > a{
    color: #000;
    display: block;
    text-decoration: none;
}
.author-profile img{
    width: 150px;
    height: 150px;
    border-radius: 200px;
    object-fit: cover;
}
.author-latest {
    height: 0;
    overflow: hidden;
    transition: 0.3s all ease-out;
    margin-top: 20px;
}
.authors-author:hover .author-latest{
    height: 210px;
}
.author-posts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}
.author-posts img{
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.author-posts a{
    color: #000;
    text-decoration: none;
}
.author-posts h3{
    font-size: 15px;
}

/* -------------------------------------------- */
/*                                              */
/*                Author page                   */
/*                                              */
/* -------------------------------------------- */
.author .mp-breadcrumbs{
    background-color: #F6F4F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
.author .mp-breadcrumbs a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
}
.author-holder{
    display: flex;
    margin-top: 20px;
    padding: 30px var(--default-padding);
}
.author .sidebar{
    width: 30%;
    display: flex;
    justify-content: center;
}
.author .sidebar-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.author .sidebar-content img{
    object-fit: cover;
    border-radius: 200px;
}
.author .author-name{
    margin: 0;
}
.author .sidebar-follow{
    margin-top: 30px;
    width: 100%;
}
.author .sidebar-follow .follow-title{
    font-weight: 800;
    font-size: 20px;
}
.author .sidebar-follow ul{
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}
.author .sidebar-follow ul li{
    margin-bottom: 10px;
}
.author .sidebar-follow ul li a{
    text-decoration: none;
    color: #000;
}
.author .author-content{
    width: 70%;
}
.author .author-about{
    margin-bottom: 20px;
}
.author .author-articles{
    margin-top: 40px;
}
.author .author-posts{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 300px));
    column-gap: 40px;
    row-gap: 40px;
}
.author .author-posts .author-post{
    text-decoration: none;
    color: #000;
}
.author .author-posts .author-post img{
    width: 300px;
    height: 200px;
    object-fit: cover;
}
.author .author-posts .author-post h2{
    margin: 0;
}


@media screen and (max-width: 768px){
    .authors-archive .authors-lists{
        grid-template-columns: 1fr;
    }
    
    
    .author-holder{
        flex-direction: column;
    }
    .author .author-posts{
        grid-template-columns: 1fr;
    }
    .author .sidebar{
        width: 100%;   
    }
    .author .author-content{
        width: 100%;
        margin-top: 40px;
    }
}