.news-items {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
}

.news-items .sticky-news {
    grid-column: auto;
}

.news-item {
    position: relative;
    z-index: 0;
}

.news-item .theme-btn {
    z-index: 0;
}

.news-item .fill-link:before {
    z-index: 1;
}

.news-item .news-img-box {
    overflow: hidden;
}

.news-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease-in;
}

.news-item:hover img {
    transform: scale(1.2);
    transition: all .2s ease-in;
}
.news-item:hover {

    box-shadow: 0 12px 25px -6px rgba(0, 0, 0, .25);
}

.news-item .news-item-body {
    font-size: 1.125rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-item .news-item-body .section-subtitle {
    margin-bottom: 16px;
    font-weight: 700;
}

.news-item .news-item-body .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.news-item .news-item-body .section-title.smaller-title {
    font-size: 1.5rem;
}

.news-item .news-item-body .key-facts {
    padding-top: 40px;
    margin-top: 35px;
    border-top: 1px solid;
}

.key-facts ul,
.key-facts ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.key-facts li {
    position: relative;
    padding-left: 1.5em;
}
.key-facts li + li {
    margin-top: 1rem;
}
.key-facts li:before {
    content: "\f00c";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    width: 1.75em;
    height: 1.75em;
    border-radius: 50%;
    text-align: center;
    line-height: 1.75;
    background: var(--bs-primary);
    color:  var(--button-color);
    font-size: .65em;
    position: absolute;
    top: .25em;
    left: 0;
}

.sticky-news .news-img-box {
    max-width: 100%;
}



@media (min-width:992px) {
    .news-items{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .news-items .sticky-news {
        grid-column: 1 / 4;
    }
}



.fill-link:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}


.MarkupPagerNav {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
    text-align: right;
}

.MarkupPagerNav li {
    display: inline-block;
}


.MarkupPagerNav li a {
    padding: .5em;
}
li.MarkupPagerNavOn a {
    color: var(--bs-body-color);
}

.blog-text h2,
.blog-text .h2,
.blog-text h3,
.blog-text .h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}