@media screen and ( min-width: 769px ) {

    .homepage-content {
        bottom: auto;
        top: 2rem;
    }

    .main-menu {
        left: -405px;
        width: 400px;
    }

    .header.homepage {
        grid-template-areas:
            "logo tagline"
            "logo nav";
        grid-template-columns: 200px 1fr;
        height: 8rem;
    }
    
    .homepage-logo {
        margin-top: 0;
        max-width: 200px;
        position: absolute;
        width: 200px;
    }
    
    .tagline {
        text-align: right;
        margin-bottom: 1rem;
    }
    
    .home .nav-toggle {
        display: none;
    }
    
    .header.homepage .main-menu {
        align-items: center;
        background: transparent;
        box-shadow: none;
        display: flex;
        grid-area: nav;
        height: auto;
        justify-self: right;
        padding: 0;
        position: static;
        text-align: right;
        transition: none;
        width: auto;
    }
    
    .header.homepage .main-menu li a {
        color: #999;
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 300;
        margin-bottom: 0;
    }
    
    .header.homepage .main-menu li {
        display: inline-block;
    }
    
    .header.homepage .main-menu li a:hover {
        text-decoration: underline;
    }

    .newsletter-toggle {
        color: #999;
        display: inline-block;
        font-size: 0.75rem;
        margin-left: 1em;
        margin-top: 0.3em;
    }

    .header:not(.homepage) .newsletter-toggle {
        color: black;
        margin:0;
        font-size: 1rem;
    }

    .header:not(.homepage) {
        position: sticky;
        top: 2rem;
        z-index: 10;
    }

    .homepage-hero {
        height: calc( 100vh - 8rem );
    }

    .page-width {
        max-width: 1080px;
    }
    
    .post-width {
        max-width: 600px;
    }
    
    .post-title {
        margin-top: -100px;
    }
    
    .post-title h1, .post-title h2 {
        display: block;
        max-width: 100%;
    }

    .archive .grid {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 2rem;
    }
    
    .grid .category {
        font: 300 1rem var(--mono);
    }
    
    .grid h2.title,
    .grid .author {
        font-size: 1.5rem;
        letter-spacing: 1px;
        line-height: 1.25;
    }

    .asw .wp-block-pullquote {
        transform: translateX(-10%);
        width: 90%;
    }

    .asw blockquote.wp-block-quote {
        line-height: 150%;
        margin: 0 auto;
        transform: none;
        width: 90%;
    }

    .gallery article.post-content {
        max-width: 1080px;
    }

    .archive.gallery .columns {
        column-count: 3;
        column-gap: 2rem;
    }

    .page-content {
        margin-top: -4.5rem;
    }

    .header.homepage .menu-item-has-children {
        position: relative;
    }
    
    .header.homepage .menu-item-has-children > a:after {
        content: '\f107';
        font: 600 0.5rem 'Font Awesome 5 Free';
        margin-left: 5px;
    }
    
    .header.homepage .sub-menu {
        background-color: black;
        box-shadow: 10px 10px 0 white;
        max-height: 0;
        min-width: 200px;
        overflow: hidden;
        position: absolute;
        right: -1rem;
        top: 1rem;
    }
    
    .header.homepage li:hover .sub-menu {
        max-height: 9999px;
    }
    
    .header.homepage .sub-menu li {
        display: block;
        padding: 0.25rem 1rem;
    }
    
    .header.homepage .sub-menu li:first-of-type {
        margin-top: 1rem;
    }
    
    .header.homepage .sub-menu li:last-of-type {
        margin-bottom: 1rem;
    }

    .header:not(.homepage) ul.sub-menu {
        border-left: 2px solid black;
        margin-bottom: 1rem;
        padding-left: 1rem;
    }
    
    .header:not(.homepage) .main-menu li .sub-menu li a {
        margin: 0.5rem 0;
    }

    .issue-hero .poster {
        padding-top: 600px;
    }
    
    .issue-archive {
        column-count: 3;
        column-gap: 2rem;
        padding-top: 480px;
    }
    
    .issue-archive article {
        break-inside: avoid;
        margin-bottom: 2rem;
    }

    .paid-ad .mobile-only {
        display: none;
    }

    .archive.contributor .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .page-content {
        padding-bottom: 3rem;
        min-height: 400px;
    }

    .account-header {
        padding: 1rem 0;
    }

    .contributors-index ul {
        display: grid;
        grid-gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }

    .content-wide .post-content {
        max-width: 1080px;
    }

}

@media screen and ( min-width: 1080px ) {

    .archive.contributor .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contributors-index ul {
        grid-template-columns: 1fr 1fr 1fr;
    }

}