/**
 * news-detail.css  v20260622
 * ─────────────────────────────────────────────────────────────
 * NWS-002 뉴스 상세 전용 스타일시트 (Newsroom v3)
 * Requires: mws-tokens.css, mws-layout.css, util-bar-auth.css, news.css
 *
 * 네이밍 규칙: nwd-* 접두사 (news-detail 전용, news-* / g-* 충돌 방지)
 * SSOT 감사 체크:
 *   ✅ 인라인 CSS 중복 없음 (.g-util* / .g-header* / .g-nav* 재정의 X)
 *   ✅ 하드코딩 색상 없음 — 모든 색상은 var() 사용 (폴백 포함)
 *   ✅ --max-w 미사용 → var(--mw) 통일
 *   ✅ backdrop-filter 미사용
 * ─────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════
   § 1. 레이아웃 — Mobile-First 단일→2단 (본문 + 사이드바)
   NWS-002 v20260622: max-width @media 제거, min-width 재작성
═══════════════════════════════════════════════════════════════ */
.nwd-layout {
  display: grid;
  grid-template-columns: 1fr;      /* 모바일 기본: 단일 열 */
  gap: 24px;
  max-width: var(--mw, 1280px);
  margin: 0 auto;
  padding: 16px 12px 40px;         /* 모바일 기본 padding */
}

/* 모바일: 사이드바는 본문 아래 */
.nwd-main { min-width: 0; order: 1; }
.nwd-side { min-width: 0; order: 2; }

/* 태블릿(≥768px): 내부 여백 확대 */
@media (min-width: 768px) {
  .nwd-layout {
    padding: 24px 20px 48px;
    gap: 28px;
  }
}

/* 데스크톱(≥1024px): 2열 레이아웃 전환 */
@media (min-width: 1024px) {
  .nwd-layout {
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 32px 24px 60px;
  }
  .nwd-main { order: unset; }
  .nwd-side  { order: unset; }
}

/* ═══════════════════════════════════════════════════════════════
   § 2. 기사 헤더 (카테고리·제목·메타·썸네일)
═══════════════════════════════════════════════════════════════ */
.nwd-article-header {
  margin-bottom: 32px;
}

/* 카테고리 칩 + 뱃지 행 */
.nwd-article-category-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* 기사 유형 뱃지 (스트레이트 / 리포트 / 칼럼 / 속보) */
.nwd-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.nwd-type-badge[data-type="breaking"] {
  background: var(--news-red-bg, rgba(226,52,52,.08));
  color: var(--news-red, #e23434);
  border: 1px solid var(--news-red-border, rgba(226,52,52,.25));
}
.nwd-type-badge[data-type="straight"] {
  background: var(--mint-pale, #FAFEFD);
  color: var(--mint-dark, #228E84);
}
.nwd-type-badge[data-type="report"] {
  background: var(--violet-lt, #f5f3ff);
  color: var(--violet, #7c3aed);
}
.nwd-type-badge[data-type="column"] {
  background: var(--gold-light, #fef9ec);
  color: var(--gold, #c19a3a);
  border: 1px solid var(--gold-border, #f0d070);
}

/* 기사 제목 */
.nwd-article-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary, #1a1c1e);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

/* 부제목 (선택) */
.nwd-article-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary, #4a5568);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 3px solid var(--mint, #81D8D0);
}

/* 메타 정보 바 */
.nwd-meta-bar {
  display: flex;
  align-items: center;
  gap: 8px;    /* 모바일 기본 */
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--border, #eaecef);
  border-bottom: 1px solid var(--border, #eaecef);
  margin-bottom: 24px;
}

.nwd-reporter-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary, #1a1c1e);
}
.nwd-reporter-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border, #eaecef);
  background: var(--mint-pale, #FAFEFD);
}
.nwd-reporter-info { display: flex; flex-direction: column; line-height: 1.2; }
.nwd-reporter-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary, #1a1c1e);
}
.nwd-reporter-grade {
  font-size: 11px;
  color: var(--text-tertiary, #8a94a6);
}

.nwd-meta-divider {
  width: 1px;
  height: 16px;
  background: var(--border, #eaecef);
  flex-shrink: 0;
}
.nwd-meta-time {
  font-size: 12px;
  color: var(--text-tertiary, #8a94a6);
  white-space: nowrap;
}

/* 편집장 승인 시각 (필수 표시) */
.nwd-approved-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mint-dark, #228E84);
  background: var(--mint-pale, #FAFEFD);
  border: 1px solid var(--mint, #81D8D0);
  border-radius: 3px;
  padding: 2px 7px;
  white-space: nowrap;
}

/* 좋아요 버튼 (meta bar 우측) */
.nwd-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border, #eaecef);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  color: var(--text-secondary, #4a5568);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  margin-left: auto;
}
.nwd-like-btn:hover,
.nwd-like-btn.active {
  border-color: var(--news-red, #e23434);
  color: var(--news-red, #e23434);
  background: var(--news-red-bg, rgba(226,52,52,.08));
}
.nwd-like-btn.active .nwd-like-icon { font-weight: 900; }

/* 공유 버튼 */
.nwd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border, #eaecef);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  color: var(--text-secondary, #4a5568);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.nwd-share-btn:hover {
  border-color: var(--mint-dark, #228E84);
  color: var(--mint-dark, #228E84);
}

/* 대표 이미지 */
.nwd-hero-img-wrap {
  position: relative;
  margin-bottom: 8px;
  border-radius: var(--radius, 8px);
  overflow: hidden;
  background: var(--mint-pale, #FAFEFD);
  aspect-ratio: 16 / 9;
}
.nwd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nwd-hero-caption {
  font-size: 12px;
  color: var(--text-tertiary, #8a94a6);
  margin-bottom: 28px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   § 3. 기사 본문 타이포그래피
═══════════════════════════════════════════════════════════════ */
.nwd-article-body {
  font-size: 15px;    /* 모바일 기본 */
  line-height: 1.85;
  color: var(--text-primary, #1a1c1e);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.nwd-article-body p {
  margin-bottom: 1.4em;
}

.nwd-article-body h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 2em 0 .8em;
  color: var(--text-primary, #1a1c1e);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--mint, #CEB588);
}

.nwd-article-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 1.6em 0 .6em;
  color: var(--text-primary, #1a1c1e);
}

.nwd-article-body blockquote {
  margin: 1.6em 0;
  padding: 16px 20px;
  background: var(--mint-pale, #FAFEFD);
  border-left: 4px solid var(--mint, #CEB588);
  border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
  font-style: italic;
  color: var(--text-secondary, #4a5568);
}

.nwd-article-body ul,
.nwd-article-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.nwd-article-body li { margin-bottom: .4em; }

.nwd-article-body strong {
  font-weight: 700;
  color: var(--text-primary, #1a1c1e);
}

.nwd-article-body a {
  color: var(--mint-dark, #228E84);
  text-decoration: underline;
}

/* 인라인 이미지 */
.nwd-article-body figure {
  margin: 2em 0;
}
.nwd-article-body figure img {
  width: 100%;
  border-radius: var(--radius, 8px);
  display: block;
}
.nwd-article-body figcaption {
  font-size: 12px;
  color: var(--text-tertiary, #8a94a6);
  text-align: center;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   § 4. [VENUE_CARD] 임베드 블록 (최대 5개)
═══════════════════════════════════════════════════════════════ */
.nwd-venue-embed {
  display: flex;
  flex-direction: column;  /* 모바일 기본: 세로 */
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--nws-white, #ffffff);
  border: 1px solid var(--border, #eaecef);
  border-radius: var(--radius, 8px);
  text-decoration: none;
  transition: box-shadow .15s, border-color .15s;
  margin: 1.6em 0;
}
.nwd-venue-embed:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-color: var(--mint, #CEB588);
}
.nwd-venue-embed-thumb {
  width: 100%;    /* 모바일: 전체 너비 */
  height: 140px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--mint-pale, #FAFEFD);
}
@media (min-width: 768px) {
  .nwd-venue-embed       { flex-direction: row; }    /* 가로 배치 복원 */
  .nwd-venue-embed-thumb { width: 80px; height: 60px; }
  .nwd-meta-bar          { gap: 12px; }
  .nwd-article-body      { font-size: 16px; }
}
.nwd-venue-embed-body { flex: 1; min-width: 0; }
.nwd-venue-embed-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--mint-pale, #FAFEFD);
  color: var(--mint-dark, #228E84);
  margin-bottom: 4px;
}
.nwd-venue-embed-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #1a1c1e);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}
.nwd-venue-embed-meta {
  font-size: 12px;
  color: var(--text-tertiary, #8a94a6);
}
.nwd-venue-embed-arrow {
  font-size: 14px;
  color: var(--mint-dark, #228E84);
  flex-shrink: 0;
  align-self: center;
}

/* ═══════════════════════════════════════════════════════════════
   § 5. 칼럼 푸터 안내문 (article_type=column 조건 표시)
═══════════════════════════════════════════════════════════════ */
.nwd-column-notice {
  margin: 32px 0 0;
  padding: 14px 16px;
  background: var(--violet-lt, #f5f3ff);
  border: 1px solid var(--violet, #7c3aed);
  border-radius: var(--radius, 8px);
  font-size: 13px;
  color: var(--text-secondary, #4a5568);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   § 6. 태그 목록
═══════════════════════════════════════════════════════════════ */
.nwd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 28px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border, #eaecef);
}
.nwd-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 14px;
  background: var(--mint-pale, #FAFEFD);
  color: var(--mint-dark, #228E84);
  text-decoration: none;
  transition: background .15s;
}
.nwd-tag:hover { background: var(--mint-light, #EADFCB); }

/* ═══════════════════════════════════════════════════════════════
   § 7. 기자 프로필 박스 (본문 아래)
═══════════════════════════════════════════════════════════════ */
.nwd-reporter-box {
  display: flex;
  flex-direction: column;   /* 모바일 기본: 세로 */
  text-align: center;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--mint-pale, #FAFEFD);
  border: 1px solid var(--mint, #81D8D0);
  border-radius: var(--radius, 8px);
  margin-bottom: 32px;
  text-decoration: none;
  transition: box-shadow .15s;
}
@media (min-width: 1024px) {
  .nwd-reporter-box {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .nwd-reporter-box-stats { justify-content: flex-start; }
}
.nwd-reporter-box:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.nwd-reporter-box-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--mint, #CEB588);
  background: var(--nws-white, #ffffff);
}
.nwd-reporter-box-body { flex: 1; min-width: 0; }
.nwd-reporter-box-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary, #1a1c1e);
  margin-bottom: 2px;
}
.nwd-reporter-box-grade {
  font-size: 12px;
  color: var(--mint-dark, #228E84);
  font-weight: 600;
  margin-bottom: 6px;
}
.nwd-reporter-box-stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-tertiary, #8a94a6);
  justify-content: center;   /* 모바일: 가운데 정렬 */
}
.nwd-reporter-box-arrow {
  font-size: 14px;
  color: var(--mint-dark, #228E84);
  align-self: center;
}

/* ═══════════════════════════════════════════════════════════════
   § 8. 하단 네비게이션 (이전 / 다음 기사)
═══════════════════════════════════════════════════════════════ */
.nwd-article-nav {
  display: grid;
  grid-template-columns: 1fr;   /* 모바일 기본: 단일 열 */
  gap: 12px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .nwd-article-nav { grid-template-columns: 1fr 1fr; }  /* 2열 복원 */
}
.nwd-article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--nws-white, #ffffff);
  border: 1px solid var(--border, #eaecef);
  border-radius: var(--radius, 8px);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.nwd-article-nav-link:hover {
  border-color: var(--mint, #CEB588);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.nwd-article-nav-link[data-dir="prev"] { text-align: left; }
.nwd-article-nav-link[data-dir="next"] { text-align: right; }
.nwd-article-nav-label {
  font-size: 11px;
  color: var(--text-tertiary, #8a94a6);
}
.nwd-article-nav-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #1a1c1e);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   § 9. 관련 기사 섹션
═══════════════════════════════════════════════════════════════ */
.nwd-related {
  margin-bottom: 40px;
}
.nwd-related-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary, #1a1c1e);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nwd-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nwd-related-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border, #eaecef);
  text-decoration: none;
  transition: background .1s;
  border-radius: 4px;
}
.nwd-related-item:last-child { border-bottom: none; }
.nwd-related-item:hover { background: var(--mint-pale, #FAFEFD); padding-left: 8px; padding-right: 8px; margin: 0 -8px; }
.nwd-related-thumb {
  width: 80px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--mint-pale, #FAFEFD);
}
.nwd-related-body { flex: 1; min-width: 0; }
.nwd-related-cat { font-size: 11px; color: var(--mint-dark, #228E84); font-weight: 700; margin-bottom: 3px; }
.nwd-related-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #1a1c1e);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin-bottom: 4px;
}
.nwd-related-meta { font-size: 12px; color: var(--text-tertiary, #8a94a6); }

/* ═══════════════════════════════════════════════════════════════
   § 10. 사이드바
═══════════════════════════════════════════════════════════════ */
.nwd-side-widget {
  background: var(--nws-white, #ffffff);
  border: 1px solid var(--border, #eaecef);
  border-radius: var(--radius, 8px);
  padding: 18px;
  margin-bottom: 20px;
}
.nwd-side-widget-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary, #1a1c1e);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mint, #CEB588);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 사이드 인기 기사 */
.nwd-side-rank-list { list-style: none; padding: 0; margin: 0; }
.nwd-side-rank-item {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border, #eaecef);
}
.nwd-side-rank-item:last-child { border-bottom: none; }
.nwd-side-rank-num {
  font-size: 15px;
  font-weight: 900;
  color: var(--mint-dark, #228E84);
  min-width: 18px;
  line-height: 1.2;
}
.nwd-side-rank-num.low { color: var(--text-tertiary, #8a94a6); }
.nwd-side-rank-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #1a1c1e);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nwd-side-rank-link:hover { color: var(--mint-dark, #228E84); }

/* 사이드 기자 CTA */
.nwd-side-cta {
  background: linear-gradient(135deg, var(--mint-pale, #FFFAF2), var(--violet-lt, #f5f3ff));
  border: 1px solid var(--mint, #81D8D0);
  border-radius: var(--radius, 8px);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.nwd-side-cta-icon { font-size: 28px; margin-bottom: 8px; }
.nwd-side-cta-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary, #1a1c1e);
  margin-bottom: 6px;
}
.nwd-side-cta-desc {
  font-size: 12px;
  color: var(--text-secondary, #4a5568);
  line-height: 1.5;
  margin-bottom: 12px;
}
.nwd-side-cta-btn {
  display: inline-block;
  background: var(--mint-dark, #A8884E);
  color: var(--nws-white, #ffffff);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.nwd-side-cta-btn:hover { background: var(--mint, #CEB588); }

/* 사이드 카테고리 퀵 링크 */
.nwd-side-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.nwd-side-cat-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 14px;
  background: var(--mint-pale, #FAFEFD);
  color: var(--mint-dark, #228E84);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color .12s, background .12s;
}
.nwd-side-cat-link:hover {
  border-color: var(--mint, #CEB588);
  background: var(--mint-light, #EADFCB);
}

/* ═══════════════════════════════════════════════════════════════
   § 11. 공유 패널 (링크 복사 토스트)
═══════════════════════════════════════════════════════════════ */
.nwd-share-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--nws-white, #ffffff);
  border: 1px solid var(--border, #eaecef);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 16px 20px;
  width: 240px;
  z-index: 500;
  display: none;
}
.nwd-share-panel.open { display: block; }
.nwd-share-panel-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary, #1a1c1e);
}
.nwd-share-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.nwd-share-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border: 1px solid var(--border, #eaecef);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  font-size: 11px;
  color: var(--text-secondary, #4a5568);
  transition: border-color .12s, background .12s;
}
.nwd-share-icon-btn:hover { border-color: var(--mint, #CEB588); background: var(--mint-pale, #FAFEFD); }
.nwd-share-icon-btn i { font-size: 18px; }

/* 링크 복사 토스트 */
.nwd-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--news-ticker-bg, #1a2830);
  color: var(--nws-white, #ffffff);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  z-index: 999;
}
.nwd-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   § 12. 로그인 유도 모달 (비로그인 ❤ 클릭)
   — news.css의 .news-login-modal-bg 재사용
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   § 13. 뉴스 전용 푸터 (news.css .news-footer-wrap 재사용)
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   § 14. 반응형 업그레이드 노트 (Mobile-First v20260622)
   ※ max-width 미디어 쿄리 삭제 → 각 구성요소 기본값 + min-width 오버라이드로 이동:
     • .nwd-layout / .nwd-side / .nwd-main  → §1 (l.19)
     • .nwd-venue-embed + thumb             → §4 (l.304) + 768px 미디어
     • .nwd-meta-bar / .nwd-article-body    → §4 (l.304) + 768px 미디어
     • .nwd-reporter-box + stats            → §7 (l.400) + 1024px 미디어
     • .nwd-article-nav                     → §8 (l.451) + 768px 미디어
═══════════════════════════════════════════════════════════════ */
/* ↓ 데스크톱 전용 확장 스타일 (§1/§4/§7/§8로 분산 완료) */
@media (min-width: 1024px) {
  .nwd-share-panel { bottom: 20px; right: 20px; width: 220px; }
}

/* ═══════════════════════════════════════════════════════════════
   § 15. 반응형 — 대형 화면+ (≥1280px)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .nwd-layout { padding: 40px 32px 72px; }
}

/* ═══════════════════════════════════════════════════════════════
   § 16. prefers-reduced-motion
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .nwd-like-btn,
  .nwd-share-btn,
  .nwd-venue-embed,
  .nwd-article-nav-link,
  .nwd-related-item,
  .nwd-reporter-box,
  .nwd-toast { transition: none; }
}
