/* Base reset and global primitives */
* {
    box-sizing: border-box;
}

/* Document defaults */
html {
    font-size: var(--fs-base-px, 16px);
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    line-height: var(--lh-body, 1.55);
    overflow-x: hidden;
}

/* Global link styling */
a {
    color: var(--foreground);
    text-underline-offset: 0.14em;
}

/* Shared content container */
.container {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
}
