/*  THEME: DEFAULT
//////////////////////////////////////////////////////////////////////////////*/

@layer theme {
    .section--header {
        background: var(--color-white);
        border-bottom: var(--spacing-xs) solid var(--color-mbz-blue);
    }

    @media (min-width: 980px) {
        .section--header {
            border: none;
        }
        .section--header::after {
            content: "";
            grid-row: 1;
            grid-column-start: 2;
            grid-column-end: 14;
            /* grid-column-start: 1;
            grid-column-end: 15; */
            height: var(--spacing-xs);
            background: var(--color-mbz-blue);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 4;
        }
    
    }
    .section--footer {
        background: var(--color-mbz-grey-50);
    }
}
