.pagination {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em;
    flex-wrap: wrap;
}

.pagination::before {
    content: 'Go to page:';
    display: inline-block;
    position: absolute;
    top: 3em;
    left: 0px;
    font-weight: 600;
}

.pagination > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 40px;
    font-weight: 600;
    border: solid 1px var(--kbsb-dark);
    text-decoration: none;
    margin-top: 5em;
}

.pagination > a:hover {
    background-color: var(--kbsb-red);
    color: white;
    border: solid 1px var(--kbsb-red);
}

.pagination > a.active {
    background-color: var(--kbsb-red);
    color: white;
    border: solid 1px var(--kbsb-red);
    pointer-events: none;
}

.newsread-head {
    font-size: 1.8em;
}

h2.newsread-title {
    text-transform: uppercase;
    margin: 0;
    font-size: 2.2em;
    color: var(--kbsb-red);
}

h4.newsread-desc {
    font-weight: 400;
    font-style: italic;
    margin: 0 0 3em;
}

.news-reader {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5em;
}

.news-reader .news-content {
    text-align: justify;
    line-height: 1.5em;
}

.news-reader .news-meta {
    position: relative;
    padding: 1em 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1em;
    font-weight: 300;
}

.news-reader .news-meta > img {
    display: block;
    width: 100%;
    margin: 2em 0;
    border: solid 4px var(--kbsb-light);
}

    @media all and (max-width: 767px) {

        .news-reader {
            grid-template-columns: 1fr;
            gap: 2em;
        }

        .news-reader .news-meta {
            order: -1;
        }

    }