/*
modify close button position for mobile menu overlay
*/
.wp-block-navigation__responsive-container-close {
    padding-right: 10px;
}

/*
ensure footer is at bottom of page even if content height is minimal
*/
.wp-site-blocks {
    display: grid;
    grid-template-rows: min-content auto min-content;
    height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
}

/*
sticky header used in header-sticky part (not on mobile)
*/
@media (min-width: 640px) {  
    .mrseasons-sticky {
        z-index: 99;
        margin: 0 auto;
        width: 100%;
        position: fixed;
        top: calc(0px + var(--wp-admin--admin-bar--height, 0px));
        left: 0;
        right: 0;
        display: block;
    }

    .mrseasons-sticky-active {
        border-bottom: 1px solid;
        padding-top: var(--wp--preset--spacing--10) !important;
        padding-bottom: var(--wp--preset--spacing--10) !important;
    }
}