.oi-author-box{
    margin-top: 20px;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 20px;
    display: flex;
}
.oi-author-box .oi-author-avatar{
    width: 200px;
    margin: auto;
    text-align: center;
}
.oi-author-box .oi-author-avatar img{
    border-radius: 50%;
    max-width: 111px;
    height: auto;
}
.oi-author-box .oi-author-info{
    width: 100%;
    padding-left: 20px;
    overflow: hidden;
}
.oi-author-box .oi-author-info .oi-author-name{
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
}
.oi-author-box .oi-author-info .oi-author-name a{
    color: #000;
}
.oi-author-box .oi-author-info .oi-author-description{
    margin: 5px 0 10px;
    word-wrap: break-word;
}
/* Author page */
.oi-author-page-container{
    max-width: 1180px;
    padding: 30px 20px;
    margin: 0 auto;
}
.category-news .list-news {
    background: #fff;
    padding: 10px;
    padding-left: 0px;
    margin-bottom: 20px;
    display: flex;
}

.category-news .list-news .box-image-left{
    width: 200px;
}

.category-news .list-news .box-meta-right{
    width: 100%;
    padding-left: 20px;
}

.category-news .list-news img {
    width: 200px;
    float: left;
    margin-right: 10px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #f1f1f1;
    padding: 1px
}
.category-news .list-news img:hover {
    opacity: .8
}

.category-news .list-news h4 a {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #000;
}

.category-news .list-news h4 a:hover {
    color: #ff9800
}

.category-news .list-news .meta {
    margin: 5px 0px
}

.category-news .list-news .meta span {
    display: inline-block;
    margin-right: 20px;
    color: #888;
    font-size: 13px
}

.category-news .list-news p {
    text-align: justify;
    margin-bottom: 10px
}

.category-news .list-news .more a {
    display: inline-block;
    padding: 5px 24px;
    background: #000;
    color: #fff;
    border-radius: 2px
}

.category-news .list-news .more a:hover {
    background: #ff9800
}

.page-numbers.nav-pagination{
    display: inline-block;
    list-style: none;
    padding: 0px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}
.page-numbers.nav-pagination li{
    margin: 5px 8px;
}
.page-numbers.nav-pagination li a{
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-decoration: none;
}

@media only screen and (max-width: 768px){
    .oi-author-box{
        flex-wrap: wrap;
    }
    .oi-author-box .oi-author-avatar{
        width: 100%;
        margin-bottom: 20px;
    }
    .oi-author-box .oi-author-info{
        width: 100%;
        padding-left: 0px;
    }
    .oi-author-box .oi-author-info .oi-author-name{
        text-align: center;
        width: 100%;
    }

    .category-news .list-news {
        flex-wrap: wrap;
    }
    
    .category-news .list-news .box-image-left{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .category-news .list-news .box-meta-right{
        padding-left: 0px;
    }
}