/*
Block Name: Articles
Description: Show either the latest or featured articles
*/

.block-articles .articles-button-area{text-align:center;margin-top:2rem;grid-column:span 2;}

.block-articles.featured-first .article:first-child{grid-column:span 2;position: relative;}
.block-articles.featured-first .article:first-child .article-content{position:absolute;bottom:0;right:0;width:50%;background:#fcfbf9}

@media(max-width:768px){
    .block-articles .articles{grid-template-columns:1fr;}
    .block-articles .articles-button-area{grid-column:span 1;}

    .block-articles.featured-first .article:first-child{grid-column:1;}
    .block-articles.featured-first .article:first-child .article-content{position:static;width:100%;}
}