:root {
    --navy: #061b3a;
    --gold: #b8862b;
    --gold-soft: #d5b06a;
    --ink: #172033;
    --muted: #667085;
    --line: #e5e7eb;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
}

a {
    color: inherit;
}

.site-header {
    min-height: 112px;
    padding: 24px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #fff;
    border-bottom: 1px solid var(--gold-soft);
}

.brand {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.brand-main {
    color: var(--gold);
    font-size: clamp(25px, 3vw, 43px);
    letter-spacing: .08em;
    line-height: 1;
}

.brand-sub {
    width: 100%;
    margin-top: 9px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: .45em;
}

.brand-sub span {
    height: 1px;
    background: var(--gold);
}

.site-nav {
    display: flex;
    gap: 28px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-nav a {
    text-decoration: none;
    color: var(--navy);
}

.masthead {
    min-height: 65vh;
    display: grid;
    place-items: center;
    padding: 90px 5vw;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,1),
            rgba(248,247,244,1)
        );
}

.masthead-inner {
    max-width: 1050px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.masthead h1,
.issue-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(54px, 9vw, 128px);
    font-weight: 400;
    line-height: .95;
}

.gold-rule {
    width: 110px;
    height: 2px;
    margin: 35px auto;
    background: var(--gold);
}

.intro {
    max-width: 800px;
    margin: auto;
    color: var(--muted);
    font-size: 22px;
    line-height: 1.7;
}

.issue-archive,
.issue-content,
.about-band {
    padding: 80px 5vw;
}

.section-heading {
    max-width: 1500px;
    margin: 0 auto 45px;
}

.section-heading h2,
.about-band h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 400;
}

.issue-grid {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.issue-card {
    border-top: 1px solid var(--gold);
}

.issue-card a {
    text-decoration: none;
}

.issue-card img,
.cover-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.cover-placeholder {
    display: grid;
    align-content: center;
    justify-items: center;
    color: var(--gold);
    border: 1px solid var(--line);
    background: #fff;
}

.cover-placeholder span {
    font-size: 29px;
    letter-spacing: .1em;
}

.cover-placeholder strong {
    margin-top: 12px;
    letter-spacing: .4em;
    font-size: 14px;
}

.issue-card-copy {
    padding: 22px 0;
}

.issue-card-copy p {
    margin: 0 0 7px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.issue-card-copy h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 31px;
    font-weight: 400;
}

.about-band {
    background: var(--navy);
    color: white;
}

.about-band > div {
    max-width: 1100px;
    margin: auto;
}

.about-band h2 {
    color: white;
}

.about-band > div > p:last-child {
    max-width: 850px;
    font-size: 20px;
    line-height: 1.7;
}

.issue-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: #f4f4f2;
}

.issue-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.issue-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(3, 16, 39, .88),
            rgba(3, 16, 39, .08) 70%
        );
}

.issue-hero-overlay {
    position: relative;
    z-index: 2;
    width: min(1300px, 90%);
    margin: 0 auto;
    padding: 90px 0;
    color: white;
}

.issue-hero h1 {
    max-width: 1000px;
    color: white;
}

.cover-kicker {
    font-family: Arial, sans-serif;
    font-size: 17px;
    letter-spacing: .08em;
}

.cover-lines {
    max-width: 650px;
    margin-top: 30px;
    font-size: 18px;
}

.issue-content {
    max-width: 1450px;
    margin: auto;
}

.issue-summary {
    max-width: 900px;
    margin-bottom: 70px;
    color: var(--navy);
    font-size: 27px;
    line-height: 1.55;
}

.editor-letter {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 45px 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    font-size: 19px;
    line-height: 1.8;
}

.story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 55px;
    margin-bottom: 100px;
    align-items: start;
}

.story img {
    width: 100%;
    height: auto;
}

.story-full_bleed,
.story-photo_essay {
    display: block;
}

.story-full_bleed img,
.story-photo_essay img {
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
    margin-bottom: 36px;
}

.story-copy h2 {
    margin: 0 0 20px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.05;
}

.standfirst {
    color: #344054;
    font-size: 22px;
    line-height: 1.55;
}

.story-body {
    font-size: 18px;
    line-height: 1.8;
}

.image-credit {
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.empty-state {
    max-width: 900px;
    margin: 35px auto;
    padding: 50px;
    border: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: 20px;
}

.pdf-link {
    margin: 80px 0;
    text-align: center;
}

.pdf-link a {
    display: inline-block;
    padding: 18px 30px;
    border: 1px solid var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.site-footer {
    padding: 55px 5vw;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: #f7f6f3;
    border-top: 1px solid var(--gold-soft);
}

.site-footer strong {
    color: var(--navy);
    font-size: 24px;
}

.site-footer p {
    max-width: 600px;
    color: var(--muted);
}

.footer-mark {
    color: var(--gold);
    align-self: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .masthead {
        min-height: 55vh;
    }
}


/* YGM_CONTENTS_BLOCK */

.magazine-contents {
    max-width: 1050px;
    margin: 0 auto 100px;
    padding: 50px 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.magazine-contents h2 {
    margin: 0 0 35px;
    color: var(--navy);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 400;
}

.contents-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contents-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 25px 0;
    border-top: 1px solid var(--line);
}

.contents-list li:first-child {
    border-top: 0;
}

.contents-number {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
}

.contents-section {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contents-list strong {
    display: block;
    color: var(--navy);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.contents-list p {
    max-width: 750px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.story figure {
    margin: 0;
}

.story figcaption {
    padding-top: 10px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.5;
}

.story figcaption span {
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

@media (max-width: 800px) {
    .contents-list li {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }
}

/* END YGM_CONTENTS_BLOCK */

/* YGM_LATEST_ISSUE_FEATURE */

.latest-issue-feature {
    padding: 45px 5vw 100px;
    background: #fff;
}

.latest-issue-inner {
    width: min(1500px, 100%);
    margin: 0 auto;
    padding-top: 50px;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(50px, 8vw, 125px);
    align-items: center;
    border-top: 1px solid var(--gold);
}

.latest-issue-cover-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.latest-issue-cover,
.latest-issue-cover-image {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.latest-issue-cover-image {
    display: block;
    object-fit: cover;
}

.latest-issue-cover {
    box-sizing: border-box;
    min-height: 100%;
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    color: var(--navy);
    border: 1px solid var(--line);
    background: #fff;
}

.latest-cover-brand {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gold);
    text-align: center;
}

.latest-cover-brand span {
    display: block;
    color: var(--gold);
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: .08em;
}

.latest-cover-brand strong {
    display: block;
    margin-top: 8px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: .42em;
}

.latest-cover-kicker {
    margin: 36px 0 12px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.latest-cover-title {
    max-width: 320px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;
    line-height: .95;
}

.latest-cover-lines {
    max-width: 310px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.latest-cover-number {
    margin: auto 0 0;
    padding-top: 35px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.latest-issue-copy {
    max-width: 800px;
}

.latest-issue-meta {
    margin: 20px 0 14px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.latest-issue-copy h2 {
    max-width: 850px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(54px, 7vw, 104px);
    font-weight: 400;
    line-height: .92;
}

.latest-issue-summary {
    max-width: 760px;
    margin-top: 35px;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.65;
}

.issue-cta {
    display: inline-block;
    margin-top: 38px;
    padding: 14px 24px;
    color: var(--navy);
    border: 1px solid var(--gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
}

.issue-cta:hover,
.issue-cta:focus-visible {
    color: #fff;
    background: var(--navy);
}

@media (max-width: 800px) {
    .latest-issue-feature {
        padding-top: 25px;
        padding-bottom: 70px;
    }

    .latest-issue-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 35px;
    }

    .latest-issue-cover-link {
        width: min(100%, 420px);
        margin: 0 auto;
    }

    .latest-issue-copy h2 {
        font-size: clamp(46px, 14vw, 72px);
    }

    .latest-issue-summary {
        font-size: 19px;
    }
}

/* END YGM_LATEST_ISSUE_FEATURE */

/* YGM_INDIVIDUAL_STORY_CSS */

.contents-story-link,
.story-copy h2 a {
    color: inherit;
    text-decoration: none;
}

.contents-story-link:hover,
.contents-story-link:focus-visible,
.story-copy h2 a:hover,
.story-copy h2 a:focus-visible {
    color: var(--gold);
}

.story-read-link {
    margin-top: 30px;
}

.story-read-link a {
    display: inline-block;
    padding-bottom: 5px;
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.magazine-article {
    background: #fff;
}

.article-header {
    padding: 90px 5vw 65px;
    border-bottom: 1px solid var(--line);
}

.article-header-inner {
    width: min(1150px, 100%);
    margin: 0 auto;
}

.article-issue {
    margin: 14px 0 32px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.article-issue a {
    color: var(--gold);
    text-decoration: none;
}

.article-header h1 {
    max-width: 1100px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    line-height: .98;
}

.article-standfirst {
    max-width: 900px;
    margin: 40px 0 0;
    color: #344054;
    font-size: 24px;
    line-height: 1.55;
}

.article-primary-image {
    width: min(1400px, 90%);
    margin: 70px auto 0;
}

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

.article-primary-image figcaption {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 12px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.article-primary-image figcaption strong {
    color: var(--navy);
    font-weight: 700;
    white-space: nowrap;
}

.article-body {
    width: min(850px, 90%);
    margin: 75px auto 100px;
    color: #172033;
    font-size: 19px;
    line-height: 1.85;
}

.article-body h2 {
    margin: 65px 0 22px;
    color: var(--navy);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
}

.article-body h3 {
    margin: 48px 0 18px;
    color: var(--navy);
    font-size: 30px;
    font-weight: 400;
}

.article-body a {
    color: var(--navy);
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.article-footer {
    width: min(1150px, 90%);
    margin: 0 auto;
    padding: 60px 0 100px;
    border-top: 1px solid var(--gold);
}

.article-issue-return > a {
    color: var(--navy);
    font-size: 24px;
    text-decoration: none;
}

.article-navigation {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
}

.article-navigation a {
    padding-top: 20px;
    color: var(--navy);
    border-top: 1px solid var(--line);
    text-decoration: none;
}

.article-navigation span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.article-navigation strong {
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
}

.article-navigation-next {
    text-align: right;
}

@media (max-width: 800px) {
    .article-header {
        padding-top: 60px;
    }

    .article-header h1 {
        font-size: clamp(42px, 13vw, 68px);
    }

    .article-standfirst {
        font-size: 20px;
    }

    .article-body {
        margin-top: 55px;
        font-size: 18px;
    }

    .article-primary-image figcaption {
        display: block;
    }

    .article-primary-image figcaption strong {
        display: block;
        margin-top: 5px;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .article-navigation-next {
        text-align: left;
    }
}

/* END YGM_INDIVIDUAL_STORY_CSS */
