.news .search {
    padding: 70px 0px;
}

.news .title {
    font-weight: 400;
    font-size: 28px;
}

.news .search .form-control ,.news .search .input-group-prepend {
    font-family: Hurme;
    border-bottom: 1px solid #5E5A5A;
    border-radius: 0px;
}

.news .search .input-group-text {
    border-radius: 0px;
    border: none;
    background-color: transparent;
    padding-left: 0px;
    padding-right: 0px;
}

.news .search .btn-primary {
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 0px;
    background-color: #F8C12C;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border: none;

}

.news .search .btn-primary {
    color: #fff;
}

.news .news-list .card .card-body .card-title {
    font-weight: 700;
    font-size: 18px;
    color: #000;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.news .news-list .card .card-body .card-text {
    font-weight: 400;
    font-size: 13px;
    color: #474545;

    /* limit lines */
    /*  */

    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 4; /* number of lines to show */
           line-clamp: 4; 
   -webkit-box-orient: vertical;
}

.news .news-list .card {
    border-radius: 0px;
}

.news .news-list .card .new-image {
    height: 200px;

    background-position: center;
    background-size: cover;
}

.news .news-list .card .new-image .published-date {
    padding: 1rem 2rem;
    background-color: #F8C12C;
    text-align: center;
    width: fit-content;

}

.news .news-list .card .new-image .published-date span:first-child {
    font-size: 24px;
    font-weight: 700;
}

.news .news-list .card .new-image .published-date span:last-child {
    font-size: 13px;
    font-weight: 400;
}

.news .news-list .card .new-image img {
    border-radius: 0px;
    height: 100%;
}

.news .news-list .card .new-link {
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    transition: .7s;
}

.news .news-list .card .new-link:hover {
    color: #F8C12C;
}

.news .news-list .card .new-link:hover .chevron-right {
    border-color: #F8C12C;
}

.news .news-list .card .new-link span:first-child{
    line-height: 26px;
}

.news .news-list .card .new-link span:last-child{
    border-radius: 50%;
    border: 1px solid #474545;
    margin-left: 1rem;
    transition: .7s;
}

.news .news-list .card .card-body {
    border-bottom: 5px solid #F8C12C;
}

.news .pagination-nav {
    display: flex;
    margin-bottom: 1.5rem;
}

.news .pagination-nav .pagination {
    margin: auto;
}

.news .pagination-nav .pagination .page-item a {
    border-radius: 0px;
}

.news .pagination-nav .pagination .page-item .page-link {
    color: #1E1E1E;
    font-weight: 400;
    font-size: 14px;

    border-bottom: 2px solid #000;
    margin: 0px 1rem;
    transition: .7s;
}

.news .pagination-nav .pagination .page-item.active .page-link {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
}