.global-layout {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.global-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-surface);
    box-shadow: var(--shadow-header);
}

.global-content {
    flex: 1;
    padding-bottom: var(--bottom-nav-height);
}

.global-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

@media (min-width: 48rem) {
    .global-content {
        padding-bottom: 0;
    }

    .global-footer {
        position: static;
    }
}
