/* Author CSS */
.loader {
    width: 32px;
    height: 32px;
    border: 3px solid #000;
    border-bottom-color: #c8a76c;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    display: none;
    margin: 0 auto;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
.author_page{
    background-color: #fff;
}
.author_page .author_seprator{
    height: 5px;
}
.author_page #archive-container .archive_author_blogs{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    row-gap: 30px;
    column-gap: 20px;
    position: relative;
}
.author_page #archive-container{
    margin: 40px 0px 0px;
}

.archive_author_blogs .entry.loop-entry{
    /* padding: 0px 15px; */
    /* border-right: 1px solid #e3e3e3; */
    border-radius: 0px;
    box-shadow: none;
}
.author_page.content-area{
    margin-top: 0rem;
    margin-bottom: 0rem;
    padding: 3.75rem 0px;
}
.archive_author_blogs article .entry-header {
    margin-bottom: 5px;
}
.archive_author_blogs article h2 a{
    color: #000000;
}
.archive_author_blogs article h2 a:hover{
    color: #3c3f42;
}
.archive_author_blogs article .entry-taxonomies a {
    /* font-size: 0.625rem; */
    font-size: 0.68rem;
    line-height: 0.813rem;
    font-family: 'Arial';
    text-decoration: none;
    text-transform: uppercase;
    font-weight: normal;
    /* letter-spacing: 0.1rem; */
}
.archive_author_blogs article .entry-content-wrap {
    padding: 1rem 0rem 0rem;
}
.archive_author_blogs article .entry-taxonomies{
    margin-bottom: 0rem;
}
.author-header .author-info{
    display: grid;
    justify-content: center;
    margin-bottom: 20px;
}
.archive_author_blogs .entry-header h2,.archive_author_blogs .entry-header h3{
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.188rem;
}
.author-header .author-info .author_img img{
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #000;
}
.author-header .author-info .author-name{
    margin-bottom: 10px;
}
.author-header .author-info h2{
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    line-height: 1.1rem;
}
.author-header .author-otherinfo{
    width: 85%;
    margin: 40px auto 30px;
}

.author-header .author-otherinfo h4{
    padding-bottom: 16px;
    padding-top: 16px;
}
.author-header .author-otherinfo .author_social{
    display: inline-grid;
}
.author-header .author-otherinfo .author_social p{
    border-bottom: 1px solid #e3e3e3;
    margin: 0px;
    padding: 10px 20px 12px 0px;
}
.author-header .author-otherinfo .author_email{
    margin-bottom: 0px;
}
.author_stories_title{
    font-family: 'arial';
    margin-bottom: 10px;
    color: #c2272d;
    font-size: 0.87rem;
    line-height: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}
.author_page #archive-container .archive_author_blogs article{
    position: relative;
}
/* .author_page #archive-container .archive_author_blogs article:first-child{
    padding-left: 0;
}
.author_page #archive-container .archive_author_blogs article:nth-child(5n+1){
    padding-left: 0;
}
.author_page #archive-container .archive_author_blogs article:nth-child(5n){
    padding-right: 0;
    border-right: 0px;
}
.author_page #archive-container .archive_author_blogs article:last-child{
    padding-right: 0;
    border-right: 0px;
} */



.author_page #archive-container .archive_author_blogs article::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 10px);
    width: 1px;
    background: #efefef;
    pointer-events: none;
}
.author_page #archive-container .archive_author_blogs article:nth-child(5n)::after{
    display: none;
}
.author_page #archive-container .archive_author_blogs article:last-child::after{
    display: none;
}

@media only screen and (max-width:768px){
    .author_page #archive-container .archive_author_blogs{
        grid-template-columns:1fr;
        gap: 16px;
    }
    .archive_author_blogs .entry.loop-entry{
        padding: 0;
        border-right: 0px;
    }
    .author-header .author-otherinfo{
        width: 100%;
    }
    .author_page #archive-container{
        margin-bottom: 0px;
    }
    .author_page #archive-container .archive_author_blogs article::after {
        display: none;
    }
}




