/* ═══════════════════════════════════════════════════════
   Joticle Base — Resets, Typography, Body
   ═══════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: var(--joticle-font), var(--joticle-font-system);
    background: var(--joticle-body-bg);
    color: var(--joticle-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--joticle-text-primary);
}

a {
    color: var(--joticle-accent);
    text-decoration: none;
    transition: var(--joticle-transition);
}

a:hover {
    color: var(--joticle-accent-dark);
}

img {
    max-width: 100%;
    height: auto;
}
