/* ========================================================================== */
/* MAIN LAYOUT                                                        */
/* ========================================================================== */

/* background image*/
.main-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: clip; 
    overflow-y: visible;
    background-size: cover;
    /* inherit base font from :root --font-base so public pages match admin */
    font-family: var(--font-base);
    /* nudge base weight to 500 so public text density feels closer to admin */
    font-weight: 500;
    color: white;
}

.main-layout-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    padding-top: var(--topnav-height);
}

/* background overlay behind all content */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(0,0,0,0.3); darkgrey overlay*/
    background: transparent; /* transparent overlay*/
    /*background: rgba(0,0,0,0.20); lightgrey overlay*/
    z-index: 0;
    pointer-events: none;
}

