@media screen and (max-width: 800px) {

    .span-1:not(.no-stack),
    .span-4:not(.no-stack),
    .span-4.no-margin:not(.no-stack) {
        float: none;
        width: auto;
    }

    /* For some reason, in the theme this is set to grid. Once the page gets to mobile, 
    the background images overflow the container. Setting this to block prevents that. */
    .news-list {
        display: block;
    }

    .news-container {
        padding: 0 !important;
    }
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.span-4 {
    float: left;
    width: 30.333333333333%;
    margin: 0 1.5%;
}

.page-list-item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.page-list-item a.thumbnail {
    display: block;
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.page-list-item .thumbnail img {
    top: 0;
    max-width: inherit;
    max-height: inherit;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list .ccm-block-page-list-pages {
    display: grid;
    grid-template-columns: 12fr 12fr 12fr;
    gap: 2rem;
}

.news-list h5,
.news-list span.date {
    color: #4a4a4a;
    font-family: new-atten, sans-serif;
    font-size: 0.75rem;
    margin: 5px 0 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    line-height: 1.5;
}

.news-list h3 {
    line-height: 1.25em;
    font-weight: 700;
    margin-top: 0;
    font-size: 1.25rem;
    text-transform: none;
}

.news-list h3 a {
    transition: all .3s;
}

.news-list h3 a:hover {
    color: #c99700;
}

.news-container {
    padding: 2rem;
}



.news-container>h2 {
    text-align: center;
}