.news-date {
    display:flex;
    align-items:center;
    gap:8px;
    color:#6f6f6f;
    font-size:15px;
}
.news-date i {
    font-size:16px;
    color:#111;
}

.btn-read-more{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    text-decoration: none;
    transition: all .2s ease;
    color:#2D6284;
    border: 1px solid #2D6284 !important;
    border-radius: 999px;
    padding: 10px 18px;
}

.btn-read-more:hover,
.btn-read-more:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(2,6,23,.12);
    background:#2D6284;
    color:#fff;
}

.news-page .news-featured{
    padding: 10px 0;
}

.news-page .news-meta{
    color: #8a8a8a;
    font-size: 13px;
}

.news-page .news-title{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px 0;
}

.news-page .news-title a{
    color: #111;
    text-decoration: none;
}

.news-page .news-title a:hover{
    text-decoration: underline;
}

.news-page .news-excerpt{
    color: #6f6f6f;
    font-size: 15px;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.news-featured-img{
    display:block;
    width:100%;
    height:100%;
    border-radius: 10px;
    overflow:hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.news-featured-img img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
}

.news-date-sm{
    color:#8a8a8a;
    font-size: 12px;
    margin-bottom: 6px;
}