/* 
###
BACKSTAGE 5.1 CSS > NEWS AND CALENDAR PLUGINS
###
*/
.news-overview {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
a.back {
    display: block;
    margin-top: 1em;
}




/*
.news-overview.news-overview--is-calendar {
}
.news-overview.news-overview--is-news {
}
.news-overview .item {
    width: 31.333%;
    margin: 1%;
    box-sizing: border-box;
    background: var(--accents);
    position: relative;
}
.news-overview .item a {
    display: flex;
    flex-direction: column;
    color: var(--main);
}
.news-overview .item a .image {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}
.news-overview .item a .image img {
    display: block;
    width: 100%;
}
.news-overview .item a .news-overview-content {
    padding: 2em;
    line-height: 1.5;
    box-sizing: border-box;
    width: 100%;
}
.news-overview .item a .news-overview-content .title {
    font-weight: 600;
}
.news-overview .item a .news-overview-content .meta,
.page_content .date {
}
*/


.news_item .section {
    margin-top: 40px;
    padding: 40px;
    background: var(--accents);
}



div.pagination {
    display: flex;
    justify-content: center;
    width: 70%;
    margin: 40px auto;
    margin-bottom: 0;
}
div.pagination div {
    width: 50px;
    height: 50px;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    margin: 0 10px;
}
div.pagination div:not(.disabled) {
    background: var(--accents);
}
div.pagination div a {
    display: block;
    color: var(--main);
}
div.pagination div:hover:not(.disabled),
div.pagination div.active {
    background: var(--primarycta);
}
div.pagination div:not(.disabled):hover a,
div.pagination div.active,
div.pagination div.active a {
    color: var(--background);
}


article.lvc-block-item .tag-wrapper {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 0.8em;
    gap: 5px;
}
.tag-wrapper .tag {
    background: var(--background);
    color: var(--main);
    line-height: 1;
    border-radius: 5px;
    padding: 10px;
}


.entry-content h1 {
    margin-bottom: 30px;
}
.entry-content .meta {
    font-size: .8em;
}
.entry-content .meta.archived {
    font-weight: bold;
    background-color: red;
    color: white;
    padding: 0.25em 0.5em;
    margin-bottom: 1em;
    border-radius: 5px;
}
.entry-content .meta.date {
    margin-bottom: 30px;
}
.entry-content .meta.date span {
    display: block;
    font-weight: bold;
}
.entry-content .tag-wrapper {
    margin: 60px 0;
    margin-bottom: 10px;
    gap: 10px;
    display: flex;
    align-items: flex-start;
}


.archive-notice {
    background: var(--error);
    color: #fff;
    display: inline-block;
    padding: 5px;
    border-radius: 3px;
    line-height: 1;
    margin-bottom: 10px;
}



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

    .news-overview {
        display: block;
        width: 100%;
        margin-left: 0;
    }
    .news-overview .item {
        width: 100%;
        margin: 0;
        margin-bottom: 1em;
        background: transparent;
    }
    .news-overview .item:last-of-type {
        margin-bottom: 0;
    }
    .news-overview .item a {
        flex-direction: row;
    }
    .news-overview .item a .image {
        width: 30%;
    }
    .news-overview .item a .news-overview-content {
        width: 70%;
        padding: 0 15px;
        padding-right: 0;
    }
    .news-overview .item a .news-overview-content .title {
        font-size: 1em;
    }
    .news-overview .item a .news-overview-content .meta,
    .page_content .date {
        font-size: .9em;
        white-space: nowrap;
    }
    .page_content .date {
        font-size: .8em;
    }
    .page_content .date span {
        display: block;
        font-weight: bold;
    }


    article.lvc-block-item .tag-wrapper {
        position: absolute;
        right: 10px;
        top: 10px;
        display: flex;
        align-items: flex-start;
        font-size: 0.6em;
        gap: 5px;
    }
    .tag-wrapper .tag {
        padding: 6px;
    }


}
