/* ============================================================
   NITRO MUSIC — Column (칼럼) — MOBILE STYLESHEET
   Dedicated mobile design. Not a responsive stretch.
   ============================================================ */

@font-face {
  font-family: 'Pretendard';
  font-weight: 45 920; font-style: normal; font-display: swap;
  src: url('assets/fonts/PretendardVariable.ttf') format('truetype-variations'),
       url('assets/fonts/PretendardVariable.ttf') format('truetype');
}
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #fafaf7; --bg-1: #f2f1ec; --bg-2: #ffffff; --bg-3: #ebeae4;
  --ink: #0a0a0b; --ink-1: #17171a; --ink-dim: #4F4F57; --ink-mute: #6B6B73;
  --line: rgba(10,10,11,0.10); --line-str: rgba(10,10,11,0.22);
  --red: #E63946; --red-soft: #ff5c6a; --red-tint: rgba(230,57,70,0.08);
  --font-kr: 'Pretendard', -apple-system, system-ui, sans-serif;
  --font-dp: 'Space Grotesk', 'Pretendard', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --pad: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-kr); -webkit-font-smoothing: antialiased;
  font-size: 14px; line-height: 1.6; letter-spacing: -0.005em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: #fff; }

/* ============ TOP NAV ============ */
.m-nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.m-nav .logo img { height: 20px; filter: invert(1); }
.m-nav .center {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em;
  color: var(--red); font-weight: 500; text-transform: uppercase;
}
.m-nav .ham {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%;
  transition: background .15s;
}
.m-nav .ham:active { background: var(--bg-1); }
.m-nav .ham span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  position: relative;
}
.m-nav .ham span::before, .m-nav .ham span::after {
  content:''; position:absolute; left:0; width:100%; height: 1.5px; background: var(--ink);
}
.m-nav .ham span::before { top: -6px; }
.m-nav .ham span::after { top: 6px; }

/* Inline mini lang toggle (top nav / sticky back bar) */
.lang-mini {
  display: inline-flex;
  border: 1px solid var(--line-str);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  font-weight: 600;
  align-self: center;
  flex-shrink: 0;
}
.lang-mini button {
  padding: 4px 8px;
  color: var(--ink-mute);
  line-height: 1.4;
}
.lang-mini button.on {
  background: var(--ink);
  color: var(--bg);
}

/* ============ MENU (FULLSCREEN) ============ */
.m-menu {
  position: fixed; inset: 0; z-index: 120;
  background: var(--ink); color: var(--bg);
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  padding: 12px 16px 28px;
  overflow-y: auto;
}
.m-menu.open { transform: translateY(0); }
.m-menu .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.m-menu .bar .logo img { height: 20px; }
.m-menu .bar .close {
  width: 36px; height: 36px; display: grid; place-items: center;
  color: var(--bg);
}
.m-menu ul { list-style: none; display: flex; flex-direction: column; }
.m-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.m-menu ul li a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 22px 0;
  font-size: 26px; font-weight: 700; letter-spacing: -0.025em;
}
.m-menu ul li a .n {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.25em;
  color: var(--red); font-weight: 500; min-width: 34px;
}
.m-menu ul li a.active { color: var(--red); }
.m-menu .foot {
  margin-top: auto; padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}
.m-menu .foot .lang {
  display: inline-flex; gap: 2px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; overflow: hidden;
}
.m-menu .foot .lang button {
  padding: 5px 12px; font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 600;
}
.m-menu .foot .lang button.on { background: var(--red); color: #fff; }
.m-menu .cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px; background: var(--red); color: #fff;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  margin-top: 20px;
}

/* ============ HERO ============ */
.m-hero {
  padding: 28px var(--pad) 24px;
  border-bottom: 1px solid var(--line);
}
.m-hero .eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em;
  color: var(--red); font-weight: 500; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.m-hero .eyebrow::before { content:''; width: 20px; height: 1px; background: var(--red); }
.m-hero h1 {
  font-family: var(--font-kr); font-weight: 800;
  font-size: 34px; line-height: 1.08; letter-spacing: -0.035em;
}
.m-hero h1 em { font-style: normal; color: var(--red); font-family: var(--font-dp); font-weight: 500; }
.m-hero .lead {
  font-size: 14px; color: var(--ink-dim); line-height: 1.55; margin-top: 14px;
}
.m-hero .stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.m-hero .stats .c { padding: 2px 0; }
.m-hero .stats .c + .c { border-left: 1px solid var(--line); padding-left: 14px; }
.m-hero .stats .v {
  font-family: var(--font-dp); font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink);
}
.m-hero .stats .v em { font-style: normal; color: var(--red); }
.m-hero .stats .l {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em;
  color: var(--ink-mute); text-transform: uppercase; margin-top: 3px;
}

/* ============ FILTER BAR (STICKY) ============ */
.m-filter {
  position: sticky; top: 55px; z-index: 40;
  background: var(--bg);
  padding: 10px var(--pad);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.m-filter .f-btn {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-2); border: 1px solid var(--line-str);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: -0.005em;
  color: var(--ink);
}
.m-filter .f-btn .chev { font-size: 10px; color: var(--ink-mute); }
.m-filter .f-btn .lbl { display: inline-flex; align-items: center; gap: 8px; }
.m-filter .f-btn .ct {
  font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-mute); letter-spacing: 0.1em;
}
.m-filter .search-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line-str); border-radius: 50%; background: var(--bg-2);
  color: var(--ink-dim);
}

/* ============ SECTION HEAD ============ */
.m-sec-head {
  padding: 28px var(--pad) 12px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.m-sec-head h2 {
  font-family: var(--font-kr); font-size: 18px; font-weight: 800;
  letter-spacing: -0.025em;
  display: flex; align-items: baseline; gap: 10px;
}
.m-sec-head h2 .k {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.25em;
  color: var(--red); font-weight: 500; text-transform: uppercase;
}
.m-sec-head .all {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.15em;
  color: var(--ink-dim); text-transform: uppercase;
}

/* ============ TOP5 SECTION ============ */
.m-top5 {
  padding: 0 var(--pad);
}
.m-top5-row {
  display: grid; grid-template-columns: 32px 1fr;
  gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--line);
}
.m-top5-row:last-child { border-bottom: 1px solid var(--line); }
.m-top5-row .rk {
  font-family: var(--font-dp); font-size: 22px; font-weight: 600;
  color: var(--red); line-height: 1; letter-spacing: -0.02em;
  padding-top: 2px;
}
.m-top5-row .body {
  display: flex; flex-direction: column; gap: 6px;
}
.m-top5-row .cat {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.15em;
  color: var(--red); text-transform: uppercase; font-weight: 500;
}
.m-top5-row .t {
  font-size: 14.5px; font-weight: 700; line-height: 1.4; letter-spacing: -0.02em;
  color: var(--ink);
  word-break: keep-all; overflow-wrap: break-word;
}
.m-top5-row .meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em;
  color: var(--ink-mute); text-transform: uppercase;
}
.m-top5-row .meta .v { color: var(--red); font-weight: 600; }

/* ============ LATEST LIST (news-list style, 80px thumb + right body) ============ */
.m-latest { padding: 0 var(--pad); }
.m-row {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 14px; padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: stretch;
}
.m-latest > .m-row:last-child { border-bottom: 1px solid var(--line); }
.m-row .thumb {
  width: 88px; height: 88px; border-radius: 2px; overflow: hidden;
  display: grid; place-items: center; padding: 10px;
  position: relative;
  flex-shrink: 0;
}
.m-row .thumb.photo { padding: 0; }
.m-row .thumb.photo img { width: 100%; height: 100%; object-fit: cover; }
.m-row .thumb .hk {
  font-family: var(--font-kr); font-size: 11px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15; white-space: pre-line;
  text-align: left; width: 100%; z-index: 1;
}
.m-row .thumb.abstract .hk {
  font-family: var(--font-dp); font-weight: 500; font-size: 20px;
  text-align: center; letter-spacing: -0.02em;
}
.m-row .body {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0; padding: 2px 0;
}
.m-row .cat {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.15em;
  color: var(--red); text-transform: uppercase; font-weight: 500;
}
.m-row .t {
  font-size: 14.5px; font-weight: 700; line-height: 1.4; letter-spacing: -0.02em;
  color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  word-break: keep-all;
}
.m-row .meta {
  margin-top: auto;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em;
  color: var(--ink-mute); text-transform: uppercase;
}
.m-row .meta .v { color: var(--red); font-weight: 600; }
.m-row .meta .sep { opacity: 0.4; }

/* ============ FILTER SHEET (BOTTOM SHEET) ============ */
.m-sheet-backdrop {
  position: fixed; inset: 0; z-index: 140;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.m-sheet-backdrop.open { opacity: 1; pointer-events: auto; }
.m-sheet {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--bg); border-radius: 16px 16px 0 0;
  transform: translateY(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  max-height: 85vh; overflow-y: auto;
  padding: 8px 20px 28px;
}
.m-sheet.open { transform: translateY(0); }
.m-sheet .handle {
  width: 44px; height: 4px; border-radius: 4px; background: var(--line-str);
  margin: 8px auto 18px;
}
.m-sheet h4 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em;
  color: var(--ink-mute); text-transform: uppercase; font-weight: 500;
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.m-sheet h4:not(:first-of-type) { margin-top: 22px; }
.m-sheet .opts { display: flex; flex-direction: column; gap: 2px; }
.m-sheet .opts button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 12px 0;
  font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink); text-align: left;
  border-bottom: 1px solid var(--line);
}
.m-sheet .opts button:last-child { border-bottom: 0; }
.m-sheet .opts button.on { color: var(--red); font-weight: 700; }
.m-sheet .opts button .ct {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--ink-mute); font-weight: 500;
}
.m-sheet .opts button.on .ct { color: var(--red); opacity: 0.7; }
.m-sheet .apply {
  margin-top: 22px; width: 100%; padding: 16px;
  background: var(--ink); color: var(--bg);
  font-size: 14px; font-weight: 600;
}

/* ============ FOOTER ============ */
.m-footer {
  padding: 48px var(--pad) 32px;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.m-footer .logo img { height: 22px; filter: invert(1); margin-bottom: 14px; }
.m-footer p { font-size: 12.5px; color: var(--ink-dim); line-height: 1.6; margin-bottom: 24px; }
.m-footer .links { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 16px; margin-bottom: 28px; }
.m-footer .links h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--ink-mute); text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.m-footer .links ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.m-footer .links ul a { font-size: 12.5px; color: var(--ink-dim); }
.m-footer .copy {
  padding-top: 18px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--ink-mute); text-transform: uppercase;
  display: flex; justify-content: space-between;
}

/* ============ ARTICLE PAGE (MOBILE) ============ */
.m-art-back {
  position: sticky; top: 0; z-index: 50;
  padding: 12px 16px;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.m-art-back .b {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em;
  color: var(--ink-dim); text-transform: uppercase;
  padding: 6px 0;
}
.m-art-back .mini {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--ink-mute); text-transform: uppercase;
  flex: 1; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 180px;
}
.m-art-back .actions { display: flex; gap: 6px; align-items: center; }
.m-art-back .actions button {
  width: 32px; height: 32px; display: grid; place-items: center;
  color: var(--ink-dim);
}

.m-art-head {
  padding: 22px var(--pad) 24px;
}
.m-art-head .kicker {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em;
  color: var(--red); font-weight: 500; text-transform: uppercase;
  display: inline-flex; gap: 10px; align-items: center;
  margin-bottom: 14px;
}
.m-art-head .kicker::before { content:''; width: 18px; height: 1px; background: var(--red); }

.m-art-head h1 {
  font-family: var(--font-kr); font-weight: 800;
  font-size: 26px; line-height: 1.22; letter-spacing: -0.03em;
  margin-bottom: 14px;
  word-break: keep-all; overflow-wrap: break-word;
}
.m-art-head .dek {
  font-size: 15px; color: var(--ink-dim); line-height: 1.6; letter-spacing: -0.01em;
  word-break: keep-all; overflow-wrap: break-word;
}

/* head stats strip: for whom / read / views */
.m-art-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 22px 0 0;
}
.m-art-stats .c {
  padding: 14px 12px;
  border-right: 1px solid var(--line);
}
.m-art-stats .c:last-child { border-right: 0; }
.m-art-stats .l {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em;
  color: var(--ink-mute); text-transform: uppercase; margin-bottom: 4px;
}
.m-art-stats .v {
  font-family: var(--font-dp); font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1.2;
}
.m-art-stats .c.audience .v {
  font-family: var(--font-kr); font-size: 12.5px;
  font-weight: 600; line-height: 1.3; color: var(--ink);
}

.m-art-byline {
  display: flex; gap: 12px; align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.m-art-byline .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-dp); font-size: 13px; font-weight: 600;
}
.m-art-byline .who .n { font-weight: 700; font-size: 13px; letter-spacing: -0.01em; }
.m-art-byline .who .r {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  color: var(--ink-mute); text-transform: uppercase;
}
.m-art-byline .date {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  color: var(--ink-mute); text-transform: uppercase;
}

.m-art-hero {
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  padding: 22px;
  position: relative; overflow: hidden;
  margin-bottom: 24px;
}
.m-art-hero .hk {
  font-family: var(--font-kr); font-size: 26px; font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.1;
  white-space: pre-line; width: 100%; text-align: left;
  z-index: 1; word-break: keep-all;
}
.m-art-hero.photo { padding: 0; }
.m-art-hero.photo img { width: 100%; height: 100%; object-fit: cover; }

.m-art-body {
  padding: 0 var(--pad) 0;
}
.m-art-body p {
  font-size: 15.5px; line-height: 1.85; color: var(--ink-1);
  letter-spacing: -0.012em;
  margin-bottom: 22px;
  word-break: keep-all; overflow-wrap: break-word;
  text-wrap: pretty;
}
.m-art-body .lede {
  font-size: 16.5px; line-height: 1.75; color: var(--ink);
  letter-spacing: -0.018em; font-weight: 500;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  word-break: keep-all;
}
.m-art-body h2 {
  font-family: var(--font-kr); font-weight: 800;
  font-size: 20px; line-height: 1.3; letter-spacing: -0.03em;
  margin: 40px 0 14px;
  word-break: keep-all;
}
.m-art-body h2::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--red); margin-bottom: 12px;
}
.m-art-body .callout {
  border-left: 3px solid var(--red);
  background: var(--red-tint);
  padding: 16px 18px; margin: 28px 0;
  font-size: 14.5px; line-height: 1.65; color: var(--ink);
  font-weight: 500; letter-spacing: -0.015em;
  word-break: keep-all;
}

/* in-article figure */
.m-art-body .fig {
  margin: 32px calc(var(--pad) * -1) 32px;
  background: var(--bg-1);
}
.m-art-body .fig .frame {
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  padding: 24px;
  position: relative; overflow: hidden;
}
.m-art-body .fig .frame.photo { padding: 0; }
.m-art-body .fig .frame.photo img { width: 100%; height: 100%; object-fit: cover; }
.m-art-body .fig .frame .hk {
  font-family: var(--font-kr); font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15;
  white-space: pre-line; width: 100%; text-align: left;
  word-break: keep-all;
}
.m-art-body .fig figcaption {
  padding: 10px var(--pad) 14px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  color: var(--ink-mute); text-transform: uppercase;
  line-height: 1.5;
}

.m-art-tags {
  padding: 32px var(--pad) 0;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.m-art-tags .k {
  width: 100%;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-mute); text-transform: uppercase; margin-bottom: 8px;
}
.m-art-tags .tag {
  padding: 6px 11px; font-size: 11.5px; font-weight: 500; color: var(--ink-dim);
  border: 1px solid var(--line-str); border-radius: 999px;
  letter-spacing: -0.005em;
}

/* related */
.m-art-related {
  margin-top: 40px;
  padding: 28px 0 20px;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.m-art-related .head {
  padding: 0 var(--pad) 6px;
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.m-art-related .head h3 {
  font-size: 16px; font-weight: 800; letter-spacing: -0.025em;
  display: flex; gap: 10px; align-items: baseline;
}
.m-art-related .head h3 .k {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.25em;
  color: var(--red); font-weight: 500; text-transform: uppercase;
}
.m-art-related .list { padding: 0 var(--pad); }
.m-art-related .list .m-row { border-top: 1px solid var(--line); }
.m-art-related .list .m-row:last-child { border-bottom: 1px solid var(--line); }

/* Bottom CTA bar (sticky) */
.m-art-cta-bar {
  position: sticky; bottom: 0; left: 0; right: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink); color: #fff;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.m-art-cta-bar button {
  padding: 16px 14px; font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em;
  color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.m-art-cta-bar button:first-child {
  border-right: 1px solid rgba(255,255,255,0.15);
}
.m-art-cta-bar button.primary { background: var(--red); }
.m-art-cta-bar button.primary:active { background: var(--red-soft); }

/* Share sheet */
.m-share-sheet .share-list {
  display: flex; flex-direction: column;
}
.m-share-sheet .share-list button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 16px 0;
  font-size: 14.5px; color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 500; letter-spacing: -0.005em;
}
.m-share-sheet .share-list button:last-child { border-bottom: 0; }
.m-share-sheet .share-list button .ico {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-mute);
}

/* Audience chip palette */
.aud-ceo { background: #E63946; color: #fff; }
.aud-senior { background: #1d3a82; color: #fff; }
.aud-promoter { background: #0a0a0b; color: #fff; }
.aud-rookie-mk { background: #0a7a3e; color: #fff; }
.aud-new-artist { background: #c07a0e; color: #fff; }
.aud-senior-artist { background: #5a2a8a; color: #fff; }

/* Variant B switch (top corner pill) */
.m-var-pill {
  position: fixed; bottom: 20px; right: 16px; z-index: 45;
  background: var(--ink); color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.m-var-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* ========== VARIANT B: LARGE FEATURED + COMPACT LIST ========== */
body.var-b .m-top5 { display: none; }
body.var-b .m-featured {
  padding: 0 var(--pad) 8px;
  display: block;
}
body.var-b .m-featured .card {
  display: block;
  margin-bottom: 8px;
}
body.var-b .m-featured .thumb {
  aspect-ratio: 5/4;
  display: grid; place-items: center; padding: 22px;
  position: relative; overflow: hidden;
  margin-bottom: 14px;
}
body.var-b .m-featured .thumb.photo { padding: 0; }
body.var-b .m-featured .thumb.photo img { width: 100%; height: 100%; object-fit: cover; }
body.var-b .m-featured .thumb .hk {
  font-family: var(--font-kr); font-size: 26px; font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.1;
  white-space: pre-line; width: 100%; text-align: left; z-index: 1;
  word-break: keep-all;
}
body.var-b .m-featured .thumb.photo .overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  padding: 22px; display: flex; align-items: flex-end;
}
body.var-b .m-featured .thumb.photo .overlay .hk { color: #fff; }
body.var-b .m-featured .cat {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--red); text-transform: uppercase; font-weight: 500;
  margin-bottom: 8px;
}
body.var-b .m-featured h3 {
  font-size: 20px; font-weight: 800; line-height: 1.25; letter-spacing: -0.025em;
  margin-bottom: 10px;
  word-break: keep-all;
}
body.var-b .m-featured .dek {
  font-size: 13.5px; color: var(--ink-dim); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  word-break: keep-all; margin-bottom: 12px;
}
body.var-b .m-featured .meta {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-mute); text-transform: uppercase;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
  display: flex; gap: 10px;
}
body.var-b .m-featured .meta .v { color: var(--red); font-weight: 600; }

/* Variant B hides latest head's "최신" label and shows rest in same list */
body.var-b .m-sec-head.latest h2 .k::after { content: ' / 전체'; }

/* ============================================================
   AUDIENCE BADGES (CEO · 시니어 팀장 · 프로모터 담당자 · …)
   Shown inline next to every category line — matches v2 mobile design
   ============================================================ */
.cat-line {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px 8px; margin-bottom: 6px;
}
.cat-line .cat { margin: 0; }

.aud {
  font-family: var(--font-kr);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  padding: 3px 7px 4px;
  border-radius: 2px;
  display: inline-flex; align-items: center;
  white-space: nowrap;
  text-transform: none;
}
.aud.ceo           { background: #E63946; color: #fff; }
.aud.senior        { background: #1d3a82; color: #fff; }
.aud.promoter      { background: #0a0a0b; color: #fff; }
.aud.rookie-mk     { background: #0a7a3e; color: #fff; }
.aud.new-artist    { background: #c07a0e; color: #fff; }
.aud.senior-artist { background: #5a2a8a; color: #fff; }

/* Top5 row — slightly tighter */
.m-top5-row .cat-line { margin-bottom: 4px; }
.m-top5-row .aud { font-size: 9.5px; padding: 2px 6px 3px; }

/* List row — compact and inline */
.m-row .cat-line { margin-bottom: 4px; }
.m-row .aud { font-size: 9.5px; padding: 2px 6px 3px; }

/* Featured (Variant B) — pills sit below the thumb, next to category */
body.var-b .m-featured .cat-line { padding-top: 18px; }
