:root {
    --ink: #111820;
    --muted: #66717c;
    --paper: #f7f6f1;
    --white: #ffffff;
    --blue: #006bb7;
    --sky: #00a9e7;
    --navy: #102d61;
    --line: #cfd4d8;
    --strong-line: #1a222b;
    --serif: "Iropke Batang", "KoPub Batang", "Noto Serif KR", "Batang", Georgia, serif;
    --sans: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(18, 35, 48, .055) .55px, transparent .55px);
    background-size: 5px 5px;
    content: "";
    pointer-events: none;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(0, 169, 231, .55);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    padding: .75rem 1rem;
    background: var(--ink);
    color: white;
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header,
#main-content,
.site-footer {
    width: min(1260px, calc(100% - 48px));
    margin-inline: auto;
}

.masthead {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(310px, 1fr);
    align-items: stretch;
    margin-top: 20px;
    padding: 18px 0 16px;
    border-top: 1px solid #72787e;
    border-bottom: 1px solid #72787e;
}

.masthead-brand {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding-right: clamp(24px, 3vw, 42px);
}

.masthead-title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: clamp(18px, 2.1vw, 32px);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(3.45rem, 7.25vw, 6.25rem);
    font-weight: 900;
    letter-spacing: -.07em;
    line-height: .78;
}

.masthead-bgvc {
    flex: 0 0 auto;
    background: linear-gradient(90deg, #1e376f 0 47%, #0c86c3 77% 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.masthead-news {
    flex: 0 1 auto;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #213c75;
    font-weight: 300;
    letter-spacing: -.075em;
}

.masthead-name {
    display: flex;
    gap: clamp(8px, 1.05vw, 15px);
    margin: 13px 0 0;
    color: #2e343b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(.76rem, 1.45vw, 1.22rem);
    font-weight: 700;
    letter-spacing: -.045em;
}

.masthead-name span {
    white-space: nowrap;
}

.masthead-name strong {
    color: #0d80bb;
    font-size: 1.12em;
    font-weight: 900;
}

.masthead-about {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 clamp(24px, 3vw, 42px);
    border-left: 1px solid #6e7479;
}

.masthead-about > p {
    margin: 0;
    color: #343a40;
    font-size: clamp(.72rem, 1.08vw, .9rem);
    line-height: 1.62;
    word-break: keep-all;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.search-zone {
    position: relative;
    padding: clamp(32px, 5vw, 62px) 0 clamp(30px, 4.5vw, 54px);
    border-bottom: 1px solid var(--strong-line);
}

.admin-mode-link {
    position: absolute;
    top: 14px;
    right: 0;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid #aeb6bd;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #46515b;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .02em;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.admin-mode-link:hover {
    border-color: var(--navy);
    background: var(--white);
    color: var(--navy);
}

.global-search {
    width: min(760px, 100%);
    margin-inline: auto;
}

.search-shell {
    display: flex;
    min-height: 62px;
    align-items: center;
    gap: 13px;
    padding: 7px 8px 7px 22px;
    border: 1px solid #d5d9dc;
    border-radius: 999px;
    background: var(--white);
    box-shadow:
        0 1px 2px rgba(20, 30, 40, .08),
        0 5px 18px rgba(20, 30, 40, .08);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.search-shell:focus-within {
    border-color: rgba(0, 107, 183, .42);
    box-shadow:
        0 1px 2px rgba(20, 30, 40, .08),
        0 7px 24px rgba(16, 45, 97, .14);
}

.search-mark {
    position: relative;
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    border: 2px solid #687580;
    border-radius: 50%;
}

.search-mark::after {
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    border-radius: 2px;
    background: #687580;
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.global-search input {
    flex: 1;
    min-width: 0;
    padding: .7rem .3rem;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
}

.global-search input::placeholder {
    color: #8b949c;
}

.global-search input::-webkit-search-cancel-button {
    display: none;
}

.search-clear {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #6b7680;
    font-size: 1.5rem;
    line-height: 1;
}

.search-clear:hover {
    background: #eef2f4;
    color: var(--ink);
}

.global-search button {
    align-self: stretch;
    flex: 0 0 auto;
    padding: 0 25px;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: white;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease;
}

.global-search button:hover {
    background: var(--blue);
}

.global-search > p {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: .72rem;
    text-align: center;
}

#main-content {
    min-height: 60vh;
}

.lead-story {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, .85fr);
    gap: clamp(26px, 4vw, 64px);
    padding: clamp(28px, 5vw, 66px) 0;
    border-bottom: 1px solid var(--strong-line);
}

.lead-image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #dae1e5;
}

.lead-image::after,
.card-image::after,
.related-image::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(10, 20, 30, .08);
    content: "";
    pointer-events: none;
}

.lead-image img,
.card-image img,
.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.lead-image:hover img,
.news-card:hover .card-image img,
.related-news article:hover img {
    transform: scale(1.025);
}

.lead-copy {
    align-self: center;
}

.eyebrow,
.card-meta,
.article-byline {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
}

.eyebrow span,
.card-meta span {
    color: var(--blue);
    font-weight: 850;
    letter-spacing: .08em;
}

.eyebrow time::before,
.card-meta time::before {
    margin-right: .8rem;
    content: "·";
}

.lead-copy h1 {
    margin: 22px 0 18px;
    font-family: var(--serif);
    font-size: clamp(2.35rem, 4.7vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.11;
    word-break: keep-all;
}

.lead-copy h1 a:hover,
.news-card h3 a:hover,
.related-news h3 a:hover {
    color: var(--blue);
}

.lead-copy > p {
    margin: 0;
    color: #47525c;
    font-family: var(--serif);
    font-size: 1.05rem;
    line-height: 1.85;
    word-break: keep-all;
}

.read-more {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    margin-top: 27px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--ink);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.read-more span {
    color: var(--blue);
    font-size: 1.2rem;
    transition: transform .2s ease;
}

.read-more:hover span {
    transform: translateX(5px);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    padding: 45px 0 22px;
    border-bottom: 3px solid var(--ink);
}

.section-heading span,
.gallery-heading span {
    color: var(--blue);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.section-heading h2,
.gallery-heading h2 {
    margin: 7px 0 0;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    letter-spacing: -.04em;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 700;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 8px;
    gap: 26px;
    padding: 30px 0 60px;
    border-bottom: 1px solid var(--strong-line);
}

.news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: start;
    border-top: 1px solid var(--ink);
    background: var(--white);
}

.news-card.card-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.card-image {
    position: relative;
    display: block;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    background: #dfe5e8;
}

.card-wide .card-image {
    height: 100%;
    min-height: 310px;
    aspect-ratio: auto;
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 20px 18px;
}

.card-meta {
    justify-content: space-between;
    gap: .5rem;
}

.card-meta time::before {
    display: none;
}

.news-card h3 {
    margin: 18px 0 12px;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
    letter-spacing: -.04em;
    line-height: 1.35;
    word-break: keep-all;
}

.news-card p {
    margin: 0;
    color: #505b65;
    font-family: var(--serif);
    font-size: .92rem;
    line-height: 1.78;
    word-break: keep-all;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: #6a747d;
    font-size: .65rem;
    font-weight: 750;
}

.card-footer a {
    color: var(--blue);
    letter-spacing: .1em;
}

.card-accent {
    border-top: 4px solid var(--sky);
}

.card-accent .card-body {
    background: #eaf6fb;
}

.card-accent .card-image {
    aspect-ratio: 1 / .78;
}

.image-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 180px;
    place-items: center;
    background:
        linear-gradient(135deg, transparent 35%, rgba(255,255,255,.18) 35% 38%, transparent 38%),
        var(--navy);
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.webzine-intro {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: end;
    padding: clamp(48px, 7vw, 92px) 0 28px;
    border-bottom: 4px solid var(--ink);
}

.webzine-intro > div:first-child > span {
    color: var(--blue);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .2em;
}

.webzine-intro h1 {
    margin: 10px 0 0;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    letter-spacing: -.06em;
    line-height: 1.12;
}

.edition-note {
    max-width: 290px;
    text-align: right;
}

.edition-note strong {
    color: var(--navy);
    font-size: .82rem;
}

.edition-note p {
    margin: 8px 0 0;
    color: var(--muted);
    font-family: var(--serif);
    font-size: .78rem;
    line-height: 1.65;
    word-break: keep-all;
}

.results-summary {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    padding: 27px 0 18px;
    border-bottom: 3px solid var(--ink);
}

.results-summary > div {
    display: flex;
    gap: .65rem;
    align-items: baseline;
}

.results-summary strong {
    color: var(--navy);
    font-size: .9rem;
}

.results-summary span,
.results-summary p {
    color: var(--muted);
    font-size: .74rem;
}

.results-summary p {
    margin: 0;
    font-family: var(--serif);
}

.editorial-home {
    border-bottom: 1px solid var(--strong-line);
}

.category-section,
.newcomer-section {
    padding: clamp(42px, 6vw, 76px) 0;
    border-bottom: 1px solid var(--strong-line);
}

.editorial-home > :last-child {
    border-bottom: 0;
}

.category-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 22px;
    padding-top: 13px;
    border-top: 4px solid var(--ink);
}

.category-section-heading > div > span {
    color: var(--blue);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .17em;
}

.category-section-heading h2 {
    margin: 5px 0 0;
    font-family: var(--serif);
    font-size: clamp(1.65rem, 2.65vw, 2.45rem);
    letter-spacing: -.045em;
    line-height: 1.2;
}

.category-section-heading > a {
    flex: 0 0 auto;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--blue);
    font-size: .7rem;
    font-weight: 800;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: row;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: rgba(255, 255, 255, .34);
}

.editorial-card {
    min-width: 0;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .42);
}

.editorial-image {
    display: grid;
    min-width: 0;
    overflow: hidden;
    place-items: center;
    background: #dfe5e8;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.editorial-image:hover img {
    transform: scale(1.025);
}

.editorial-copy {
    min-width: 0;
}

.editorial-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin: 0 0 10px;
    color: var(--blue);
    font-size: .65rem;
    font-weight: 900;
    line-height: 1.45;
}

.editorial-kicker span + span {
    color: var(--muted);
    font-weight: 700;
}

.editorial-card h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.28rem;
    letter-spacing: -.035em;
    line-height: 1.38;
    word-break: keep-all;
}

.editorial-card h3 a:hover {
    color: var(--blue);
}

.editorial-preview {
    margin: 14px 0 0;
    color: #55616b;
    font-family: var(--serif);
    font-size: .88rem;
    line-height: 1.72;
    word-break: keep-all;
}

.editorial-card--lead {
    grid-column: 1 / 9;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: minmax(210px, .82fr) minmax(0, 1.5fr);
    gap: clamp(20px, 2.7vw, 38px);
    align-items: stretch;
    padding: 22px;
}

.editorial-card--lead .editorial-image {
    grid-column: 2;
    grid-row: 1;
    min-height: 430px;
}

.editorial-card--lead .editorial-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    padding-top: 4px;
}

.editorial-card--lead h3 {
    font-size: clamp(1.7rem, 2.65vw, 2.8rem);
    line-height: 1.22;
}

.editorial-card--lead .editorial-preview {
    font-size: .98rem;
    line-height: 1.78;
}

.editorial-card--side {
    grid-column: 9 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 145px;
    gap: 18px;
    align-items: start;
}

.editorial-card--side .editorial-image {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 4 / 3;
}

.editorial-card--side .editorial-copy {
    grid-column: 1;
    grid-row: 1;
}

.editorial-card--tile {
    grid-column: span 4;
}

.editorial-card--tile .editorial-image {
    aspect-ratio: 16 / 9;
    margin-bottom: 17px;
}

.category-section.is-reverse .editorial-card--lead {
    grid-column: 5 / -1;
}

.category-section.is-reverse .editorial-card--lead .editorial-image {
    grid-column: 1;
}

.category-section.is-reverse .editorial-card--lead .editorial-copy {
    grid-column: 2;
}

.category-section.is-reverse .editorial-card--side {
    grid-column: 1 / 5;
}

.newcomer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: rgba(255, 255, 255, .38);
}

.newcomer-card {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: clamp(20px, 2.5vw, 34px);
    align-items: center;
    min-height: 245px;
    padding: clamp(24px, 3.2vw, 40px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.newcomer-portrait {
    display: grid;
    width: 148px;
    aspect-ratio: 1;
    overflow: hidden;
    place-items: center;
    border-radius: 50%;
    background: #e6e9eb;
}

.newcomer-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.newcomer-portrait:hover img {
    transform: scale(1.04);
}

.newcomer-card > div {
    min-width: 0;
}

.newcomer-card > div > span {
    color: var(--blue);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.newcomer-card h3 {
    margin: 7px 0 0;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    letter-spacing: -.04em;
    line-height: 1.25;
    word-break: keep-all;
}

.newcomer-card h3 a:hover {
    color: var(--blue);
}

.newcomer-card p {
    margin: 11px 0 0;
    color: var(--muted);
    font-family: var(--serif);
    font-size: .79rem;
    line-height: 1.65;
    word-break: keep-all;
}

.news-list {
    border-bottom: 1px solid var(--strong-line);
}

.news-list-item {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--strong-line);
}

.news-list-item:last-child {
    border-bottom: 0;
}

.news-list-thumbnail {
    width: 400px;
    height: 300px;
    overflow: hidden;
    background: #dfe5e8;
}

.news-list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-list-thumbnail:hover img {
    transform: scale(1.025);
}

.news-list-content {
    min-width: 0;
}

.news-list-content h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--serif);
    font-size: 24px;
    letter-spacing: -.025em;
    line-height: 1.45;
    word-break: keep-all;
}

.news-list-content h2 a:hover {
    color: var(--blue);
}

.news-list-event {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    margin: 17px 0 0;
    color: var(--navy);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.6;
    word-break: keep-all;
}

.news-list-event span[aria-hidden="true"] {
    color: #a6adb4;
    font-weight: 500;
}

.news-list-preview {
    max-width: 770px;
    margin: 20px 0 0;
    color: #4d5963;
    font-family: var(--serif);
    font-size: clamp(.94rem, 1.2vw, 1.06rem);
    line-height: 1.85;
    word-break: keep-all;
}

.news-list-read {
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    margin-top: 22px;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    color: var(--blue);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.webzine-feed {
    border-bottom: 1px solid var(--strong-line);
}

.webzine-story {
    position: relative;
    padding: clamp(46px, 6.5vw, 88px) 0 clamp(42px, 6vw, 76px);
    border-bottom: 1px solid var(--strong-line);
}

.webzine-story:last-child {
    border-bottom: 0;
}

.webzine-story.is-featured {
    padding-top: clamp(54px, 7.5vw, 104px);
}

.story-folio {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: clamp(22px, 3vw, 38px);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ink);
}

.story-folio > span {
    color: var(--sky);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.45rem;
    font-weight: 300;
    letter-spacing: -.06em;
}

.story-folio > div {
    display: flex;
    gap: .8rem;
    align-items: center;
    color: var(--muted);
    font-size: .68rem;
}

.story-folio strong {
    color: var(--blue);
    font-weight: 850;
    letter-spacing: .06em;
}

.story-folio time::before {
    margin-right: .8rem;
    color: #a4abb1;
    content: "·";
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(22px, 3.4vw, 52px);
    align-items: start;
}

.story-grid > * {
    min-width: 0;
}

.story-header {
    position: relative;
    align-self: start;
}

.cover-label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 9px 5px;
    background: var(--blue);
    color: white;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.story-header h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.2vw, 4.6rem);
    letter-spacing: -.06em;
    line-height: 1.17;
    word-break: keep-all;
}

.is-featured .story-header h2 {
    max-width: 1050px;
    font-size: clamp(3rem, 6.5vw, 6.7rem);
    line-height: 1.08;
}

.story-deck {
    margin: 22px 0 0;
    color: #4d5963;
    font-family: var(--serif);
    font-size: clamp(.98rem, 1.5vw, 1.16rem);
    line-height: 1.8;
    word-break: keep-all;
}

.story-event,
.article-event {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
    margin: 20px 0 0;
    color: var(--navy);
    font-size: clamp(.75rem, 1.15vw, .9rem);
    font-weight: 800;
    line-height: 1.55;
    word-break: keep-all;
}

.story-event span[aria-hidden="true"],
.article-event span[aria-hidden="true"] {
    color: #a6adb4;
    font-weight: 500;
}

.story-author {
    margin: 22px 0 0;
    padding-top: 11px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .67rem;
    font-weight: 750;
}

.story-media {
    display: grid;
    gap: 10px;
}

.story-media figure {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #dfe5e8;
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-media figcaption {
    position: absolute;
    right: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    padding: 5px 7px;
    background: rgba(10, 18, 26, .76);
    color: rgba(255, 255, 255, .9);
    font-size: .58rem;
    line-height: 1.35;
}

.story-copy {
    color: #27313a;
    font-family: var(--serif);
    font-size: clamp(.98rem, 1.32vw, 1.12rem);
    line-height: 1.98;
    word-break: keep-all;
}

.story-copy p {
    margin: 0 0 1.5em;
    break-inside: avoid;
}

.story-copy p:first-child::first-letter {
    float: left;
    margin: .12em .11em 0 0;
    color: var(--blue);
    font-family: var(--sans);
    font-size: 3.8em;
    font-weight: 900;
    line-height: .72;
}

.story-end {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(28px, 4vw, 52px);
    padding-top: 10px;
    border-top: 1px solid var(--line);
    color: #7b858e;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .11em;
}

/* No-image layouts: copy length determines the number and width of text columns. */
.story-text .story-header {
    grid-column: 1 / 6;
}

.story-text .story-copy {
    grid-column: 6 / -1;
}

.story-text.copy-short .story-header {
    grid-column: 1 / 8;
}

.story-text.copy-short .story-copy {
    grid-column: 8 / -1;
}

.story-text.copy-medium .story-copy {
    column-count: 2;
    column-gap: 34px;
    column-rule: 1px solid var(--line);
}

.story-text.copy-long .story-header {
    grid-column: 1 / 4;
}

.story-text.copy-long .story-copy {
    grid-column: 4 / -1;
    column-count: 3;
    column-gap: 34px;
    column-rule: 1px solid var(--line);
}

/* A layout: one image. Short copy stays beside the photo; long copy flows below in columns. */
.story-single .story-media {
    grid-column: 1 / 8;
    grid-row: 1 / span 2;
    align-self: stretch;
}

.story-single .story-media figure {
    min-height: 520px;
}

.story-single .story-header,
.story-single .story-copy {
    grid-column: 8 / -1;
}

.story-single.is-reverse .story-media {
    grid-column: 6 / -1;
}

.story-single.is-reverse .story-header,
.story-single.is-reverse .story-copy {
    grid-column: 1 / 6;
}

.story-single.copy-short .story-media figure {
    min-height: 440px;
}

.story-single.copy-long .story-header {
    grid-column: 1 / 5;
    grid-row: 1;
}

.story-single.copy-long .story-media {
    grid-column: 5 / -1;
    grid-row: 1;
}

.story-single.copy-long.is-reverse .story-header {
    grid-column: 9 / -1;
}

.story-single.copy-long.is-reverse .story-media {
    grid-column: 1 / 9;
}

.story-single.copy-long .story-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    column-count: 3;
    column-gap: 34px;
    column-rule: 1px solid var(--line);
}

/* B layout: two images form an asymmetric spread around the copy. */
.story-duo .story-header,
.story-duo .story-copy {
    grid-column: 1 / 5;
}

.story-duo .story-media {
    grid-column: 5 / -1;
    grid-row: 1 / span 2;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, .8fr);
    align-items: end;
}

.story-duo .story-media figure:first-child {
    min-height: 560px;
}

.story-duo .story-media figure:nth-child(2) {
    min-height: 360px;
}

.story-duo.is-reverse .story-header,
.story-duo.is-reverse .story-copy {
    grid-column: 9 / -1;
}

.story-duo.is-reverse .story-media {
    grid-column: 1 / 9;
}

.story-duo.is-featured .story-header,
.story-duo.copy-long .story-header {
    grid-column: 1 / -1;
    grid-row: auto;
}

.story-duo.is-featured .story-media,
.story-duo.copy-long .story-media {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, .75fr);
}

.story-duo.is-featured .story-media figure:first-child {
    min-height: 620px;
}

.story-duo.is-featured .story-copy,
.story-duo.copy-long .story-copy {
    grid-column: 1 / -1;
    grid-row: auto;
    column-count: 3;
    column-gap: 34px;
    column-rule: 1px solid var(--line);
}

/* C layout: three or more images become an editorial collage. */
.story-collage .story-header {
    grid-column: 1 / 5;
}

.story-collage .story-copy {
    grid-column: 5 / -1;
    column-count: 2;
    column-gap: 34px;
    column-rule: 1px solid var(--line);
}

.story-collage .story-media {
    grid-column: 1 / -1;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 118px;
}

.story-collage .story-media figure:first-child {
    grid-column: span 7;
    grid-row: span 3;
}

.story-collage .story-media figure:nth-child(2) {
    grid-column: span 5;
    grid-row: span 2;
}

.story-collage .story-media figure:nth-child(3) {
    grid-column: span 5;
    grid-row: span 1;
}

.story-collage .story-media-many figure:nth-child(n+4) {
    grid-column: span 3;
    grid-row: span 2;
}

.story-collage.copy-long .story-header {
    grid-column: 1 / -1;
}

.story-collage.copy-long .story-copy {
    grid-column: 1 / -1;
    column-count: 3;
}

.empty-state {
    padding: clamp(90px, 15vw, 180px) 1rem;
    border-bottom: 1px solid var(--strong-line);
    text-align: center;
}

.empty-state span {
    color: var(--blue);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.empty-state h1 {
    margin: 14px 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.empty-state p {
    color: var(--muted);
}

.empty-state a {
    display: inline-block;
    margin-top: 18px;
    padding-bottom: 5px;
    border-bottom: 1px solid;
    font-size: .8rem;
    font-weight: 800;
}

.article-page {
    padding-top: clamp(50px, 8vw, 110px);
}

.article-header {
    width: min(940px, 100%);
    margin: 0 auto clamp(34px, 5vw, 62px);
    text-align: center;
}

.article-category {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--blue);
    color: var(--blue);
    font-size: .72rem;
    font-weight: 850;
}

.article-header h1 {
    margin: 26px 0 24px;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6.8vw, 6rem);
    letter-spacing: -.06em;
    line-height: 1.14;
    word-break: keep-all;
}

.article-deck {
    width: min(760px, 100%);
    margin: 0 auto;
    color: #525d67;
    font-family: var(--serif);
    font-size: clamp(1.02rem, 1.6vw, 1.25rem);
    line-height: 1.8;
    word-break: keep-all;
}

.article-event {
    justify-content: center;
    margin: -5px 0 20px;
    color: var(--blue);
}

.article-byline {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 26px;
}

.article-byline > * + *::before {
    margin-right: .8rem;
    content: "·";
}

.article-lead-figure {
    margin: 0 0 clamp(48px, 7vw, 90px);
}

.gallery-open {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.article-lead-figure img {
    width: 100%;
    max-height: 780px;
    object-fit: cover;
}

.article-lead-figure .gallery-open > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: .65rem .9rem;
    background: rgba(12, 19, 26, .86);
    color: white;
    font-size: .7rem;
    font-weight: 750;
}

.article-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 730px);
    gap: clamp(34px, 6vw, 90px);
    justify-content: center;
}

.article-aside {
    align-self: start;
    padding-top: 10px;
    border-top: 3px solid var(--blue);
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.65;
}

.article-aside > span {
    color: var(--navy);
    font-weight: 900;
    letter-spacing: .09em;
}

.article-aside p {
    margin: 9px 0 18px;
}

.copy-link {
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid var(--ink);
    background: transparent;
    font-size: .7rem;
    font-weight: 800;
    cursor: pointer;
}

.article-content {
    color: #252d34;
    font-family: var(--serif);
    font-size: clamp(1.03rem, 1.45vw, 1.17rem);
    line-height: 2.05;
    word-break: keep-all;
}

.article-content p {
    margin: 0 0 1.8em;
}

.article-content p:first-child::first-letter {
    float: left;
    margin: .1em .12em 0 0;
    color: var(--blue);
    font-family: var(--sans);
    font-size: 4.15em;
    font-weight: 900;
    line-height: .72;
}

.article-gallery {
    margin-top: clamp(70px, 10vw, 140px);
    padding: 38px 0 70px;
    border-top: 1px solid var(--strong-line);
    border-bottom: 1px solid var(--strong-line);
}

.gallery-heading {
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
}

.related-news {
    padding-bottom: 70px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 25px;
}

.related-image {
    position: relative;
    display: block;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #dfe5e8;
}

.related-news time {
    display: block;
    margin-top: 15px;
    color: var(--muted);
    font-size: .68rem;
}

.related-news h3 {
    margin: 9px 0 0;
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.45;
}

.gallery-dialog {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(6, 11, 17, .96);
    color: white;
}

.gallery-dialog[open] {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    place-items: center;
}

.gallery-dialog::backdrop {
    background: rgba(6, 11, 17, .96);
}

.gallery-dialog figure {
    display: grid;
    max-width: calc(100vw - 180px);
    max-height: calc(100dvh - 80px);
    margin: 0;
    place-items: center;
}

.gallery-dialog figure img {
    max-width: 100%;
    max-height: calc(100dvh - 120px);
    object-fit: contain;
}

.gallery-dialog figcaption {
    margin-top: 12px;
    color: rgba(255,255,255,.7);
    font-size: .75rem;
}

.gallery-close,
.gallery-nav {
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
}

.gallery-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 2;
    font-size: 2rem;
}

.gallery-nav {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    font-size: 1.25rem;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    padding: 56px 0 62px;
}

.footer-mark {
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -.05em;
}

.footer-mark span {
    color: var(--blue);
    font-weight: 400;
}

.site-footer p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .72rem;
}

.footer-meta {
    text-align: right;
}

.footer-meta a {
    border-bottom: 1px solid;
}

@media (max-width: 980px) {
    .masthead {
        grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
    }

    .masthead-title {
        gap: 18px;
        font-size: clamp(3.15rem, 7.4vw, 4.55rem);
    }

    .masthead-name {
        gap: 8px;
    }

    .admin-mode-link {
        position: static;
        margin: 0 0 14px auto;
    }

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

    .editorial-card--lead,
    .category-section.is-reverse .editorial-card--lead {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .editorial-card--side,
    .category-section.is-reverse .editorial-card--side,
    .editorial-card--tile {
        grid-column: span 1;
    }

    .editorial-card--lead .editorial-image {
        min-height: 360px;
    }

    .newcomer-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 20px;
        min-height: 220px;
        padding: 25px;
    }

    .newcomer-portrait {
        width: 118px;
    }

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

    .lead-image {
        min-height: 0;
        aspect-ratio: 1.55 / 1;
    }

    .lead-copy {
        width: min(760px, 100%);
    }

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

    .news-card.card-wide {
        grid-column: span 2;
    }

    .news-list-item {
        grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
        gap: 30px;
    }

    .news-list-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .story-header h2 {
        font-size: clamp(2rem, 4vw, 3.6rem);
    }

    .is-featured .story-header h2 {
        font-size: clamp(2.7rem, 6.2vw, 5.4rem);
    }

    .story-single .story-media {
        grid-column: 1 / 7;
    }

    .story-single .story-header,
    .story-single .story-copy {
        grid-column: 7 / -1;
    }

    .story-single.is-reverse .story-media {
        grid-column: 7 / -1;
    }

    .story-single.is-reverse .story-header,
    .story-single.is-reverse .story-copy {
        grid-column: 1 / 7;
    }

    .story-single.copy-long .story-copy,
    .story-duo.is-featured .story-copy,
    .story-duo.copy-long .story-copy,
    .story-collage.copy-long .story-copy,
    .story-text.copy-long .story-copy {
        column-count: 2;
    }

    .story-collage .story-media {
        grid-auto-rows: 96px;
    }

    .article-layout {
        grid-template-columns: 130px minmax(0, 680px);
        gap: 36px;
    }
}

@media (max-width: 700px) {
    .site-header,
    #main-content,
    .site-footer {
        width: min(100% - 28px, 1260px);
    }

    .masthead {
        display: block;
        margin-top: 14px;
        padding: 14px 0 16px;
    }

    .masthead-brand {
        padding: 0 0 19px;
        border-bottom: 1px solid var(--line);
    }

    .masthead-title {
        gap: 14px;
        font-size: clamp(2.75rem, 13vw, 4.35rem);
    }

    .masthead-name {
        gap: 7px;
        margin-top: 11px;
        font-size: clamp(.67rem, 3.15vw, .9rem);
    }

    .masthead-about {
        padding: 18px 0 0;
        border-left: 0;
    }

    .masthead-about > p {
        margin: 0;
        font-size: .72rem;
        line-height: 1.65;
    }

    .search-zone {
        padding: 26px 0 28px;
    }

    .admin-mode-link {
        margin-bottom: 13px;
    }

    .search-shell {
        min-height: 56px;
        gap: 10px;
        padding: 6px 6px 6px 18px;
    }

    .global-search button {
        padding-inline: 19px;
    }

    .global-search > p {
        padding-inline: 12px;
        line-height: 1.55;
    }

    .results-summary {
        display: block;
        padding-top: 22px;
    }

    .results-summary p {
        margin-top: 7px;
    }

    .category-section,
    .newcomer-section {
        padding-block: 38px;
    }

    .category-section-heading {
        gap: 1rem;
        align-items: center;
        margin-bottom: 16px;
    }

    .category-section-heading > a {
        font-size: .64rem;
    }

    .category-grid,
    .newcomer-grid {
        grid-template-columns: 1fr;
    }

    .editorial-card--lead,
    .category-section.is-reverse .editorial-card--lead,
    .editorial-card--side,
    .category-section.is-reverse .editorial-card--side,
    .editorial-card--tile {
        grid-column: 1;
    }

    .editorial-card--lead {
        display: block;
        padding: 18px;
    }

    .editorial-card--lead .editorial-image,
    .category-section.is-reverse .editorial-card--lead .editorial-image {
        min-height: 0;
        aspect-ratio: 16 / 10;
        margin-bottom: 19px;
    }

    .editorial-card--lead h3 {
        font-size: 1.85rem;
    }

    .editorial-card--side {
        grid-template-columns: minmax(0, 1fr) 125px;
    }

    .editorial-card--side h3 {
        font-size: 1.15rem;
    }

    .newcomer-card {
        grid-template-columns: 100px minmax(0, 1fr);
        min-height: 0;
        padding: 22px;
    }

    .newcomer-portrait {
        width: 100px;
    }

    .newcomer-card h3 {
        font-size: 1.35rem;
    }

    .newcomer-card p {
        font-size: .75rem;
    }

    .webzine-intro {
        display: block;
        padding-top: 40px;
    }

    .edition-note {
        margin-top: 20px;
        text-align: left;
    }

    .news-list-item {
        display: block;
        padding: 26px 0 32px;
    }

    .news-list-thumbnail {
        margin-bottom: 22px;
    }

    .news-list-content h2 {
        font-size: 24px;
        line-height: 1.45;
    }

    .news-list-event {
        margin-top: 14px;
    }

    .news-list-preview {
        margin-top: 16px;
        font-size: .95rem;
        line-height: 1.75;
    }

    .news-list-read {
        margin-top: 18px;
    }

    .webzine-story {
        padding-block: 44px;
    }

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

    .story-grid > .story-header,
    .story-grid > .story-media,
    .story-grid > .story-copy {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    .story-header {
        order: 1;
    }

    .story-media {
        order: 2;
    }

    .story-copy {
        order: 3;
        column-count: 1 !important;
        column-rule: 0 !important;
    }

    .story-header h2,
    .is-featured .story-header h2 {
        font-size: clamp(2.15rem, 11vw, 3.8rem);
        line-height: 1.13;
    }

    .story-single .story-media figure,
    .story-single.copy-short .story-media figure {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .story-duo .story-media,
    .story-duo.is-featured .story-media,
    .story-duo.copy-long .story-media {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, .8fr);
    }

    .story-duo .story-media figure:first-child,
    .story-duo.is-featured .story-media figure:first-child {
        min-height: 310px;
    }

    .story-duo .story-media figure:nth-child(2) {
        min-height: 220px;
    }

    .story-collage .story-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 138px;
    }

    .story-collage .story-media figure:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .story-collage .story-media figure:nth-child(2),
    .story-collage .story-media figure:nth-child(3),
    .story-collage .story-media-many figure:nth-child(n+4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .story-folio {
        margin-bottom: 22px;
    }

    .lead-story {
        gap: 24px;
        padding: 26px 0 36px;
    }

    .lead-copy h1 {
        margin: 15px 0 13px;
    }

    .lead-copy > p {
        font-size: .96rem;
        line-height: 1.75;
    }

    .magazine-grid {
        display: block;
        padding-top: 18px;
    }

    .news-card,
    .news-card.card-wide {
        display: flex;
        margin-bottom: 20px;
    }

    .card-wide .card-image {
        min-height: 0;
        aspect-ratio: 1.5 / 1;
    }

    .section-heading {
        padding-top: 34px;
    }

    .article-page {
        padding-top: 46px;
    }

    .article-header {
        text-align: left;
    }

    .article-event {
        justify-content: flex-start;
    }

    .article-byline {
        justify-content: flex-start;
    }

    .article-layout {
        display: block;
    }

    .article-aside {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: center;
        margin-bottom: 32px;
    }

    .article-aside p {
        display: none;
    }

    .article-content {
        line-height: 1.92;
    }

    .gallery-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .gallery-dialog[open] {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
    }

    .gallery-dialog figure {
        max-width: calc(100vw - 100px);
    }

    .site-footer {
        display: block;
    }

    .footer-meta {
        margin-top: 28px;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
