/* ================================================================
   KUS NG · ARTICLE DETAIL PAGE
   Editorial long-read layout
   ================================================================ */

/* ====== ARTICLE HEADER ====== */
.art-hd {
  position: relative;
  padding: 180px 0 90px;
  background:
    radial-gradient(ellipse at 28% 38%, rgba(201, 165, 92, 0.13) 0%, transparent 52%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 165, 92, 0.06) 0%, transparent 45%),
    #000;
  overflow: hidden;
}

.art-hd__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Large ghost issue number behind the text */
.art-hd__bg-num {
  position: absolute;
  top: 50%;
  right: -1%;
  transform: translateY(-52%);
  font-family: var(--display-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(200px, 34vw, 560px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 165, 92, 0.055);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.art-hd__inner {
  position: relative;
  z-index: 5;
  max-width: 840px;
}

/* Breadcrumb */
.art-hd__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.34em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
.art-hd__breadcrumb a {
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.3s;
}
.art-hd__breadcrumb a:hover { color: var(--gold); }
.art-hd__breadcrumb span { opacity: 0.35; }
.art-hd__breadcrumb strong { color: var(--gold); font-weight: 500; }

/* Category row */
.art-hd__cat {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.art-hd__cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 1.05rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(201, 165, 92, 0.09);
  border: 1px solid rgba(201, 165, 92, 0.32);
  border-radius: 999px;
}

.art-hd__issue {
  font-family: var(--italic-en);
  font-style: italic;
  font-size: 0.83rem;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}

/* ── META ROW (read time · word count · date) — appears BEFORE the title ── */
.art-hd__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
  padding: 0.8rem 1.35rem;
  background: rgba(255, 255, 255, 0.038);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  width: fit-content;
  box-shadow: inset 0 1px 0 rgba(255, 240, 210, 0.06);
}

.art-hd__meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.71rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  white-space: nowrap;
}

.art-hd__meta-item svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}

.art-hd__meta-item strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.art-hd__meta-sep {
  color: var(--ink-dim);
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ── TITLE ── */
.art-hd__title {
  font-family: var(--display-cn);
  font-weight: 400;
  font-size: clamp(40px, 5.35vw, 74px);
  line-height: 1.16;
  letter-spacing: 0.028em;
  margin-bottom: 2.8rem;
  background: linear-gradient(180deg,
    #fff8e0 0%,
    #f5dca0 22%,
    #c9a55c 58%,
    #8e6d2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(201, 165, 92, 0.22));
}

.art-hd__title em {
  font-family: var(--serif-cn);
  font-style: normal;
  font-weight: 300;
  font-size: 0.48em;
  display: block;
  margin-top: 1.1rem;
  letter-spacing: 0.06em;
  opacity: 0.88;
}

/* ── AUTHOR BYLINE ── */
.art-hd__author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  max-width: 500px;
}

.art-hd__author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(245, 220, 160, 0.38);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.5), 0 0 18px rgba(201, 165, 92, 0.22);
}
.art-hd__author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.art-hd__author-info { display: flex; flex-direction: column; gap: 0.18rem; }

.art-hd__author-name {
  font-family: var(--display-en);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--ink);
  margin-right: -0.34em;
}

.art-hd__author-role {
  font-family: var(--display-cn);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.82;
}

/* ================================================================
   AUDIO PLAYER — sticky below header (OpenAI TTS version)
   ================================================================ */
.player-wrap {
  position: sticky;
  top: 78px;
  z-index: 50;
  padding: 0.75rem 0;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom: 1px solid rgba(201, 165, 92, 0.10);
}

.player {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0.9rem 1.55rem;
  border-radius: var(--radius-lg);
  transition: border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
}

.player.is-active {
  border-color: rgba(245, 220, 160, 0.28) !important;
  box-shadow:
    0 0 32px rgba(201, 165, 92, 0.12),
    0 8px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255, 240, 210, 0.08) !important;
}

/* ── pscreen: each state fills the player row ── */
.pscreen {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1.4rem;
}

/* ── Screen A: idle (single listen button) ── */
.pscreen--idle {
  gap: 2rem;
}

.player__label-col {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  flex-shrink: 0;
}

.player__label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.player__sub {
  font-family: var(--display-cn);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* Single listen button */
.player__listen-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 1.6rem 0.62rem 1.2rem;
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.07);
  color: var(--gold-bright);
  font-family: var(--display-cn);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.32s var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}

.player__listen-btn:hover {
  background: var(--gold);
  border-color: var(--gold-bright);
  color: #1a1208;
  box-shadow: 0 0 26px var(--gold-glow);
  transform: translateY(-1px);
}

.player__listen-btn:active {
  transform: translateY(0);
}

/* ── Screen C: playback ── */
.pscreen--play {
  gap: 1.2rem;
}

/* Left: play button + info */
.player__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.player__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 220, 160, 0.38);
  background: rgba(201, 165, 92, 0.07);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.32s var(--ease-out);
  flex-shrink: 0;
}

.player__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1208;
  box-shadow: 0 0 22px var(--gold-glow);
  transform: scale(1.08);
}

.player__btn.is-playing {
  background: linear-gradient(135deg, #f5dca0, #c9a55c, #a07c3a);
  border-color: var(--gold-bright);
  color: #1a1208;
  box-shadow: 0 0 26px var(--gold-glow);
}

.player__btn svg { width: 18px; height: 18px; }

.player__info {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.player__time-display {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

/* Centre: waveform + seek bar */
.player__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.player__waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 28px;
  pointer-events: none;
}

.player__bar {
  flex: 1;
  height: var(--h, 40%);
  max-height: 100%;
  border-radius: 2px;
  background: rgba(201, 165, 92, 0.22);
  animation: bar-idle 2.2s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
  transform-origin: center;
}

@keyframes bar-idle {
  0%   { transform: scaleY(0.45); opacity: 0.35; }
  100% { transform: scaleY(1);    opacity: 0.7; }
}

.player.is-active .player__bar {
  background: rgba(201, 165, 92, 0.65);
  animation: bar-active 0.55s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
}

@keyframes bar-active {
  0%   { transform: scaleY(0.28); }
  100% { transform: scaleY(1);    }
}

/* Progress bar (read-only — Web Speech API cannot seek) */
.player__seek-bar {
  position: relative;
  height: 4px;
  background: rgba(201, 165, 92, 0.12);
  border-radius: 999px;
  cursor: default;
  touch-action: none;
}

.player__seek-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(to right, var(--gold-deep), var(--gold), var(--gold-bright));
  border-radius: 999px;
  width: 0%;
  transition: width 0.4s ease;
  pointer-events: none;
}

.player__seek-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-glow);
  transform: translate(-50%, -50%) scale(1);
  transition: left 0.4s ease;
  pointer-events: none;
}

/* Right: switch voice + stop */
.player__right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.player__switch-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201, 165, 92, 0.22);
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.05);
  color: var(--ink-mute);
  font-family: var(--display-cn);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.28s;
  white-space: nowrap;
}

.player__switch-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.player__switch-btn:hover {
  border-color: rgba(245, 220, 160, 0.4);
  color: var(--gold);
  background: rgba(201, 165, 92, 0.08);
}

.player__stop {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-mute);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s;
}

.player__stop:hover {
  border-color: rgba(245, 220, 160, 0.28);
  color: var(--gold);
}

.player__stop svg { width: 11px; height: 11px; }

/* ================================================================
   PROSE — article body
   ================================================================ */
.art-body {
  padding: 6rem 0 3rem;
  background: #000;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Base paragraph ── */
.prose p {
  font-family: var(--serif-cn);
  font-size: clamp(16.5px, 1.12vw, 18.5px);
  line-height: 2.1;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 0.025em;
  border-radius: var(--radius-md);
  transition: background 0.4s, box-shadow 0.4s, color 0.4s, padding 0.4s;
}

/* ── Opening lead paragraph ── */
.prose__lead {
  font-size: clamp(17px, 1.22vw, 20px) !important;
  line-height: 1.95 !important;
  color: var(--ink) !important;
  font-weight: 400 !important;
  padding-left: 1.8rem !important;
  border-left: 2px solid var(--gold) !important;
  margin-bottom: 3.5rem !important;
  background: none !important;
  box-shadow: none !important;
}

/* ── Section headings ── */
.prose h2 {
  font-family: var(--display-cn);
  font-weight: 400;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.55;
  letter-spacing: 0.065em;
  color: var(--ink);
  margin: 4.5rem 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: none;
}

.prose h2::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Pull quote (金句) ── */
.pull-quote {
  position: relative;
  margin: 3.5rem 0;
  padding: 2rem 2.5rem 2rem 2.8rem;
  background: rgba(201, 165, 92, 0.045);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  overflow: visible;
  transition: background 0.4s, box-shadow 0.4s;
}

.pull-quote::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem;
  left: 1.8rem;
  font-family: var(--display-en);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  font-style: normal;
  font-weight: 300;
  pointer-events: none;
}

/* When blockquote itself is the pull-quote element */
.pull-quote,
.pull-quote p {
  font-family: var(--display-cn) !important;
  font-weight: 400 !important;
  font-size: clamp(17px, 1.35vw, 20px) !important;
  line-height: 1.8 !important;
  letter-spacing: 0.04em !important;
  color: var(--gold-bright) !important;
  border-left: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

/* ── Key sentence (关键句) ── */
.key-line {
  position: relative;
  padding: 1.35rem 2rem 1.35rem 1.7rem !important;
  background: rgba(201, 165, 92, 0.07) !important;
  border-left: 2px solid rgba(201, 165, 92, 0.55) !important;
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  color: var(--ink) !important;
  font-weight: 400 !important;
}

.key-line::after {
  content: "KEY";
  position: absolute;
  top: -1px;
  right: 1rem;
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  background: rgba(201, 165, 92, 0.13);
  padding: 0.18rem 0.55rem;
  border-radius: 0 0 3px 3px;
  font-weight: 700;
}

/* ── Gold statement (品牌金句宣言) ── */
.gold-statement {
  position: relative;
  margin: 4.2rem 0;
  padding: 2.8rem 1.5rem 2.8rem 3.7rem !important;
  background:
    linear-gradient(90deg, rgba(201, 165, 92, 0.075), transparent 58%),
    rgba(255, 255, 255, 0.012) !important;
  border-left: 2px solid rgba(245, 220, 160, 0.78) !important;
  border-radius: 0 !important;
  color: var(--gold-bright) !important;
  font-family: var(--display-cn) !important;
  font-size: clamp(22px, 2.25vw, 34px) !important;
  line-height: 1.82 !important;
  letter-spacing: 0.12em !important;
  font-weight: 400 !important;
  text-shadow: 0 0 22px rgba(201, 165, 92, 0.16);
  box-shadow: none !important;
}

.gold-statement::before {
  content: "「";
  position: absolute;
  top: 0.3rem;
  left: 2.7rem;
  font-family: var(--display-cn);
  font-size: clamp(74px, 8vw, 132px);
  line-height: 1;
  color: rgba(201, 165, 92, 0.12);
  pointer-events: none;
}

.gold-statement::after {
  content: "」";
  display: inline-block;
  margin-left: 0.45em;
  color: rgba(245, 220, 160, 0.58);
}

.gold-statement strong {
  color: #fff1bd;
  font-weight: 500;
}

/* ── TTS active paragraph highlight ── */
.is-speaking {
  background: rgba(201, 165, 92, 0.07) !important;
  box-shadow: 0 0 0 1px rgba(201, 165, 92, 0.14), 0 0 30px rgba(201, 165, 92, 0.07) !important;
  padding-left: 0.7rem !important;
  padding-right: 0.7rem !important;
  color: var(--ink) !important;
}

/* h2 when speaking — don't add awkward padding */
.prose h2.is-speaking {
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: var(--gold-bright) !important;
}

/* pull-quote when speaking */
.pull-quote.is-speaking {
  background: rgba(201, 165, 92, 0.10) !important;
}

.gold-statement.is-speaking {
  background:
    linear-gradient(90deg, rgba(201, 165, 92, 0.13), transparent 62%),
    rgba(255, 255, 255, 0.018) !important;
}

/* ── Section break ornament ── */
.section-break {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 5rem 0;
}

.section-break > span:not(.section-break__mark) {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 165, 92, 0.22));
}

.section-break > span:last-child {
  background: linear-gradient(to left, transparent, rgba(201, 165, 92, 0.22));
}

.section-break__mark {
  font-family: var(--display-en);
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.45;
  letter-spacing: 0.5em;
  flex: none !important;
  background: none !important;
  height: auto !important;
}

/* ================================================================
   AUTHOR CARD
   ================================================================ */
.art-author {
  padding: 4rem 0 5rem;
  background: #000;
}

.art-author__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.8rem;
  align-items: center;
  padding: 2.4rem 2.8rem;
  border-radius: var(--radius-lg);
  max-width: 820px;
  margin: 0 auto;
}

.art-author__avatar {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 220, 160, 0.18);
}

.art-author__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: contrast(1.04) saturate(0.9);
}

.art-author__corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.art-author__corner--tl { top: 10px; left: 10px; border-top-width: 1px; border-left-width: 1px; }
.art-author__corner--br { bottom: 10px; right: 10px; border-bottom-width: 1px; border-right-width: 1px; }

.art-author__body { display: flex; flex-direction: column; }

.art-author__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.art-author__eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.art-author__name {
  font-family: var(--display-en);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.art-author__role {
  font-family: var(--display-cn);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.82;
  margin-bottom: 1.4rem;
}

.art-author__bio {
  font-family: var(--serif-cn);
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.8rem;
}

.art-author__bio strong { color: var(--ink); font-weight: 500; }

/* ================================================================
   RELATED ARTICLES
   ================================================================ */
.art-related {
  padding: 0 0 6rem;
  background: #000;
}

.art-related__head { margin-bottom: 2rem; }

.art-related__eyebrow {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.art-related__eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}

.art-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 820px;
}

.art-related__card {
  padding: 1.7rem 1.5rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: all 0.4s var(--ease-out);
}

.art-related__card:hover {
  border-color: rgba(245, 220, 160, 0.3) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201, 165, 92, 0.14),
              inset 0 0 30px rgba(201, 165, 92, 0.06) !important;
}

.art-related__num {
  font-family: var(--italic-en);
  font-style: italic;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.75;
}

.art-related__cat {
  display: inline-flex;
  padding: 0.28rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(201, 165, 92, 0.09);
  border: 1px solid rgba(201, 165, 92, 0.2);
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.art-related__title {
  font-family: var(--display-cn);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  flex: 1;
  transition: color 0.3s;
}

.art-related__card:hover .art-related__title { color: var(--gold-bright); }

.art-related__read {
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 600;
  transition: letter-spacing 0.3s;
}

.art-related__card:hover .art-related__read { letter-spacing: 0.38em; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .art-related__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .art-hd { padding: 150px 0 60px; }
  .art-hd__title { font-size: clamp(32px, 8vw, 48px); }
  .art-hd__bg-num { font-size: clamp(150px, 42vw, 340px); }

  .player { gap: 1rem; }
  .player__waveform { display: none; }
  .player__progress-bar { display: none; }

  .prose { max-width: 100%; }

  .art-author__inner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .art-author__avatar {
    max-width: 160px;
    aspect-ratio: 1;
    border-radius: 50%;
  }
  .art-author__corner { display: none; }

  .art-related__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .art-hd__meta {
    gap: 0.6rem;
    padding: 0.7rem 1.1rem;
    border-radius: var(--radius-md);
    flex-wrap: wrap;
    max-width: 100%;
  }
  .art-hd__meta-item { font-size: 0.68rem; }
  .art-hd__meta-sep:last-of-type { display: inline; }
  .art-hd__meta-item:last-child { display: flex; }

  .player { padding: 0.8rem 1rem; min-height: auto; }
  .player__center { display: none; }

  .pull-quote { padding: 1.6rem 1.4rem 1.6rem 1.7rem; }
  .pull-quote::before { font-size: 3.5rem; top: -0.3rem; left: 1rem; }
  .gold-statement {
    margin: 3.2rem 0;
    padding: 2.1rem 0.8rem 2.1rem 1.55rem !important;
    font-size: clamp(20px, 6.2vw, 25px) !important;
    line-height: 1.9 !important;
    letter-spacing: 0.08em !important;
  }
  .gold-statement::before {
    left: 1.05rem;
    font-size: 70px;
  }

  .art-related__grid { grid-template-columns: 1fr; }
}
