:root {
  /* 기본 색상 */
  --bg: #FBF8F1;
  --bg-soft: #F5F1E8;
  --ink: #1a1a1a;
  --ink-soft: #3A3530;
  --ink-mute: #5a5550;
  --rule: #1a1a1a;
  --hair: #D9D2C2;
  --hair-light: #E8E3D5;

  /* 브랜드 악센트 */
  --accent: #7B1818;
  --accent-soft: #FDF6F6;

  /* 부서별 컬러 (모던 매거진 스타일) */
  --dept-politics: #1F3A5F;
  --dept-economy: #7B1818;
  --dept-society: #2C5F4F;
  --dept-world: #8B6F47;
  --dept-market: #4A4A4A;

  /* 시세용 */
  --up: #C9302C;
  --down: #1F5AA8;
  --neutral: #6E6E6E;

  /* 폰트 */
  --serif-display: 'Nanum Myeongjo', 'Noto Serif KR', serif;
  --serif: 'Noto Serif KR', 'Nanum Myeongjo', serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.paper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 40px 48px;
}

/* 상단 메타 스트립 */
.top-strip {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
  padding: 0 0 10px;
  border-bottom: 0.5px solid var(--hair);
  position: relative;
}
.top-strip::before {
  content: '';
  position: absolute;
  top: -28px;
  left: -40px;
  right: -40px;
  height: 5px;
  background: linear-gradient(90deg,
    var(--dept-politics) 0%,
    var(--dept-politics) 25%,
    var(--dept-economy) 25%,
    var(--dept-economy) 50%,
    var(--dept-society) 50%,
    var(--dept-society) 75%,
    var(--dept-world) 75%,
    var(--dept-world) 100%);
}

/* 제호 (마스트헤드) */
.masthead {
  text-align: center;
  padding: 22px 0 14px;
  border-bottom: 4px solid var(--rule);
  position: relative;
}
.masthead::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--rule);
}
.masthead h1 {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 76px;
  letter-spacing: -3px;
  line-height: 1;
}
.masthead h1 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.masthead h1 a:hover {
  opacity: 0.7;
}
.masthead .tagline {
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--ink-mute);
  margin-top: 12px;
}

/* 섹션 구분선 */
.section-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 14px;
}
.section-rule .label {
  font-family: var(--serif-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 6px;
  white-space: nowrap;
}
.section-rule .line {
  flex: 1;
  border-top: 1px solid var(--rule);
}
.section-rule.small .label { font-size: 13px; letter-spacing: 4px; }

/* 1면 헤드라인 */
.lead {
  padding: 26px 0 22px;
  border-bottom: 0.5px solid var(--hair);
}
.lead .flag {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 14px;
  padding: 4px 14px;
  background: var(--accent);
}
.lead .flag.dept-정치 { background: var(--dept-politics); }
.lead .flag.dept-경제 { background: var(--dept-economy); }
.lead .flag.dept-사회 { background: var(--dept-society); }
.lead .flag.dept-국제 { background: var(--dept-world); }
.lead .flag.dept-시황 { background: var(--dept-market); }
.lead h2 {
  font-family: var(--serif-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.lead .deck {
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.5;
}
.byline {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-mute);
  margin-bottom: 12px;
}

/* 톱기사 사진 */
.lead-photo {
  margin: 14px 0 18px;
  text-align: center;
}
.lead-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 0.5px solid var(--hair);
}
.lead-photo .caption {
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 8px;
  text-align: center;
  line-height: 1.5;
}
.lead-body {
  column-count: 3;
  column-gap: 32px;
  column-rule: 0.5px solid var(--hair);
}
.lead-body p {
  margin-bottom: 0.8em;
  text-align: justify;
}

/* 메인 2단 그리드 */
.main-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  padding-top: 4px;
}
.col { min-width: 0; }

article {
  border-bottom: 0.5px solid var(--hair);
  padding: 16px 0;
}
article:last-child { border-bottom: none; }
article h3 {
  font-family: var(--serif-display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
article h4 {
  font-family: var(--serif-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 4px;
}
article .body p {
  font-size: 14px;
  margin-bottom: 0.6em;
  text-align: justify;
}
.col--politics article .body.two-col {
  column-count: 2;
  column-gap: 24px;
  column-rule: 0.5px solid var(--hair);
}

/* 시세 박스 */
.market-box {
  border: 1px solid var(--rule);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.market-box .mb-title {
  font-family: var(--serif-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 0.5px solid var(--rule);
  margin-bottom: 8px;
}
.market-box table {
  width: 100%;
  font-family: var(--mono);
  font-size: 12px;
  border-collapse: collapse;
}
.market-box td {
  padding: 5px 0;
  border-bottom: 0.5px dotted var(--hair);
}
.market-box tr:last-child td { border: none; }
.market-box td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.up { color: var(--up); }
.down { color: var(--down); }

/* 시초가 후보 리스트 */
.tier-list { margin-top: 4px; }
.tier-item {
  padding: 10px 0;
  border-bottom: 0.5px dotted var(--hair);
}
.tier-item:last-child { border: none; }
.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.tier-name {
  font-family: var(--serif-display);
  font-size: 15px;
  font-weight: 700;
}
.tier-badge {
  font-family: var(--serif-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 2px 8px;
  border: 0.5px solid var(--rule);
}
.tier-note {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* 사설 */
.opinion {
  margin-top: 36px;
  padding: 24px 30px;
  border-top: 4px double var(--rule);
  border-bottom: 4px double var(--rule);
}
.opinion .label {
  font-family: var(--serif-display);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
}
.opinion h2 {
  font-family: var(--serif-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
}
.opinion p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 0.8em;
  text-align: justify;
}

/* 사설 칼럼 사진 (본문 옆 명함 크기) */
.opinion .column-photo {
  float: right;
  width: 180px;
  margin: 0 0 12px 18px;
}
.opinion .column-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 0.5px solid var(--hair);
}
.opinion .column-photo .caption {
  font-size: 11px;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 6px;
  text-align: center;
  line-height: 1.4;
}
.opinion .author {
  text-align: right;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 13px;
  margin-top: 10px;
}

/* 사설 필자 사진 */
.opinion .author-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 0.5px solid var(--hair);
}
.opinion .author-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid var(--hair);
  flex-shrink: 0;
}
.opinion .author-text {
  text-align: right;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 13px;
}
.opinion .author-text .name {
  display: block;
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
}

/* 푸터 */
footer {
  margin-top: 36px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
}

/* 광고 영역 */
.ad {
  border: 1px dashed var(--ink-mute);
  padding: 28px 24px;
  margin: 28px 0;
  text-align: center;
  position: relative;
}
.ad-label {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 12px;
  font-family: var(--serif-display);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--ink-mute);
}
.ad--full {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ad--box {
  min-height: 200px;
  padding: 24px 16px;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ad--banner {
  min-height: 90px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ad-placeholder {
  font-family: var(--serif-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.ad-sub {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 2px;
  font-style: italic;
}
.ad img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

/* 작은 사이드 광고 */
.ad--mini {
  min-height: 110px;
  padding: 16px 12px;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ad--mini .ad-placeholder { font-size: 14px; }
.ad--mini .ad-sub { font-size: 10px; letter-spacing: 1.5px; }
.ad--strip {
  min-height: 70px;
  padding: 14px 12px;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ad--strip .ad-placeholder { font-size: 13px; }
.ad--strip .ad-sub { font-size: 10px; letter-spacing: 1.5px; }

/* 네비게이션 */
.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 0 18px;
  border-bottom: 0.5px solid var(--hair);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.nav a {
  font-family: var(--serif-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--accent); }
.nav a.active {
  border-bottom-color: var(--accent);
  color: var(--accent);
}
.nav a.disabled {
  color: var(--ink-mute);
  pointer-events: none;
  opacity: 0.5;
}

/* 섹션 페이지 헤더 */
.page-header {
  text-align: center;
  padding: 20px 0 18px;
  border-bottom: 0.5px solid var(--hair);
  margin-bottom: 10px;
}
.page-header h1 {
  font-family: var(--serif-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 12px;
  margin: 0;
}
.page-header .sub {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 3px;
  margin-top: 8px;
  font-style: italic;
}

/* 섹션 페이지 2단 기사 그리드 */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding-top: 8px;
}
.articles-grid .col { min-width: 0; }

/* 경제면 큰 시세 박스 (전면) */
.market-box.market-box--wide {
  margin: 18px 0 24px;
}
.market-box.market-box--wide table { font-size: 13px; }
.market-box.market-box--wide td { padding: 7px 12px; }
.market-box.market-box--wide .grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}

/* Tier 카드 그리드 (경제면용) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 14px 0 24px;
}
.tier-card {
  border: 0.5px solid var(--rule);
  padding: 14px;
}
.tier-card .tier-row { margin-bottom: 8px; }
.tier-card .tier-note { font-size: 12px; }

/* 미국發 모멘텀 매핑 표 */
.mapping-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 12px 0 24px;
}
.mapping-table th {
  font-family: var(--serif-display);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 12px;
  border-top: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
  text-align: left;
  background: rgba(0,0,0,0.02);
}
.mapping-table td {
  padding: 10px 12px;
  border-bottom: 0.5px solid var(--hair);
  vertical-align: top;
  line-height: 1.5;
}
.mapping-table td:first-child {
  font-family: var(--serif-display);
  font-weight: 700;
  width: 22%;
}
.mapping-table td.us {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  width: 28%;
}
.mapping-table td.kr {
  font-size: 13px;
}

/* ============================================ */
/* 동영상 임베드                                  */
/* ============================================ */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 비율 */
  margin: 24px 0;
  background: #000;
  overflow: hidden;
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  text-align: center;
  margin-top: -16px;
  margin-bottom: 24px;
}

/* 동영상 카드 (videos.html) */
.video-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.video-card {
  background: #fff;
  border: 0.5px solid var(--hair);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.video-card .thumb-wrap {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}
.video-card .thumb-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  pointer-events: none;
}
.video-card .info {
  padding: 14px 16px;
}
.video-card .dept-mini {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  padding: 2px 8px;
  background: var(--accent);
  margin-bottom: 8px;
}
.video-card .dept-mini.dept-정치 { background: var(--dept-politics); }
.video-card .dept-mini.dept-경제 { background: var(--dept-economy); }
.video-card .dept-mini.dept-사회 { background: var(--dept-society); }
.video-card .dept-mini.dept-국제 { background: var(--dept-world); }
.video-card h3 {
  font-family: var(--serif-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
}
.video-card .meta {
  font-size: 11px;
  color: var(--ink-mute);
  font-style: italic;
}
.video-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ============================================ */
/* 공유 버튼 (모든 페이지 우측 상단)             */
/* ============================================ */
.share-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.15s;
}
.share-btn:hover {
  background: var(--ink);
  color: #fff;
}
.share-btn.copied {
  background: #2a7a2a;
  color: #fff;
  border-color: #2a7a2a;
}

@media (max-width: 600px) {
  .share-btn { font-size: 11px; padding: 6px 12px; }
}

/* ============================================ */
/* 1면 — 기사 카드 그리드 (Phase 1)              */
/* ============================================ */
.article-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 16px;
}
.article-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-bottom: 0.5px solid var(--hair);
  padding-bottom: 16px;
  transition: opacity 0.15s;
}
.article-card-link:hover {
  opacity: 0.7;
}
.article-card-link .dept {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  margin: 0 0 10px;
  padding: 4px 12px;
  background: var(--accent);
}

/* 부서별 색상 — 카드 라벨 (진한 배경 + 흰 글씨) */
.article-card-link .dept.dept-정치 { background: var(--dept-politics); }
.article-card-link .dept.dept-경제 { background: var(--dept-economy); }
.article-card-link .dept.dept-사회 { background: var(--dept-society); }
.article-card-link .dept.dept-국제 { background: var(--dept-world); }
.article-card-link .dept.dept-시황 { background: var(--dept-market); }

.article-card-link h3 {
  font-family: var(--serif-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.article-card-link .summary {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 6px;
}
.article-card-link .meta {
  font-size: 11px;
  font-style: italic;
  color: var(--ink-mute);
}
.article-card-link .thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 0.5px solid var(--hair);
}

/* ============================================ */
/* 기사 전문 페이지 (article.html)                */
/* ============================================ */
.article-page {
  max-width: 720px;
  margin: 30px auto 0;
}
.article-page .dept-tag {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
  text-align: center;
  margin: 0 auto 18px;
  padding: 6px 16px;
  background: var(--accent);
}
.article-page .dept-tag-정치 { background: var(--dept-politics); }
.article-page .dept-tag-경제 { background: var(--dept-economy); }
.article-page .dept-tag-사회 { background: var(--dept-society); }
.article-page .dept-tag-국제 { background: var(--dept-world); }
.article-page .dept-tag-시황 { background: var(--dept-market); }
.article-page .dept-row {
  text-align: center;
}
.article-page h1 {
  font-family: var(--serif-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: center;
  margin: 0 0 14px;
}
.article-page .deck {
  font-size: 17px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.5;
}
.article-page .meta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 0.5px solid var(--hair);
  border-bottom: 0.5px solid var(--hair);
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 28px;
}
.article-page .body {
  font-size: 16px;
  line-height: 1.85;
}
.article-page .body p {
  margin-bottom: 1em;
  text-align: justify;
}
.article-page .photo {
  margin: 24px 0;
  text-align: center;
}
.article-page .photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 0.5px solid var(--hair);
}
.article-page .photo .caption {
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}
.article-page .back-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 0.5px solid var(--hair);
  font-size: 13px;
  color: var(--ink-mute);
  text-decoration: none;
  letter-spacing: 2px;
}
.article-page .back-link:hover { color: var(--ink); }

/* ============================================ */
/* 아카이브 페이지 (archive.html)                 */
/* ============================================ */
.archive-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 28px;
  flex-wrap: wrap;
}
.archive-filters button {
  font-family: var(--serif-display);
  font-size: 12px;
  letter-spacing: 3px;
  background: transparent;
  border: 0.5px solid var(--ink);
  color: var(--ink);
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 3px;
}
.archive-filters button.active {
  background: var(--ink);
  color: var(--bg);
}
.archive-list {
  max-width: 760px;
  margin: 0 auto;
}
.archive-item {
  border-bottom: 0.5px solid var(--hair);
  padding: 18px 0;
}
.archive-item a {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.archive-item a:hover { opacity: 0.7; }
.archive-item .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.archive-item .dept {
  display: inline-block;
  font-family: var(--serif-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  padding: 3px 10px;
  background: var(--accent);
}
.archive-item .dept.dept-정치 { background: var(--dept-politics); }
.archive-item .dept.dept-경제 { background: var(--dept-economy); }
.archive-item .dept.dept-사회 { background: var(--dept-society); }
.archive-item .dept.dept-국제 { background: var(--dept-world); }
.archive-item .dept.dept-시황 { background: var(--dept-market); }
.archive-item .dept.dept-사설 { background: var(--accent); }
.archive-item .date {
  font-size: 11px;
  color: var(--ink-mute);
  font-style: italic;
}
.archive-item h3 {
  font-family: var(--serif-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
}
.archive-item .summary {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* 모바일 */
@media (max-width: 900px) {
  .paper { padding: 20px; }
  .masthead h1 { font-size: 44px; letter-spacing: -1.5px; }
  .nav { gap: 16px; }
  .nav a { font-size: 12px; letter-spacing: 3px; padding: 4px; }
  .page-header h1 { font-size: 26px; letter-spacing: 6px; }
  .articles-grid { grid-template-columns: 1fr; gap: 20px; }
  .article-cards { grid-template-columns: 1fr; gap: 22px; }
  .article-page h1 { font-size: 26px; }
  .article-page .deck { font-size: 15px; }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .mapping-table { font-size: 11px; }
  .mapping-table td.us { font-size: 10px; }
  .lead h2 { font-size: 30px; }
  .lead-body { column-count: 1; }
  .col--politics article .body.two-col { column-count: 1; }
  .main-grid { grid-template-columns: 1fr; gap: 24px; }
  .opinion .column-photo { width: 140px; margin: 0 0 10px 12px; }
}
