/* Base element defaults */

/* Page transition — opacity is set via inline <style> in wp_head (enqueue.php) */
html:not(.is-ready) {
    transition: opacity 0.3s ease;
}
html.is-ready {
    opacity: 1;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body, html{
    overflow-x: hidden;
}

body {
    font-family: var(--font-text);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-feature-settings: "palt";
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

nav ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

