.news .main-container .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-post-item {
    margin-bottom: 55px;
}

.blog-post-item .hover-images {
    width: 100%;
}

.blog-post-item .post-metas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 15px;
    margin-top: 0;
    border-top: 0;
}

.blog-post-item .post-metas .post-date {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.blog-post-item .post-metas .post-comments-number {
    padding: 1px 5px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-indent: 1px;
    text-transform: uppercase;
    background: #ff4e4e;
    border-radius: 4px;
}

.blog-post-item .post-metas .post-comments-number:before {
    border-color: transparent transparent transparent #ff4e4e;
    border-width: 7px;
    bottom: -7px;
    left: 0;
}

.blog-post-item .blog-post-info {
    margin-top: 15px;
}

.blog-post-item .post-name a {
    font-size: 1.25rem;
    line-height: 1.3;
}

.nav-button {
    margin-top: 30px;
}

.nav-button .btn-loadmore {
    width: 160px;
    height: 45px;
    line-height: 45px;
    border-radius: 25px;
}

.nav-button .btn-loadmore:hover,
.nav-button .btn-loadmore:active,
.nav-button .btn-loadmore:focus {
    color: #fff;
    background-color: var(--minor-color);
}

.news-page .blog-post-item .post-date {
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.news-page .blog-post-item .post-name {
    font-size: 1.8rem;
    line-height: 1.3;
}

.news-page .blog-post-item .post-name {
    padding-bottom: 35px;
    border-bottom: 1px solid #efefef;
}

.news-page .post-link {
    padding: 30px 0 0;
    border-bottom: none;
}

.news-page .post-link .nav-next a,
.news-page .post-link .nav-previous a {
    display: block;
    padding: 20px 0 0;
    font-family: 'Playfair Display', 'Noto Serif TC';
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: #222;
}

.news-page .post-link a:hover {
    color: var(--minor-color);
}

.news-page .post-link .nav-previous a:before,
.news-page .post-link .nav-next a:after {
    content: '\f060';
    font-family: 'Font Awesome 5 Pro';
    font-size: 1rem;
    font-weight: 300;
    margin-right: 8px;
    color: #000;
    transition: .2s;
    background: unset;
    top: unset;
    left: unset;
    width: auto;
    height: auto;
}

.news-page .post-link .nav-next a:after {
    content: '\f061';
    margin-left: 8px;
}

.news-page .share-block {
    margin-top: 40px;
    margin-bottom: 10px;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .blog-post-item {
        margin-bottom: 40px;
    }
    
    .nav-button {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .col-xs-6.item {
        width: 100%;
    }
}

