
/* Global layout + typography */
html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.ws-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.ws-header-brand-main {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.ws-header-brand-sub {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Main region fills space between header + footer */
.ws-main {
    flex: 1 0 auto;
    display: block;
    width: 100%;
}


/* Footer: black with white text */
.ws-footer {
    background-color: #000000;
    color: #f9fafb;
    padding: 1rem 0;
    flex-shrink: 0;
}

    .ws-footer a {
        color: #e5e7eb;
        text-decoration: none;
    }

        .ws-footer a:hover {
            text-decoration: underline;
        }
