:root {
  --paper: #f7f8f5;
  --surface: #ffffff;
  --ink: #18201b;
  --muted: #5d665f;
  --line: #d9ded7;
  --moss: #315b43;
  --moss-strong: #173c2b;
  --blue: #246b8f;
  --clay: #c7653b;
  --gold: #d6b46f;
  --shadow: 0 18px 48px rgba(24, 32, 27, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(217, 222, 215, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--moss-strong);
  color: #fff;
  border-radius: 6px;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--moss-strong);
}

.icon-link,
.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.icon-button {
  display: none;
  cursor: pointer;
}

.fallback-icon {
  color: var(--moss-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.icon-link:has(svg) .fallback-icon {
  display: none;
}

.icon-link svg,
.icon-button svg,
.primary-link svg,
.secondary-button svg,
.featured-card svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.hero {
  position: relative;
  min-height: 560px;
  height: min(76svh, 720px);
  overflow: hidden;
  background: var(--ink);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 15, 0.76), rgba(12, 18, 15, 0.28) 56%, rgba(12, 18, 15, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: keep-all;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 6rem, 6rem);
}

.hero-copy {
  max-width: 520px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.primary-link,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.primary-link {
  background: #fff;
  color: var(--ink);
}

.secondary-button {
  background: var(--moss-strong);
  color: #fff;
  cursor: pointer;
}

.feature-strip,
.content-band,
.split-band,
.site-footer,
.page-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 36px;
  align-items: end;
  padding: 54px 0 36px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.split-band h2,
.page-shell h1 {
  font-size: clamp(2rem, 2.8rem, 2.8rem);
}

.section-heading p,
.split-band p,
.page-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.featured-card {
  display: flex;
  min-height: 210px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-card h3 {
  margin-top: 12px;
  font-size: 1.6rem;
}

.featured-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(49, 91, 67, 0.24);
  border-radius: 999px;
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 800;
}

.content-band {
  padding: 72px 0;
}

.content-band.compact {
  padding-top: 28px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.article-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.article-card a {
  display: block;
  height: 100%;
}

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

.card-body {
  padding: 20px;
}

.card-body h3 {
  margin-top: 12px;
  font-size: 1.3rem;
}

.card-body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.gear-list a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--moss-strong);
  font-weight: 800;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.note-link {
  display: block;
  min-height: 188px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.note-link span {
  color: var(--clay);
  font-weight: 900;
}

.note-link strong {
  display: block;
  margin-top: 18px;
  font-size: 1.2rem;
  line-height: 1.24;
}

.note-link p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 44px 0 56px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.article-page {
  padding-bottom: 72px;
}

.article-hero {
  width: min(920px, calc(100% - 48px));
  margin: 64px auto 34px;
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
}

.article-hero h1 {
  font-size: clamp(2.4rem, 4.2rem, 4.2rem);
}

.article-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.article-lead-image {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 28px;
}

.article-lead-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-summary {
  display: grid;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto 46px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-summary div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-layout {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 64px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 16px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.toc a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.article-content section {
  scroll-margin-top: 96px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.article-content section:first-child {
  border-top: 0;
  padding-top: 0;
}

.article-content h2 {
  font-size: clamp(1.6rem, 2.2rem, 2.2rem);
}

.article-content p {
  margin: 16px 0 0;
  color: #303a33;
  font-size: 1.04rem;
}

.spec-table {
  display: grid;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  background: var(--surface);
}

.spec-table div + div {
  border-top: 1px solid var(--line);
}

.spec-table span,
.spec-table strong {
  padding: 14px 16px;
}

.spec-table span {
  color: var(--muted);
  background: #eef2ed;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checklist li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--moss);
  font-weight: 900;
  content: "✓";
}

.page-shell {
  min-height: calc(100svh - 220px);
  padding: 74px 0 84px;
}

.page-shell h1 {
  max-width: 800px;
}

.page-lead {
  max-width: 780px;
  font-size: 1.12rem;
}

.policy-section {
  max-width: 780px;
  padding: 32px 0 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  font-size: 1.55rem;
}

.policy-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.policy-section a,
.page-shell a {
  color: var(--blue);
  font-weight: 800;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  width: fit-content;
  margin-top: 32px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel > a {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .icon-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 0 10px;
  }

  .site-nav .icon-link {
    width: 100%;
  }

  .hero {
    min-height: 520px;
    height: 72svh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 18, 15, 0.34), rgba(12, 18, 15, 0.78));
  }

  .hero-content {
    width: min(100% - 36px, var(--max));
    justify-content: flex-end;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .feature-strip,
  .split-band,
  .article-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .content-band,
  .split-band,
  .site-footer,
  .page-shell,
  .article-lead-image,
  .article-layout,
  .article-hero,
  .article-summary {
    width: calc(100% - 36px);
  }

  .article-grid,
  .note-grid,
  .article-summary {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 20px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .article-hero {
    margin-top: 44px;
  }

  .article-hero h1 {
    font-size: 2.25rem;
    line-height: 1.22;
  }

  .featured-card {
    min-height: 0;
    padding: 22px;
  }

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

  .spec-table div {
    grid-template-columns: 1fr;
  }

  .spec-table span {
    padding-bottom: 4px;
  }

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

  .contact-panel {
    width: 100%;
  }
}

/* Magazine direction */
:root {
  --paper-deep: #e9eee7;
}

.site-header {
  background: rgba(247, 248, 245, 0.94);
}

h1,
h2,
.featured-card h3,
.article-card h3,
.cover-link strong,
.issue-index strong {
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-weight: 800;
}

.hero h1 {
  font-size: 6rem;
}

.issue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
  margin: 0 0 28px;
}

.issue-meta span {
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-strip {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: start;
  padding: 64px 0 46px;
  border-bottom: 1px solid var(--line);
}

.issue-cover {
  position: relative;
}

.issue-cover::before {
  position: absolute;
  top: 64px;
  left: -76px;
  color: rgba(23, 60, 43, 0.34);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  content: "Setup Log / Issue 01";
}

.section-heading h2,
.split-band h2,
.page-shell h1 {
  font-size: 3rem;
}

.cover-heading h2 {
  max-width: 720px;
  font-size: 4.6rem;
}

.cover-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cover-meta span + span::before {
  margin-right: 14px;
  color: var(--clay);
  content: "/";
}

.cover-list {
  display: grid;
  gap: 14px;
}

.cover-link {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cover-link span,
.story-meta {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cover-link strong {
  font-size: 1.25rem;
  line-height: 1.28;
}

.issue-index {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.issue-index div {
  display: grid;
  gap: 8px;
  min-height: 156px;
  align-content: center;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.issue-index div:first-child {
  border-left: 1px solid var(--line);
}

.issue-index span {
  color: var(--clay);
  font-weight: 900;
}

.issue-index strong {
  font-size: 1.8rem;
  line-height: 1.1;
}

.issue-index p {
  margin: 0;
  color: var(--muted);
}

.magazine-grid {
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.8fr));
  align-items: stretch;
}

.lead-card {
  grid-row: span 2;
}

.lead-card img {
  aspect-ratio: 16 / 10;
}

.lead-card .card-body {
  padding: 28px;
}

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

.card-body .story-meta {
  margin-top: 10px;
  color: var(--clay);
  font-size: 0.72rem;
}

.split-band {
  background: var(--paper-deep);
}

.article-hero {
  margin-top: 74px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  font-size: 4.4rem;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-byline span + span::before {
  margin-right: 16px;
  color: var(--clay);
  content: "/";
}

.article-content section:first-child p:first-of-type::first-letter {
  float: left;
  padding: 9px 9px 0 0;
  color: var(--moss-strong);
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 0.82;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .cover-heading h2 {
    font-size: 3rem;
  }

  .feature-strip,
  .magazine-grid,
  .issue-index {
    grid-template-columns: 1fr;
  }

  .issue-cover::before {
    display: none;
  }

  .lead-card {
    grid-row: auto;
  }

  .issue-index {
    width: calc(100% - 36px);
  }

  .issue-index div,
  .issue-index div:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 2.7rem;
  }

  .issue-meta {
    gap: 6px;
  }

  .issue-meta span {
    min-height: 28px;
    font-size: 0.72rem;
  }

  .cover-heading h2 {
    font-size: 2.45rem;
  }

  .article-hero h1 {
    font-size: 2.35rem;
    line-height: 1.22;
  }

  .article-byline {
    display: grid;
  }

  .article-byline span + span::before {
    margin: 0;
    content: "";
  }
}

/* Field Mag-led editorial pass */
:root {
  --paper: #f3efe6;
  --surface: #f8f4ec;
  --ink: #171915;
  --muted: #6b675e;
  --line: #d8d0c1;
  --moss: #3b513f;
  --moss-strong: #1e3326;
  --blue: #506b74;
  --clay: #9b5d36;
  --gold: #e3d6b2;
  --shadow: none;
  --max: 1168px;
}

body {
  background: var(--paper);
}

.home-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: 76px;
  background: transparent;
  border-bottom: 0;
  color: #fff;
  backdrop-filter: none;
}

.home-page .brand,
.home-page .site-nav,
.home-page .site-nav a {
  color: #fff;
}

.home-page .brand {
  gap: 12px;
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.home-page .brand-mark {
  background: #fff;
  color: var(--ink);
}

.home-page .icon-link,
.home-page .icon-button {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.home-page .fallback-icon {
  color: #fff;
}

.home-page .hero {
  min-height: 760px;
  height: 100svh;
}

.home-page .hero-image {
  filter: saturate(0.92) contrast(1.02);
}

.home-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.1) 34%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 48%, rgba(0, 0, 0, 0.34));
}

.home-page .hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 92px 28px 220px;
  text-align: center;
}

.home-page .hero .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0;
}

.home-page .hero h1 {
  max-width: none;
  color: #fff;
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(4.8rem, 12vw, 11.4rem);
  font-weight: 800;
  line-height: 0.86;
  text-transform: none;
}

.home-page .hero-copy {
  max-width: 560px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.home-page .issue-meta {
  justify-content: center;
  margin: 26px auto 24px;
}

.home-page .primary-link {
  background: #fff;
  border-radius: 2px;
  color: var(--ink);
}

.hero-story-panel {
  position: absolute;
  bottom: 54px;
  left: max(36px, calc((100% - var(--max)) / 2));
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(560px, calc(100% - 72px));
  color: #fff;
}

.hero-story-panel span {
  width: fit-content;
  min-height: 30px;
  padding: 5px 9px;
  background: rgba(23, 25, 21, 0.5);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-story-panel strong {
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  line-height: 1;
}

.hero-meta-panel {
  position: absolute;
  right: max(36px, calc((100% - var(--max)) / 2));
  bottom: 54px;
  z-index: 2;
  width: min(330px, calc(100% - 72px));
  margin: 0;
  color: #fff;
}

.hero-meta-panel div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-meta-panel dt,
.hero-meta-panel dd {
  margin: 0;
}

.hero-meta-panel dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-meta-panel dd {
  font-size: 0.86rem;
  font-weight: 800;
}

.feature-strip,
.content-band,
.split-band {
  width: min(var(--max), calc(100% - 56px));
}

.feature-strip {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  gap: 72px;
  padding: 92px 0 58px;
  border-bottom: 1px solid var(--line);
}

.issue-cover::before {
  display: none;
}

.section-heading h2,
.split-band h2,
.page-shell h1 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.94;
}

.cover-heading h2 {
  max-width: 780px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

.eyebrow,
.cover-link span,
.story-meta,
.article-kicker,
.article-byline,
.tag {
  letter-spacing: 0;
}

.featured-card,
.article-card,
.note-link,
.gear-list a,
.article-summary div,
.contact-panel {
  background: transparent;
  border-color: var(--line);
  border-radius: 0;
  box-shadow: none;
}

.featured-card {
  min-height: 0;
  padding: 0 0 28px;
  border-width: 0 0 1px;
}

.featured-card h3 {
  font-size: 2rem;
  line-height: 1;
}

.cover-link {
  padding: 22px 0;
}

.issue-index {
  width: min(var(--max), calc(100% - 56px));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.issue-index div {
  min-height: 188px;
  background: transparent;
}

.issue-index strong {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.content-band {
  padding: 88px 0;
}

.article-grid {
  gap: 34px;
  margin-top: 42px;
}

.article-card {
  border-width: 0;
}

.article-card img {
  border-radius: 0;
}

.card-body {
  padding: 18px 0 0;
}

.lead-card .card-body {
  padding: 22px 0 0;
}

.card-body h3,
.lead-card h3 {
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.03;
}

.tag {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--moss-strong);
}

.split-band {
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gear-list {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.gear-list a {
  min-height: 86px;
  border-width: 0 1px 1px 0;
}

.note-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.note-link {
  min-height: 220px;
  padding: 26px;
  border-width: 0 1px 1px 0;
}

.site-footer {
  width: min(var(--max), calc(100% - 56px));
}

.article-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
}

@media (max-width: 980px) {
  .hero-meta-panel {
    display: none;
  }

  .hero-story-panel {
    right: 28px;
    bottom: 34px;
    left: 28px;
    width: auto;
  }
}

@media (max-width: 900px) {
  .home-page .site-header {
    min-height: 72px;
    padding: 0 20px;
  }

  .home-page .site-nav {
    background: rgba(23, 25, 21, 0.94);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .home-page .hero {
    min-height: 720px;
    height: 100svh;
  }

  .home-page .hero-content {
    padding: 86px 18px 270px;
  }

  .home-page .hero h1 {
    font-size: clamp(4rem, 20vw, 6.6rem);
  }

  .feature-strip,
  .content-band,
  .split-band,
  .site-footer,
  .issue-index {
    width: calc(100% - 36px);
  }

  .feature-strip,
  .magazine-grid,
  .split-band,
  .issue-index {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    gap: 38px;
    padding-top: 64px;
  }
}

@media (max-width: 620px) {
  .home-page .hero-content {
    justify-content: center;
    padding-bottom: 300px;
  }

  .home-page .hero-copy {
    font-size: 0.98rem;
  }

  .home-page .issue-meta {
    max-width: 280px;
  }

  .home-page .primary-link {
    min-height: 44px;
  }

  .hero-story-panel {
    bottom: 28px;
  }

  .hero-story-panel strong {
    font-size: 1.82rem;
  }

  .section-heading h2,
  .cover-heading h2,
  .split-band h2,
  .page-shell h1 {
    font-size: 2.7rem;
  }

  .feature-strip {
    padding-top: 54px;
  }

  .issue-index div {
    min-height: 142px;
  }
}
