﻿/* Only global stuff. */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--c365-bg);
    color: var(--c365-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding-top: var(--c365-navbar-height, 64px);
}
    body.c365-member-layout {
        padding-top: calc( var(--c365-navbar-height, 64px) + var(--c365-member-nav-height, 54px) );
    }

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
