/* ==========================================================
   GLOBAL BASE
========================================================== */

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    position: relative;

    color: var(--wp--preset--color--text);
    line-height: 1.6;
}


/* ==========================================================
   MAIN
========================================================== */

.site-main {
    width: 100%;
    max-width: none;
}

.site-main.is-layout-constrained {
    max-width: none;
}


/* ==========================================================
   LINKS
========================================================== */

a {
    color: var(--link-color);

    transition:
        color var(--transition-fast);
}

a:hover {
    color: var(--link-hover);
}


/* ==========================================================
   TEXT SELECTION
========================================================== */

::selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-moz-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}