.news-archive-list-articles {
    padding: 20px 0 40px 0;
}

.news-archive-list-articles-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.news-archive-posts-listing {
    max-width: 840px;
    width: 100%;
}

.news-archive-posts-listing .pagination {
    padding: 0;
    margin: 32px 0;
    display: flex;
    align-items: center;
}

.news-archive-posts-listing .pagination .screen-reader-text {
    display: none;
}

.news-archive-posts-listing .pagination ul {
    list-style-type: none;
    padding: 0;
}

.news-archive-posts-listing .pagination ul li {
    display: inline-block;
}

.news-archive-posts-listing .pagination li > * {
    padding: 8px 16px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: var(--slate-grey);
    display: inline-block;
}

.news-archive-posts-listing .pagination li > .current {
    color: rgb(47, 47, 47);
    font-weight: bold;
    text-decoration: underline;
}

.news-archive-posts-listing .pagination li a:hover {
    text-decoration: underline;
}

.news-archive-posts-listing .pagination li:first-child a {
    padding-left: 0;
}

.news-archive-posts-listing .pagination li.active a {
    color: #2f2f2f;
    font-weight: bold;
    text-decoration: underline;
}

.news-archive-category {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.news-archive-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 27px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.13;
    letter-spacing: normal;
    margin: 0 0 16px 0;
}

.news-archive-date {
    font-family: 'Red Hat Display', serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    margin: 0;
}

article.featured-news-post {
    width: 100%;
    height: 475px;
    margin: 0 0 24px 0;
}

article.featured-news-post a {
    height: inherit;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

article.featured-news-post .news-archive-post-image {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 475px;
    margin: 0;
    z-index: 300;
    border-radius: var(--border-radius);
}

article.featured-news-post .news-archive-post-feature-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--border-radius);
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        var(--black)
    );
    z-index: 350;
}

article.featured-news-post .news-archive-post-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 400;
    padding: 25px;
}

article.featured-news-post  .news-archive-category,
article.featured-news-post  .news-archive-title {
    color: var(--white);
}

article.featured-news-post .news-archive-date {
    color: var(--brown-grey);
    margin: 0 0 24px 0;
}

article.featured-news-post .feature-news-post-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--white);
    border-radius: 50%;
    position: relative;
}

article.featured-news-post .feature-news-post-arrow svg {
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

article.news-archive-post {
    border-bottom: 1px solid var(--pale-sky-blue);
    width: 100%;
    padding: 24px 0;
}

article.news-archive-post:first-child {
    border-top: 1px solid var(--pale-sky-blue);
}

article.news-archive-post:last-child {
    border-bottom: none;
}

.news-archive-post-image {
    border-radius: var(--border-radius);
    width: 290px;
    height: 290px;
    object-fit: cover;
    margin: 0 0 16px 0;
}

.news-archive-post-category {
    color: var(--scarlet);
}

.news-archive-post-title {
    color: var(--charcoal-grey);
}

.news-archive-post-date {
    color: var(--slate-grey);
}

@media screen and (min-width: 768px) {
    .news-archive-list-articles {
        padding: 40px 0 80px 0;
    }

    .news-archive-list-articles-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .news-archive-post-link {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    article.featured-news-post .news-archive-post-content {
        padding: 40px;
        max-width: 620px;
    }

    .news-archive-post-image {
        margin: 0 40px 0 0;
    }

    .news-archive-posts-listing .pagination {
        margin: 64px 0 0 0;
    }
}

@media screen and (min-width: 1300px) {
    .news-archive-list-articles {
        padding: 80px 0;
    }
}
