.newsCon{
        background-color: var(--white);

}
/*.news-list-wrap {*/
/*        padding:50px 0px;*/
/*}*/

.news-list-wrap ul{
        border-top: solid 1px var(--grey);
    border-bottom: solid 1px var(--grey);
}
.news-list-wrap ul li {
    padding: 20px;
    border-bottom: solid 1px var(--grey);
    position: relative;
}
.news-list-wrap ul li:last-child {
    padding: 20px;
    border-bottom: solid 0px var(--grey);
    position: relative;
}
.news-list-wrap ul li time {
    font-size: 14px;
    color: var(--grey);
}
.news-list-wrap ul li h3{
    margin: 0;
}

.pagination {
    display: flex;
    overflow: scroll;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.pagination a {
    display: block;
    margin: 0 3px;
    padding: 5px 10px;
    border: solid 1px #555555;
    cursor: pointer;
}
.current-page{
     display: block;
    background-color: #555555;
    border: solid 1px #555555;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-details-wrap{
    border: 1px solid var(--light-grey);
    padding: 20px;
    margin-bottom: 20px;
}
.news-details-wrap time{
    font-size: 12px;
    color:var(--grey)
}
.news-details-wrap > div> span{
    font-size: 12px;
    color:var(--grey);
    color:black;
    background-color: var(--light-grey);
    padding: 3px 10px;
    margin-left: 8px;
}

.news-details-wrap h3{
    border-bottom: 1px solid var(--light-grey);
    padding-bottom: 10px;
    font-weight: bold;
}

.news-return{
   padding-bottom: 30px;
}