﻿.viewcat-page h1{
    font-size: 22px;
    color: #273b95;
    text-transform: uppercase;
}

.viewcat-page-item{
    position: relative;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.viewcat-page-item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.viewcat-page-content{
    padding: 20px 15px 10px;
}

.viewcat-page-content .publtime{
    margin: 2px 0 5px;
    font-size: 15px;
}

.viewcat-page-item h2{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
}

.viewcat-page-content .publtime p{
    margin-bottom: 0;
    font-size: 15px;
}

.news-detail h1{
    font-size: 22px;
    color: #d51b2d;
    line-height: 38px;
    margin-bottom: 5px;
}

.news-detail .post-time{
    display: block;
    margin-bottom: 10px;
}

.news-detail img{
    max-width: 100%;
    height: auto;
}

.RelatedPosts .heading{
    margin: 30px 0 20px;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    background-color: #2869970d;
    border-left: 3px solid #0675b0;
    padding-left: 15px;
}

.RelatedPosts ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 14px;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.RelatedPosts ul li {
    position: relative;
    list-style: none;
}

.RelatedPosts .lk_image {
    float: left;
    margin-right: 10px;
}

.RelatedPosts .lk_image img {
    width: 110px;
    height: 75px;
    border-radius: 6px;
    object-fit: cover;
}

.RelatedPosts .lk_description h3{
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.RelatedPosts .lk_meta span {
    display: inline-block;
    font-size: 13px;
    margin-right: 5px;
    color: #999;
}

.rating,
.socialbutton{
    width: 50%;
}

@media (max-width: 767.98px) {
    .RelatedPosts ul{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .rating,
    .socialbutton{
        width: 100%;
    }
}