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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background: #0a0a0b;
}

body {
    font-family: var(--font-body);
    background: #0a0a0b !important;
    color: var(--color-text-primary, #f5f5f4);
    overflow-x: hidden;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: 0.01em;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: var(--lw-header-height);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: var(--tracking-display);
    line-height: 1.08;
    text-transform: uppercase;
}

main {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
}

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

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

.container {
    width: 100%;
    max-width: var(--lw-container);
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
