/* 
BACKGROUND
*/
#article-page .article_p-background {
    position: sticky;
    top: 0;
    min-height: 50dvh;
    max-height: 50dvh;
    flex-grow: 1;
}

@media only screen and (min-width: 1096px) {
    #article-page .article_p-background {
        min-height: 75dvh;
        max-height: 75dvh;
    }
}




/* 
ARTICLE
*/
#article-page .article_p-article {
    border-radius: 1rem 1rem 0 0;
    transform: translateY(-1rem);
    padding-bottom: var(--pad_bottom);
    flex-grow: 1;
    z-index: 10;
}

#article-page .article_p-article .--header {padding-bottom: 0;}

#article-page .article_p-article .--subtitle {margin: var(--size) 0;}

#article-page .article_p-article .--article {padding-top: 0;}

#article-page .article_p-article .--text {margin-top: .35em;}

@media only screen and (min-width: 1096px) {
    #article-page .event_p-article {
        border-radius: 0;
        transform: translateY(0);
    }

    #article-page .article_p-article .--text {margin-top: .425em;}
}