/* 5ft.mag article page */
/* TODO mobile-first 리팩토링 대기 — @media (max-width) → (min-width) 플립. base 가 모바일 값을 갖도록 조정 필요. 회귀 위험 있어 별도 라운드에서 처리. (PoC: comments.css / market.css)*/

body {
  font-size: 17px;
  line-height: 1.7;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

/* ── 글 헤더 ── */
.article-header {
  max-width: var(--read-width);
  margin: 0 auto;
  padding: 64px 24px 40px;
}
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: var(--fw-heading);
  letter-spacing: 0.04em; color: var(--text-muted);
  margin-bottom: 32px; transition: color .15s;
}
.article-back:hover { color: var(--text); }
.article-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.article-tag {
  font-size: 12px; font-weight: var(--fw-heading);
  letter-spacing: 0.12em; color: var(--text-muted);
}
.article-tag.issue {
  background: var(--accent); color: var(--accent-text);
  padding: 3px 8px; border-radius: 2px;
}
.article-meta .dot {
  width: 3px; height: 3px;
  background: var(--text-dim); border-radius: 50%;
}
.article-title {
  font-size: 44px; font-weight: var(--fw-heading);
  letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 24px;
  /* 한국어 단어 단위 줄바꿈 — '세 풍|경' 같이 어절이 끊기지 않음 */
  word-break: keep-all;
  overflow-wrap: normal;
}
.article-title .title-break {
  display: block;
}
.article-title .title-break::before {
  content: "";
}
.article-subtitle {
  font-size: 21px;
  font-weight: var(--fw-all);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  word-break: keep-all;
  overflow-wrap: normal;
}
.article-author {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text-muted);
}
.article-author .author-name {
  color: var(--text); font-weight: var(--fw-heading);
}

/* ── 메인 이미지 (히어로) ── */
.article-hero {
  max-width: 1200px;
  margin: 24px auto 56px;
  padding: 0 24px;
}
.article-hero img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background: transparent;
}

/* ── 본문 ── */
.article-body {
  max-width: var(--read-width);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.article-body p {
  font-size: 17px; line-height: 1.8;
  margin-bottom: 24px; color: var(--text);
}
.article-body p.lead {
  font-size: 21px; line-height: 1.6;
  font-weight: var(--fw-heading);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.article-body h2 {
  font-size: 28px; font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  margin-top: 56px; margin-bottom: 18px;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 22px; font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  margin-top: 40px; margin-bottom: 14px;
  line-height: 1.3;
}
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-size: 22px; font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.article-body figure { margin: 40px -40px; }
.article-body figure img {
  width: 100%; height: auto; background: transparent;
  display: block;
}
.article-body figcaption {
  font-size: 13px; color: var(--text-muted);
  text-align: center; margin-top: 12px;
}
.article-body figure.full-width {
  margin: 56px calc(50% - 50vw);
  max-width: none; width: 100vw;
}
.article-body figure.full-width img {
  /* 원본 비율 유지 — 작가 사진을 자르지 않습니다 */
  max-width: 1400px;
  margin: 0 auto;
  max-height: 85vh;
  object-fit: contain;
}
.article-body strong { font-weight: var(--fw-heading); }
.article-body em { font-style: italic; }
.article-body a {
  color: var(--text);
  border-bottom: 1px solid var(--text-dim);
}
.article-body a:hover { border-color: var(--text); }
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 1.6em;
}
.article-body li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
  padding-left: 0.35em;
}
.article-body li:last-child { margin-bottom: 0; }
.article-body li::marker { color: var(--text-muted); }

/* ── 매거진 미리보기 카드 ── */
.preview-card {
  background: var(--bg-sub);
  border-radius: 4px;
  padding: 32px;
  margin: 40px 0;
}
.preview-card-label {
  font-size: 12px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.preview-card-title {
  font-size: 26px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.preview-card-quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  margin: 16px 0;
}
.preview-card-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.preview-card-meta strong {
  color: var(--text);
  font-weight: var(--fw-heading);
}

/* ── 목차 박스 ── */
.toc-box {
  background: var(--text);
  color: var(--bg);
  padding: 40px;
  margin: 56px 0;
  border-radius: 4px;
}
.toc-box h3 {
  font-size: 14px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toc-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.toc-item:last-child { border-bottom: none; }
.toc-item-label {
  font-size: 12px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 80px;
}
[data-theme="dark"] .toc-box { background: var(--bg-sub); color: var(--text); }
[data-theme="dark"] .toc-item { border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .toc-item-label { color: var(--text-muted); }
.toc-item-title {
  font-size: 16px;
  flex: 1;
  line-height: 1.4;
}
.toc-item-author {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
[data-theme="dark"] .toc-item-author { color: var(--text-muted); }

/* ── 작가 그리드 ── */
.contributors-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.contributor-mini {
  padding: 20px;
  background: var(--bg-sub);
  border-radius: 4px;
}
.contributor-mini-role {
  font-size: 11px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contributor-mini-name {
  font-size: 18px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.contributor-mini-keyword {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CTA 박스 ── */
.cta-box {
  background: var(--bg-sub);
  padding: 40px;
  margin: 48px 0;
  text-align: center;
  border-radius: 4px;
}
.cta-box-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.16em;
  background: var(--accent);
  color: var(--accent-text);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cta-box-title {
  font-size: 26px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cta-box-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.cta-box-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-box-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: var(--fw-heading);
  border-radius: 2px;
  transition: opacity .15s;
  border-bottom: none !important;
}
/* article-body a 보다 우선되게 명시도 올림 */
.article-body a.cta-box-btn-primary,
.cta-box-btn-primary {
  background: var(--text) !important;
  color: var(--bg) !important;
  border-bottom: none !important;
}
.article-body a.cta-box-btn-secondary,
.cta-box-btn-secondary {
  background: transparent !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}
.cta-box-btn:hover { opacity: 0.85; }

/* ── 글 끝 ── */
.article-end {
  max-width: var(--read-width);
  margin: 0 auto;
  padding: 0 24px 80px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.article-signature {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 24px; line-height: 1.6;
}
.article-signature .role {
  color: var(--text-dim); margin-right: 8px;
}
.share-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.share-label {
  font-size: 12px; font-weight: var(--fw-heading);
  letter-spacing: 0.12em; color: var(--text-muted);
  margin-right: 8px;
}
.share-bar a, .share-bar button {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 7px 14px; font-size: 13px;
  font-weight: var(--fw-heading); letter-spacing: var(--ls-default);
  color: var(--text); background: transparent;
  border: 1px solid var(--border); border-radius: var(--btn-radius);
  cursor: pointer; font-family: var(--font);
  transition: all .15s;
}
.share-bar a:hover, .share-bar button:hover {
  border-color: var(--text);
}
/* 스크랩 토글 (글 끝 share-bar 안, site-common.js 가 inject) */
.share-bar .article-fav { gap: 6px; }
.share-bar .article-fav svg {
  width: 16px; height: 16px;
  stroke: var(--text);
  transition: fill .15s, stroke .15s;
}
.share-bar .article-fav.is-fav svg {
  fill: var(--text);
}
.share-bar .article-fav.is-busy { opacity: 0.55; pointer-events: none; }

/* ── 다음/이전 글 ── */
.article-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.article-nav a {
  background: var(--bg);
  padding: 32px;
  transition: background .15s;
  display: block;
}
.article-nav a:hover { background: var(--bg-sub); }
.article-nav .nav-label {
  font-size: 12px; font-weight: var(--fw-heading);
  letter-spacing: 0.12em; color: var(--text-muted);
  margin-bottom: 8px; display: block;
}
.article-nav .nav-title {
  font-size: 20px; font-weight: var(--fw-heading);
  letter-spacing: -0.02em; line-height: 1.3;
}
.article-nav .next-article { text-align: right; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .article-title { font-size: 36px; }
  .contributors-mini { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .article-header { padding: 40px 24px 32px; }
  .article-title { font-size: 28px; }
  .article-subtitle { font-size: 17px; }
  .article-body { padding: 0 24px 60px; }
  .article-body p { font-size: 16px; }
  .article-body li { font-size: 16px; }
  .article-body p.lead { font-size: 18px; }
  .article-body h2 { font-size: 23px; }
  .article-body h3 { font-size: 19px; }
  .article-body figure { margin: 32px -24px; }
  .article-body figure.full-width { margin: 40px -24px; width: auto; }
  .preview-card, .toc-box, .cta-box { padding: 24px; }
  .preview-card-title, .cta-box-title { font-size: 22px; }
  .toc-item { flex-wrap: wrap; }
  .toc-item-label { min-width: 0; }
  .article-end { padding: 32px 24px 60px; }
  .article-nav { grid-template-columns: 1fr; padding: 40px 0; }
  .article-nav a { padding: 24px 20px; }
  .article-nav .next-article { text-align: left; }
}
/* ── 연관 글 추천 ── */
.related-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  border-top: 1px solid var(--border);
}
.related-title {
  font-size: 22px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px 20px;
}
.related-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity .2s;
}
.related-card:hover { opacity: 0.78; }
.related-card .related-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: transparent;
  margin-bottom: 12px;
  position: relative;
}
.related-card .related-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.related-card .related-img.text-only {
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.related-card .related-img.text-only .related-img-title {
  font-size: 17px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #111;
  text-align: center;
  word-break: keep-all;
}
.related-card .related-cat {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.related-card .related-card-title {
  font-size: 17px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 6px;
}
.related-card .related-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .related-section { padding: 32px 20px 60px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .related-card .related-card-title { font-size: 15px; }
  .related-card .related-excerpt { display: none; }
}

/* ════════════════════════════════════
   통합 마이그레이션 (stories 02-08 unique components)
   ════════════════════════════════════ */


/* — story 02 unique — */
.article-hero.portrait {
  max-width: 720px;
  margin: 24px auto 56px;
  padding: 0 24px;
}

.article-hero.portrait img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  background: transparent;
}

.qa-block {
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--bg-sub);
  border-radius: 4px;
  border-left: 3px solid var(--text);
}

.qa-question {
  font-size: 13px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.qa-question-text {
  font-size: 17px;
  font-weight: var(--fw-heading);
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--text);
}

.qa-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.qa-answer p { margin-bottom: 12px; font-size: 16px; }

.qa-answer p:last-child { margin-bottom: 0; }

.qa-block.locked {
  position: relative;
  overflow: hidden;
}

.qa-block.locked .qa-answer {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  max-height: 80px;
  overflow: hidden;
}

.qa-locked-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 32px;
  background: linear-gradient(to top, var(--bg-sub) 60%, transparent);
  text-align: center;
}

.qa-locked-overlay .lock-icon {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}

.qa-locked-overlay .lock-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: var(--fw-heading);
  letter-spacing: 0.04em;
}

.series-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 40px 0;
  align-items: start;
}

.series-gallery figure {
  margin: 0;
}

.series-gallery img {
  width: 100%;
  height: auto;
  /* 원본 비율 유지 — 작가 사진을 자르지 않습니다 */
  background: transparent;
  display: block;
}

.artist-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: var(--bg-sub);
  border-radius: 4px;
  margin: 40px 0;
}

.artist-card-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border);
}

.artist-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.artist-card-info {
  flex: 1;
}

.artist-card-name {
  font-size: 18px;
  font-weight: var(--fw-heading);
  margin-bottom: 4px;
}

.artist-card-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* — story 03 unique — */
.article-header.no-hero {
  padding: 96px 24px 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.article-header.no-hero .article-title {
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.article-header.no-hero .article-subtitle {
  font-size: 22px;
  line-height: 1.55;
}


/* — story 05 unique — */
.article-body figure.product-shot {
  margin: 40px 0;
  background: var(--bg-sub);
  padding: 24px;
}

.article-body figure.product-shot img {
  max-height: 480px;
  object-fit: contain;
  margin: 0 auto;
}

.article-body figure.product-pair {
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.article-body figure.product-pair > picture {
  background: var(--bg-sub);
  padding: 20px;
  display: block;
}

.article-body figure.product-pair img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
}

.article-body figure.product-pair figcaption {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .article-body figure.product-pair {
    grid-template-columns: 1fr;
  }
  .article-body figure.product-pair img {
    height: 260px;
  }
}


/* ════════════════════════════════════
   Vol.02 essay color override
   Vol.02 메인 컬러 = 옅은 빨강 (Vol.01 옅은 노랑과 동일한 톤)
   ════════════════════════════════════ */
.vol02-essay {
  --accent: #d94a4a;            /* 메인 빨강 */
  --accent-soft: #fadcdc;       /* 50% 옅은 빨강 — 헤더 배경용 */
  --accent-text: #ffffff;
}
[data-theme="dark"] .vol02-essay {
  --accent: #e85a5a;
  --accent-soft: #4a2828;
  --accent-text: #ffffff;
}
.vol02-essay .article-header.no-hero {
  background: var(--accent-soft);
  border-bottom: none;
  margin-bottom: 0;
}
.vol02-essay .article-header.no-hero .article-tag {
  color: #6b1f1f;
}
[data-theme="dark"] .vol02-essay .article-header.no-hero .article-tag {
  color: #f4c0c0;
}
.vol02-essay .article-header.no-hero .article-tag.issue {
  background: var(--accent);
  color: var(--accent-text);
}
.vol02-essay .article-body { padding-top: 56px; }

/* Vol.02 essay listing card (썸네일 없을 때 옅은 빨강 배경) */
.article-card[data-issue="Vol.02"][data-category="essay"] .article-img.text-only,
.related-card[data-issue="Vol.02"][data-category="essay"] .related-img.text-only {
  background: #fadcdc;
}
.article-card[data-issue="Vol.02"][data-category="essay"] .article-img.text-only .text-card-title,
.article-card[data-issue="Vol.02"][data-category="essay"] .article-img.text-only .text-card-mark,
.related-card[data-issue="Vol.02"][data-category="essay"] .related-img.text-only .related-img-title {
  color: #6b1f1f;
}


/* ════════════════════════════════════════════════════
   재사용 컴포넌트 — 향후 글에서 사용
   (현재 stories/14, 15, 13은 inline 으로 같은 패턴 보유)
   ════════════════════════════════════════════════════ */

/* 인터뷰 Q&A — Q 마크 + 좌측 여백 + 상단 보더 (interview 카테고리용) */
.interview-qa {
  margin: 40px 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.interview-qa:first-of-type { padding-top: 0; border-top: none; }
.interview-q {
  font-size: 19px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.015em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text);
  position: relative;
  padding-left: 30px;
}
.interview-q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 17px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.04em;
  color: #c84e2a;
}
.interview-a p { margin-bottom: 14px; }
.interview-a p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .interview-q { font-size: 17px; padding-left: 26px; }
  .interview-q::before { font-size: 15px; }
}

/* 남은 질문 티저 (인터뷰 본문 일부만 노출할 때) */
.question-teasers {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.question-teasers li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  padding-left: 30px;
  position: relative;
}
.question-teasers li::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 13px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.04em;
  color: #c84e2a;
}
.question-teasers li:last-child { border-bottom: none; }

/* 필름/카메라 스펙 카드 (review 카테고리용) */
.film-spec {
  background: var(--bg-sub);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 32px 0;
  display: grid;
  gap: 14px;
}
.film-spec-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.55;
}
.film-spec-row .label {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.film-spec-row .value strong { font-weight: var(--fw-heading); }
@media (max-width: 640px) {
  .film-spec-row { grid-template-columns: 1fr; gap: 4px; }
}

/* 사진 크레딧 (figcaption 안에 인라인) */
.photo-credit {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.photo-credit a:hover { color: var(--text); }

/* feel:toon webtoon 스트립 (illustration / feeltoon 카테고리용) */
.toon-strip {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 40px;
}
.toon-strip img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 4px;
}
.toon-note {
  max-width: var(--read-width);
  margin: 32px auto 0;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}
[data-theme="dark"] .toon-strip img { background: var(--bg-sub); }

/* ─ 흰 배경 제품 사진 (본문) — 라인 없이 흰 배경만 ─ */
.article-body figure.on-white {
  margin: 40px 0;
  background: transparent;
}
.article-body figure.on-white > picture,
.article-body figure.on-white > picture img,
.article-body figure.on-white img {
  background: #ffffff;
}
.article-body figure.on-white.product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.article-body figure.on-white.product-pair figcaption {
  grid-column: 1 / -1;
}
.article-body figure.on-white.product-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.article-body figure.on-white.product-trio figcaption {
  grid-column: 1 / -1;
}
@media (max-width: 600px) {
  .article-body figure.on-white.product-trio { grid-template-columns: 1fr; }
  .article-body figure.on-white.product-pair { grid-template-columns: 1fr; }
}

/* ════════ Author bio + Related by author (article 끝 inject) ════════ */
.article-author-bio {
  max-width: var(--read-width);
  margin: 80px auto 0;
  padding: 0 24px;
}
.author-bio-card {
  display: block;
  padding: 28px;
  background: var(--bg-sub);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: background var(--duration-base) var(--easing);
}
.author-bio-card:hover { background: var(--accent-soft); }
.author-bio-card h3 {
  font-size: 22px;
  font-weight: var(--fw-heading);
  letter-spacing: var(--ls-default);
  line-height: var(--lh-title);
  margin: 0 0 8px;
}
.author-bio-card p {
  font-size: 15px;
  font-weight: var(--fw-all);
  line-height: var(--lh-body);
  color: var(--text-muted);
  margin: 0 0 12px;
}
.author-bio-link {
  font-size: 14px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.04em;
  color: var(--text);
}

.related-by-author {
  max-width: var(--read-width);
  margin: 56px auto 0;
  padding: 0 24px;
}
.related-header {
  font-size: 12px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: block;
  color: var(--text);
  transition: opacity var(--duration-base) var(--easing);
}
.related-card:hover { opacity: 0.7; }
.related-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-sub);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}
.related-card-img.is-text { background: var(--accent-soft); }
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-card h5 {
  font-size: 15px;
  font-weight: var(--fw-heading);
  line-height: var(--lh-title);
  letter-spacing: var(--ls-default);
  margin: 0;
}
@media (max-width: 720px) {
  .related-grid { grid-template-columns: 1fr; gap: 24px; }
  .article-author-bio { margin-top: 56px; }
  .related-by-author { margin-top: 40px; }
}
