.author-bio {
    margin-bottom: 30px;
    margin-top: 50px;
    text-align: -webkit-center;
}
.author-bio .author-title {
    margin-top: 10px;
}

/* Center the avatar */
.author-bio__info {
    text-align: -webkit-center;
    text-align: center;
    max-width: 700px;
}
.author-bio .icons {
    float: none!important;
    padding: 2px;
    margin-bottom: 0;
}
.author-bio .icons li {
    margin: 0px 12px 10px 12px!important;
}
/* Remove the margin from the avatar and round it */
.author-bio img {
    margin: 0!important;
    border-radius: 50%;
}
.author-bio .author-description {
    text-align: left;
}
#oht_author_content_wrapper .navigation.pagination {
    margin-bottom: 20px;
}

/* #oht_author_content_wrapper .author_post_img_link {
    height:200px;
    width: 100%;
} */

#oht_author_content_wrapper .post__thumbnail {
    height: 100%;
}
#oht_author_content_wrapper .author_post_img_src {
    height: 300px;
    width: 300px;
    object-fit: cover;
    object-position: top;
}
#oht_author_content_wrapper .author_post_excerpt {
    margin-top: 4px;
    font-size: 14px;
}
#oht_author_content_wrapper .author_post_title{
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.3em;
}
#oht_author_content_wrapper .post_author_info {
    margin:0;
}

#oht_author_content_wrapper .post_extras_container{
    /* flex-grow: 1;  */
    padding-left: 20px; 
    max-height: fit-content;
    /* place-self: center; */
}
#oht_author_content_wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

#oht_author_content_wrapper .author-page {
    width: calc(100% - 300px);
    padding-right: 2em
}

#oht_author_content_wrapper .author_latest_articles {
    margin-top: 0px;
    font-size: 1em;
}

/* #oht_author_content_wrapper .author-latest-post {
    display: flex;
    align-items: flex-start;
    margin-top: 60px;
    margin-bottom: 30px;
} */
#oht_author_content_wrapper .author-latest-post{
	display: grid;
    margin-top: 60px;
    margin-bottom: 30px;
    grid-template-columns: 300px auto;
    column-gap:15px;
}

#oht_author_content_wrapper .read-more-button {
    white-space: nowrap;
}


@media (max-width: 865px) {
    
   
    #oht_author_content_wrapper .post_author_info {
        font-size: 14px;
    }
    /* #oht_author_content_wrapper .author_post_title {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    } */

	#oht_author_content_wrapper .author-latest-post {
	    grid-template-columns: auto;
	    align-items: center;
	    justify-content: center;
	}

    #oht_author_content_wrapper .post__thumbnail {
        background-size: unset;
        background-position: center;
    }
    #oht_author_content_wrapper .author-page {
        width:100%;
        padding: 0;
        margin: 0
    }
    #oht_author_content_wrapper .author_post_img_src{
        width: 100%;
        height: auto;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    #oht_author_content_wrapper .post__thumbnail {
        width: 100%;
    }
    #oht_author_content_wrapper .post_extras_container {
        max-width: 100%;
        padding: 14px;
    }
    #oht_author_content_wrapper .content__sidebar{
        margin-left: auto;
        margin-right: auto;
        min-width:50%
    }

}


/*PARTIALS*/
.oht_author_image_outer  {
    display: grid;
    grid-template-columns: max-content auto;
    /* grid-template-rows: auto auto; */
    column-gap: 10px;
    grid-auto-flow: row;
    grid-template-areas:
        "oht_author_image oht_author_link"
        "oht_author_image oht_article_date";
    align-content: baseline;
}

.oht_article_single_top a {
    color: darkblue;
}
.oht_author_image {
    grid-area: oht_author_image;
}

.oht_author_link {
    grid-area: oht_author_link;
    align-items: center;
    display: grid;
}

.oht-meta-inline > .oht_author_link {
    display: inline;
}
.oht-meta-inline > .oht_author_image_outer {
    display: inline-grid;
    vertical-align: middle;
}

.oht_article_date {
    grid-area: oht_article_date;
}

.oht_author_image > a > img {
    border-radius: 50%;
}