
/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --black: #050505;
    --reader-black: #030303;
    --white: #f4f0e7;
    --lime: #C8FF20;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    width: 100%;
    min-height: 100%;
    background: var(--reader-black);
}

body {
    margin: 0;
    width: 100%;
    min-height: 100svh;

    color: var(--white);
    background: var(--reader-black);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

body.mode-print {
    height: 100svh;
    overflow: hidden;
}

body.mode-web {
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
}

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

button {
    font: inherit;
}

img {
    display: block;
}


/* =========================================================
   GRAIN
   ========================================================= */

body::after {
    content: "";

    position: fixed;
    inset: 0;
    z-index: 9999;

    pointer-events: none;

    opacity: .018;

    background-image:
        url(
            "data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.4'/%3E%3C/svg%3E"
        );
}


/* =========================================================
   SHARED GLOBAL HEADER PLACEMENT
   ========================================================= */

fcp-header {
    display: block;
    width: 100%;
    z-index: 300;
}

body.mode-print fcp-header {
    position: absolute;
    top: 0;
    left: 0;
}

body.mode-web fcp-header {
    position: relative;

    border-bottom:
        1px solid
        rgba(255,255,255,.12);
}


/* =========================================================
   PRINT / WEB SWITCH
   ========================================================= */

.edition-switch-wrap {
    position: absolute;

    top: 118px;
    left: 50%;

    z-index: 350;

    transform: translateX(-50%);
}

body.mode-web .edition-switch-wrap {
    top: 118px;
}

.edition-switch {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 5px;

    border:
        1px solid
        rgba(200,255,32,.22);

    border-radius: 999px;

    background:
        rgba(5,5,5,.76);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.edition-tab {
    padding:
        8px
        14px;

    border: 0;
    border-radius: 999px;

    background: transparent;

    color:
        rgba(255,255,255,.48);

    cursor: pointer;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;

    text-transform: uppercase;

    transition:
        color .2s ease,
        background .2s ease;
}

.edition-tab:hover {
    color: var(--lime);
}

.edition-tab.active {
    color: var(--black);
    background: var(--lime);
}


/* =========================================================
   PANELS
   ========================================================= */

.edition-panel {
    width: 100%;
}

.edition-panel[hidden] {
    display: none !important;
}


/* =========================================================
   PRINT EDITION
   ========================================================= */

.print-edition {
    position: relative;

    width: 100vw;
    height: 100svh;

    overflow: hidden;

    background:
        var(--reader-black);
}


/* =========================================================
   READER
   ========================================================= */

.reader {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        155px
        70px
        82px;
}

.book-stage {
    position: relative;

    width:
        min(
            1260px,
            calc(100vw - 170px)
        );

    height:
    min(
        70vh,
        760px
    );

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}

#flipbook {
    position: relative;
    z-index: 20;

    width: 100%;
    height: 100%;

    background:
        transparent !important;

    transform-origin: center;
}


/* =========================================================
   BOOK PAGES
   ========================================================= */

.book-page {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #f5f2e9;

    border: 0 !important;
    outline: 0 !important;

    border-radius: 2px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.24),
        0 5px 14px rgba(0,0,0,.16),
        inset 0 0 0 1px rgba(255,255,255,.06);

    filter: none;
}

.page-art {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: fill;

    border-radius: 2px;

    user-select: none;
    -webkit-user-drag: none;

    pointer-events: none;
}

.book-page:not(.filler-page)::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 5;

    pointer-events: none;

    opacity: .13;

    background-image:
        url(
            "data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.22'/%3E%3C/svg%3E"
        );

    mix-blend-mode: soft-light;
}
.book-page:not(.filler-page)::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 6;

    pointer-events: none;

    border-radius: 2px;

    box-shadow:
        inset 1px 0 2px rgba(255,255,255,.10),
        inset -1px 0 3px rgba(0,0,0,.10),
        inset 0 1px 2px rgba(255,255,255,.05),
        inset 0 -1px 2px rgba(0,0,0,.08);
}


/* =========================================================
   FILLER PAGES
   ========================================================= */

.book-page.filler-page,
.stf__item.filler-page {
    background:
        var(--reader-black) !important;

    border: 0 !important;
    outline: 0 !important;

    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}
#flipbook .stf__item:first-child,
#flipbook .stf__item:first-child > div {
    background:
        var(--reader-black) !important;

    background-color:
        var(--reader-black) !important;
}

.book-page.filler-page::before,
.book-page.filler-page::after,
.stf__item.filler-page::before,
.stf__item.filler-page::after {
    content: none !important;
    display: none !important;
}

#flipbook .stf__parent,
#flipbook .stf__wrapper,
#flipbook .stf__block {
    background:
        transparent !important;

    border: 0 !important;
    outline: 0 !important;
}


/* =========================================================
   EDGE TURN FIX
   ========================================================= */

.book-stage.edge-turn .stf__outerShadow,
.book-stage.edge-turn .stf__innerShadow,
.book-stage.edge-turn .stf__hardShadow,
.book-stage.edge-turn .stf__hardInnerShadow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.book-stage.edge-turn [class*="Shadow"] {
    box-shadow: none !important;
}


/* =========================================================
   SUBTLE SPINE
   ========================================================= */

.spine-shadow {
    position: absolute;

    z-index: 80;

    top: 50%;
    left: 50%;

    width: 14px;

    height:
        calc(
            100% - 2px
        );

    transform:
        translate(
            -50%,
            -50%
        );

    pointer-events: none;

    opacity: 0;

    transition:
        opacity .12s ease;
}

.book-stage.book-open:not(.page-moving)
.spine-shadow {
    opacity: 1;
}

.book-stage.page-moving
.spine-shadow,

.book-stage.edge-turn
.spine-shadow {
    opacity: 0 !important;
}

.spine-shadow::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,.03) 15%,
            rgba(0,0,0,.12) 35%,
            rgba(0,0,0,.24) 47%,
            rgba(0,0,0,.30) 50%,
            rgba(0,0,0,.24) 53%,
            rgba(0,0,0,.12) 65%,
            rgba(0,0,0,.03) 85%,
            transparent 100%
        );

    filter: blur(.4px);
}


/* =========================================================
   PRINT ARROWS
   ========================================================= */

.nav-arrow {
    position: absolute;

    top: 50%;

    z-index: 120;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--lime);

    cursor: pointer;

    transform:
        translateY(-50%);

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.nav-arrow:hover:not(:disabled) {
    transform:
        translateY(-50%)
        scale(1.08);
}

.nav-arrow:disabled {
    opacity: .14;
    cursor: default;
}

.nav-arrow svg {
    width: 36px;
    height: 36px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.4;
}

.prev-arrow {
    left: 12px;
}

.next-arrow {
    right: 12px;
}


/* =========================================================
   PRINT CONTROLS
   ========================================================= */

.reader-controls {
    position: absolute;

    left: 50%;
    bottom: 21px;

    z-index: 130;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 20px;

    padding:
        10px
        16px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 100px;

    background:
        rgba(5,5,5,.74);

    backdrop-filter: blur(16px);
}

.page-counter {
    min-width: 105px;

    color:
        rgba(255,255,255,.72);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .14em;

    text-align: center;
    text-transform: uppercase;
}

.tool-button {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: transparent;

    color:
        rgba(255,255,255,.72);

    cursor: pointer;
}

.tool-button:hover {
    color: var(--lime);
}

.control-line {
    width: 1px;
    height: 17px;

    background:
        rgba(255,255,255,.14);
}


/* =========================================================
   PRINT LOADING
   ========================================================= */

.loading-screen {
    position: absolute;
    inset: 0;

    z-index: 500;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 16px;

    background: var(--black);

    transition:
        opacity .4s ease,
        visibility .4s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-title {
    color: var(--lime);

    font-family:
        "Archivo Black",
        sans-serif;

    font-size: 22px;
    text-transform: uppercase;
}

.loading-copy {
    color:
        rgba(255,255,255,.42);

    font-size: 7px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.loading-track {
    width: 180px;
    height: 2px;
    overflow: hidden;

    background:
        rgba(255,255,255,.12);
}

.loading-bar {
    width: 0;
    height: 100%;

    background: var(--lime);
}


/* =========================================================
   ERROR
   ========================================================= */

.reader-error {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 600;

    transform:
        translate(
            -50%,
            -50%
        );

    display: none;

    width:
        min(
            440px,
            calc(100vw - 40px)
        );

    padding: 30px;

    border:
        1px solid
        rgba(255,255,255,.15);

    background: #0a0a0a;

    text-align: center;
}

.reader-error.visible {
    display: block;
}


/* =========================================================
   WEB EDITION
   ========================================================= */

.web-edition {
    min-height: 100svh;

    padding-top: 55px;

    background: var(--reader-black);
    color: var(--white);
}

.web-shell {
    width:
        min(
            1500px,
            calc(100% - 48px)
        );

    margin: 0 auto;

    padding:
        45px
        0
        100px;
}


/* =========================================================
   WEB HEADER
   ========================================================= */

.web-intro-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
    padding-bottom: 22px;
}

.web-eyebrow {
    color: var(--lime);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .13em;

    text-transform: uppercase;
}

.web-issue {
    color:
        rgba(255,255,255,.45);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .13em;

    text-transform: uppercase;
}

.web-heading {
    margin: 0;

    padding:
        10px
        0
        6px;

    color: var(--lime);

    font-family:
        "Archivo Black",
        sans-serif;

    font-size:
        clamp(
            64px,
            12.8vw,
            100px
        );

    line-height: .82;
    letter-spacing: -.075em;

    text-transform: uppercase;
}

.web-tagline {
    margin:
        10px
        0
        38px;

    color:
        rgba(255,255,255,.68);

    font-size: 15px;
    font-weight: 600;
    letter-spacing: .18em;

    text-transform: uppercase;
}

.web-rule {
    width: 100%;
    height: 1px;

    background:
        rgba(255,255,255,.14);
}


/* =========================================================
   CMS STATUS
   ========================================================= */

.cms-status {
    padding:
        55px
        0;

    color:
        rgba(255,255,255,.48);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;
}

.cms-status.error {
    color: var(--lime);
}


/* =========================================================
   WEB GRID
   ========================================================= */

.web-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    border-left:
        1px solid
        rgba(255,255,255,.14);
}

.web-card {
    position: relative;

    min-width: 0;

    padding: 30px;

    border-right:
        1px solid
        rgba(255,255,255,.14);

    border-bottom:
        1px solid
        rgba(255,255,255,.14);

    background: var(--reader-black);

    cursor: pointer;

    transition:
        background .2s ease;
}

.web-card:hover {
    background:
        rgba(200,255,32,.055);
}

.web-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.web-card-image {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #111;
}

.web-card.featured .web-card-image {
    aspect-ratio: 1.38 / 1;
}

.web-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.web-card:hover .web-card-image img {
    transform: scale(1.015);
}

.web-card-placeholder {
    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    color:
        rgba(255,255,255,.25);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;

    text-transform: uppercase;
}

.web-card-meta {
    display: flex;
    justify-content: space-between;

    gap: 15px;

    margin-top: 16px;

    color: var(--white);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .1em;

    text-transform: uppercase;
}

.web-card-category {
    color: var(--lime);
}

.web-card-title {
    max-width: 20ch;

    margin:
        9px
        0
        12px;

    color: var(--white);

    font-size:
        clamp(
            18px,
            2vw,
            33px
        );

    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.web-card:not(.featured) .web-card-title {
    font-size:
        clamp(
            17px,
            1.4vw,
            23px
        );
}

.web-card-description {
    max-width: 62ch;

    margin: 0;

    color:
        rgba(255,255,255,.55);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;
    line-height: 1.35;
}

.web-card-link {
    display: inline-block;

    margin-top: 19px;
    padding-bottom: 3px;

    color: var(--lime);

    border-bottom:
        1px solid
        var(--lime);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .1em;

    text-transform: uppercase;
}


/* =========================================================
   ARTICLE VIEW
   ========================================================= */

.article-view {
    display: none;

    min-height: 100svh;

    background: var(--reader-black);
}

.article-view.visible {
    display: block;
}

.web-index.hidden {
    display: none;
}


/* =========================================================
   ARTICLE TOP BAR
   ========================================================= */

.article-topbar {
    position: sticky;

    top: 0;

    z-index: 100;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    padding:
        16px
        30px;

    border-bottom:
        1px solid
        rgba(255,255,255,.13);

    background:
        rgba(3,3,3,.94);

    backdrop-filter: blur(16px);
}

.article-back {
    justify-self: start;

    padding: 0;
    border: 0;

    background: transparent;
    color: var(--lime);

    cursor: pointer;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .1em;

    text-transform: uppercase;
}

.article-top-brand {
    justify-self: center;

    color: var(--lime);

    font-family:
        "Archivo Black",
        sans-serif;

    font-size: 13px;
    letter-spacing: -.04em;

    text-transform: uppercase;
}

.article-top-category {
    justify-self: end;

    color:
        rgba(255,255,255,.55);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;

    text-transform: uppercase;
}


/* =========================================================
   ARTICLE HERO
   ========================================================= */

.article-hero {
    width:
        min(
            1200px,
            calc(100% - 48px)
        );

    margin: 0 auto;

    padding:
        85px
        0
        50px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;

    gap:
        10px
        24px;

    margin-bottom: 24px;

    color: var(--lime);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;

    text-transform: uppercase;
}

.article-title {
    max-width: 15ch;

    margin: 0;

    color: var(--white);

    font-family:
        "Archivo Black",
        sans-serif;

    font-size:
        clamp(
            55px,
            8.5vw,
            125px
        );

    line-height: .88;
    letter-spacing: -.07em;

    text-transform: uppercase;
}

.article-subtitle {
    max-width: 760px;

    margin:
        30px
        0
        0;

    color:
        rgba(255,255,255,.68);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            23px,
            2.2vw,
            34px
        );

    line-height: 1.22;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.article-hero-image {
    width:
        min(
            900px,
            100%
        );

    max-height: 62vh;

    margin:
        50px
        auto
        0;

    object-fit: cover;

    background: #111;
}


/* =========================================================
   ARTICLE BODY
   ========================================================= */

.article-content {
    padding-bottom: 80px;
}

.article-text {
    width:
        min(
            760px,
            calc(100% - 48px)
        );

    margin: 0 auto;
}

.article-paragraph {
    margin:
        0
        0
        1.3em;

    color:
        rgba(255,255,255,.79);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            21px,
            2vw,
            27px
        );

    line-height: 1.5;
}

.article-paragraph strong {
    color: var(--white);
    font-weight: 600;
}

.article-paragraph em {
    font-style: italic;
}

.article-paragraph a {
    color: var(--lime);
    text-decoration: underline;
}

.article-heading {
    margin:
        2.2em
        0
        .8em;

    color: var(--white);

    font-family:
        "Archivo Black",
        sans-serif;

    font-size:
        clamp(
            28px,
            4vw,
            52px
        );

    line-height: .95;
    letter-spacing: -.05em;

    text-transform: uppercase;
}

.article-quote {
    width:
        min(
            1050px,
            calc(100% - 48px)
        );

    margin:
        90px
        auto;

    padding:
        50px
        0;

    border-top:
        1px solid
        rgba(200,255,32,.5);

    border-bottom:
        1px solid
        rgba(200,255,32,.5);

    color: var(--lime);

    font-family:
        "Archivo Black",
        sans-serif;

    font-size:
        clamp(
            32px,
            5vw,
            70px
        );

    line-height: .98;
    letter-spacing: -.055em;

    text-transform: uppercase;
}

.article-quote-attribution {
    display: block;

    margin-top: 25px;

    color:
        rgba(255,255,255,.55);

    font-family:
        "Inter",
        sans-serif;

    font-size: 9px;
    letter-spacing: .12em;

    text-transform: uppercase;
}


/* =========================================================
   ARTICLE IMAGE
   ========================================================= */

.article-image-block {
    width:
        min(
            688px,
            calc(100% - 48px)
        );

    margin:
        75px
        auto;
}

.article-image-block img {
    width: 100%;
    height: auto;
}


/* =========================================================
   HIDDEN LOCATIONS — WIDER STRIP IMAGES
   ========================================================= */

.article-view.hidden-locations
.article-image-block {
    width:
        min(
            950px,
            calc(100% - 48px)
        );
}

.article-caption {
    margin-top: 14px;

    color:
        rgba(255,255,255,.58);

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   ARTICLE DIVIDER
   ========================================================= */

.article-divider {
    width:
        min(
            760px,
            calc(100% - 48px)
        );

    height: 1px;

    margin:
        70px
        auto;

    background:
        rgba(255,255,255,.16);
}


/* =========================================================
   VIDEO
   ========================================================= */

.article-video {
    width:
        min(
            1100px,
            calc(100% - 48px)
        );

    margin:
        75px
        auto;
}

.article-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.article-video iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   AUDIO
   ========================================================= */

.article-audio {
    width:
        min(
            760px,
            calc(100% - 48px)
        );

    margin:
        65px
        auto;

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,.14);
}

.article-audio-title {
    margin:
        0
        0
        20px;

    color: var(--lime);

    font-family:
        "Archivo Black",
        sans-serif;

    font-size: 18px;

    text-transform: uppercase;
}

.article-audio audio {
    width: 100%;
}

.article-audio-embed {
    margin-top: 18px;
}

.article-audio-embed iframe {
    width: 100%;
    min-height: 180px;

    border: 0;
}


/* =========================================================
   ARTICLE FOOTER NAV
   ========================================================= */

.article-footer-nav button {
    padding: 0;
    border: 0;

    background: transparent;
    color: var(--lime);

    cursor: pointer;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .1em;

    text-transform: uppercase;
}


/* =========================================================
   CONTRIBUTOR SECTIONS
   ========================================================= */

.article-contributor {
    width:
        min(
            900px,
            calc(100% - 48px)
        );

    margin:
        90px
        auto;

    padding-top: 34px;

    border-top:
        1px solid
        rgba(200,255,32,.42);
}

.contributor-section-title {
    margin-bottom: 20px;

    color: var(--lime);

    font-size: 16px;
    font-weight: 600;
    letter-spacing: .12em;

    text-transform: uppercase;
}

.contributor-name {
    margin: 0;

    color: var(--white);

    font-family:
        "Archivo Black",
        sans-serif;

    font-size:
    clamp(
        28px,
        3.6vw,
        48px
    );

    line-height: .92;
    letter-spacing: -.055em;

    text-transform: uppercase;
}

.contributor-role {
    margin-top: 10px;

    color:
        rgba(255,255,255,.48);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;

    text-transform: uppercase;
}

.contributor-text {
    width:
        min(
            760px,
            100%
        );

    margin-top: 32px;
}

.contributor-text .article-paragraph {
    width: 100%;
}

.contributor-image {
    width:
        min(
            760px,
            100%
        );

    margin:
        45px
        auto
        0;
}

.contributor-image img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media
(max-width: 900px) {

    .web-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .web-card.featured {
        grid-column: span 2;
    }

}


@media
(max-width: 760px) {

    .edition-switch-wrap {
        top: 105px;
    }

    .edition-tab {
        padding:
            7px
            11px;

        font-size: 7px;
    }

    .reader {
        padding:
            130px
            10px
            80px;
    }

    .book-stage {
        width:
            calc(
                100vw - 20px
            );

        height:
            calc(
                100svh - 215px
            );
    }

    .nav-arrow {
        display: none;
    }

    .reader-controls {
        bottom: 16px;

        gap: 14px;

        padding:
            9px
            13px;
    }

    .web-edition {
        padding-top: 70px;
    }

    .web-shell {
        width: 100%;
        padding-top: 30px;
    }

    .web-intro-row {
        margin:
            0
            16px;
    }

    .web-heading {
        margin:
            0
            16px;

        font-size: 20vw;
    }

    .web-tagline {
        margin:
            8px
            16px
            26px;

        font-size: 8px;
    }

    .web-grid {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .web-card,
    .web-card.featured {
        grid-column: auto;
        grid-row: auto;

        padding:
            18px
            16px
            30px;

        border-right: 0;
    }

    .web-card.featured .web-card-image,
    .web-card-image {
        aspect-ratio: 4 / 3;
    }

    .article-topbar {
        grid-template-columns:
            1fr
            auto;

        padding:
            14px
            16px;
    }

    .article-top-brand {
        display: none;
    }

    .article-hero {
        width:
            calc(
                100% - 32px
            );

        padding-top: 55px;
    }

    .article-title {
        font-size: 14vw;
    }

    .article-hero-image {
        width: 100%;
        max-height: 55vh;

        margin-top: 35px;
    }

    .article-text,
    .article-divider,
    .article-audio {
        width:
            calc(
                100% - 32px
            );
    }

    .article-image-block,
    .article-view.hidden-locations .article-image-block,
    .article-quote,
    .article-video,
    .article-footer-nav {
        width:
            calc(
                100% - 32px
            );
    }

}
