/**
 * Layout for landing and related pages: body flex column so main content
 * fills the viewport below the nav without fixed pixel offsets.
 */

.landing-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.landing-main {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
