.news-main {
    position: relative;
    padding: 60px 0;
    margin-top: 60px;
    /* Background image */
    background: url('../images/slide-1.jpg') no-repeat center center;
    background-size: cover;
}

/* Dark overlay */
.news-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

/* Keep content above overlay */
.news-main .container {
    position: relative;
    z-index: 2;
}

.n-box {
    background: #fdfde9;
    border-radius: 4px;
    overflow: hidden;
	min-height: 420px;
}

/* Header bar */
.heading {
    background: #002855;
    padding: 14px 10px;
}

.heading h1 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scrollable list */
.news-list,
.achive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 280px;
    overflow-y: scroll;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #002147 #ffffeb;
}

/* Chrome, Edge, Safari */
.news-list::-webkit-scrollbar,
.achive-list::-webkit-scrollbar {
    width: 6px;
}

.news-list::-webkit-scrollbar-track,
.achive-list::-webkit-scrollbar-track {
    background: #ffffeb;
}

.news-list::-webkit-scrollbar-thumb,
.achive-list::-webkit-scrollbar-thumb {
    background-color: #002147;
    border-radius: 10px;
}

.news-list::-webkit-scrollbar-thumb:hover,
.achive-list::-webkit-scrollbar-thumb:hover {
    background-color: #001a3a;
}

/* List row */
.news-list li,
.achive-list li {
    display: table;
    width: 100%;
    border-bottom: 1px solid #e5dab9;
padding-left: 10px;
}

/* Date column */
.date {
    display: table-cell;
    width: 120px;
    background: #662829;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 8px;
    vertical-align: middle;
}

/* Content column */
.content {
    display: table-cell;
    padding: 12px 15px;
    vertical-align: middle;
    font-size: 15px;
    color: #222;
}

/* Read more link */
.content a {
    color: #b22222;
    font-weight: 400;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Bottom button */
.click {
    background: #002855;
    color: #fff;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 400;
    margin: 18px 0 22px;
}

.click:hover {
    background: #001a3a;
    color: #fff;
}