body {
    font-family: 'Special Gothic';
    font-weight: 400;
    visibility: hidden;
    overflow-x: hidden;
}

body.ready { visibility: visible; }

.navbar {
    height: 192px;
    transition: background 0.5s ease, color 0.5s ease, height 0.5s ease;
    color: var(--color-charcoal);
}

.navbar.mobile {
    height: 120px;
}

.navbar.scrolled {
    background: var(--color-light-gray);
    color: var(--color-charcoal);
    height: 86px;
}

.logo {
    /* Artwork is authored flush to the viewBox edges (no padding), so the
       inline SVG's default overflow:hidden would clip the end glyphs. */
    overflow: visible;
}

.navbar .logo {
    height: 30px;
    transition: filter 0.5s ease, height 0.5s ease;
}

.navbar.scrolled .logo {
    height: 23px;
}

.navbar.dark:not(.scrolled) {
    /* background: transparent; */
    color: var(--color-light-gray);
}

#mobile-nav-menu-overlay {
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#mobile-nav-menu-overlay.open {
    opacity: 0.7;
    pointer-events: auto;
}

#mobile-nav-menu {
    z-index: 40;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
}

#mobile-nav-menu.open {
    transform: translateX(0);
}

/* #hero {
    background: radial-gradient(
        circle at 10% 120%,
        rgba(81, 0, 255, 0.2) 0%,
        transparent 100%
    ), radial-gradient(
        circle at 60% 50%,
        rgba(255, 159, 70, 0.2) 0%,
        transparent 100%
    ), #190808
} */

#hero {
    background: 
        url('../img/hero-pattern.png'),
        radial-gradient(
            circle at 60% 60%,
            #f97316 0%,
            transparent 100%
        ), 
        #EF4444
}

.article-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16rem 1.5rem 16rem;
    color: var(--color-charcoal);
}

@media (max-width: 767px) {
    .article-container {
        padding: 8rem 1rem 4rem;
    }
}

article.article {
    max-width: 612px;
    display: flex;
    flex-direction: column;
}

.article h1 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.article h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.article h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}

.article h4 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}


.article p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.article ol,
.article ul {
    padding-left: 2rem;
}

.article ol {
    list-style: decimal;
}

.article ul {
    list-style: disc;
}

.article li {
    padding-left: 0.5rem;
    padding-bottom: 0.5rem;
}

.article a {
    color: var(--color-blue);
}

.article a {
    opacity: 0.8
}