/* ol:/ui/extranet-2/style/api/layout.css */
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.p-innerWrapper {
    width: 100%;
    /*max-width: var(--max-width);*/
    margin-inline: auto;
    padding-inline: 1rem;
}

.Article:last-of-type, div.article_last {
    margin-bottom: 0;
    padding-bottom: 0;
}

/** We don't want a staging indication on the split-screen pages. Hence these selectors. */
.--staging::after {
    position: fixed;
    content: 'Staging';
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    z-index: 99999; /** Extreme z-index to make sure it overlaps everything */
    text-indent: 50%;
    text-transform: uppercase;
    letter-spacing: .5em;
    font: bold 10px/10px Arial, sans-serif;
    color: #000;
    background: #ffce0a;
    pointer-events: none;
}