* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    background: #ffffff;
}

.article__content {
    max-width: 720px;
    margin-top: 2rem;
    padding: 0 1rem;
    padding-bottom: 2rem;
}

.article__content p {
    color: #686868;
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 1.5rem;
    word-spacing: 0.3em;
}

.article__content p:first-of-type {
    margin-top: 0;
}

.article__content p a {
    color: #0066cc;
    font-weight: 500;
}

.article__content p strong {
    color: #181a1b;
}

.article__img {
    display: block;
    width: 100%;
}

.article__meta {
    align-items: center;
    display: flex;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.article__meta svg {
    fill: #686868;
    height: 12px;
    margin-right: 0.25rem;
    width: 12px;
}

.article__meta time {
    color: #686868;
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    word-spacing: 0.05em;
}

.article__title {
    color: #181a1b;
    font-family: "Archivo Narrow", sans-serif;
    font-optical-sizing: auto;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: 0.95;
    margin-top: 2.5rem;
    padding: 0 1rem;
}

.header {
    width: 100%;
}

.header__container {
    display: flex;
    margin: 0 auto;
    padding: 1.5rem 0;
    width: calc(100vw - 2rem);
}

.header__logo img {
    display: block;
    height: 2rem;
}

.mobile-menu {
    height: 1.5rem;
    position: fixed;
    right: 1rem;
    top: 1.75rem;
    width: 1.5rem;
    z-index: 999;
}

.mobile-menu button {
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    height: 1.5rem;
    justify-content: center;
}

.mobile-menu button #mobile-menu__close {
    width: 0;
}

.mobile-menu svg {
    fill: #181a1b;
    width: 1.5rem;
}

.nav-menu {
    color: #181a1b;
    background: #ffffff;
    height: 100dvh;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    touch-action: none;
    transition: 0.5s;
    visibility: hidden;
    width: 100dvw;
    z-index: 998;
}

.nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-menu ul {
    list-style: none;
    padding: 1rem 1rem 0;
}

.nav-menu__header {
    width: 100%;
}

.nav-menu__header__container {
    display: flex;
    margin: 0 auto;
    padding: 1.5rem 0;
    width: calc(100vw - 2rem);
}

.nav-menu__header__logo img {
    display: block;
    height: 2rem;
}

.nav-menu__item {
    color: #181a1b;
    font-family: Archivo, sans-serif;
    font-optical-sizing: auto;
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.9;
    padding: 0;
    text-transform: uppercase;
}

::-webkit-scrollbar {
    display: none;
}