/* USB.KR — 매거진 리뷰 레이아웃 v2 */

:root {
  --paper: #f6f2ea;
  --paper-2: #fffdf9;
  --paper-3: #ede7db;
  --ink: #141311;
  --ink-2: #4b4740;
  --ink-3: #85806f;
  --rule: #ddd5c6;
  --rule-strong: #141311;
  --accent: #d5321f;
  --accent-2: #ff6a3d;
  --accent-soft: #fbe6df;
  --gold: #b7791c;
  --gold-soft: #fff1d3;
  --green: #1f7a4d;
  --green-soft: #dff3e7;
  --shadow-sm: 0 1px 2px rgba(20, 19, 17, 0.06), 0 8px 24px -16px rgba(20, 19, 17, 0.35);
  --shadow-lg: 0 2px 4px rgba(20, 19, 17, 0.06), 0 30px 60px -30px rgba(20, 19, 17, 0.55);
  --display: 'Fraunces', 'Noto Serif KR', Georgia, serif;
  --serif: 'Noto Serif KR', 'Fraunces', Georgia, serif;
  --sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
  --shell: 1280px;
  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0f0e10;
    --paper-2: #17161a;
    --paper-3: #1f1d22;
    --ink: #f3efe7;
    --ink-2: #bcb6a9;
    --ink-3: #8b8578;
    --rule: #2b2830;
    --rule-strong: #f3efe7;
    --accent: #ff6a52;
    --accent-2: #ffa07a;
    --accent-soft: #2d1a17;
    --gold: #e0b45b;
    --gold-soft: #2c2413;
    --green: #5fcf93;
    --green-soft: #12281c;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5), 0 10px 28px -18px rgba(0, 0, 0, 0.9);
    --shadow-lg: 0 2px 4px rgba(0, 0, 0, 0.5), 0 36px 70px -30px rgba(0, 0, 0, 0.95);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  font-feature-settings: 'ss01', 'cv01';
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 100;
}
.skip:focus {
  left: 8px;
  top: 8px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}

/* 필름 그레인 */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 0.16'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) {
  .grain {
    mix-blend-mode: screen;
    opacity: 0.18;
  }
}

/* 읽기 진행 바 */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 60;
}

/* ── 리빌 애니메이션 ───────────────────── */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js .reveal.in,
.no-reveal .reveal {
  opacity: 1;
  transform: none;
}

/* ── 마스트헤드 ─────────────────────────── */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.masthead__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--rule);
  transition: max-height 0.3s var(--ease), opacity 0.3s, padding 0.3s;
  max-height: 40px;
  overflow: hidden;
}
.masthead__tagline {
  font-family: var(--sans);
  letter-spacing: 0.28em;
}
.masthead.is-compact .masthead__top {
  max-height: 0;
  padding-block: 0;
  opacity: 0;
  border-bottom-width: 0;
}

.masthead__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px 12px;
  transition: padding 0.3s var(--ease);
}
.masthead.is-compact .masthead__bar {
  padding-block: 10px 6px;
}

.brand {
  font-family: var(--display);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variation-settings: 'opsz' 144;
  transform: scale(var(--brand-s, 1));
  transform-origin: left center;
  transition: transform 0.15s linear;
}
.brand__dot {
  color: var(--accent);
}
.brand__tld {
  color: var(--ink-3);
  font-weight: 500;
  font-style: italic;
}

.search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-2);
  padding-inline: 14px 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}
.search__icon {
  color: var(--ink-3);
}
.search input {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  padding: 9px 0;
  width: 200px;
  outline: none;
}
.search input::placeholder {
  color: var(--ink-3);
}
.search kbd {
  font-family: var(--display);
  font-size: 11px;
  color: var(--ink-3);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 2px 7px;
  background: var(--paper);
}

.nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar {
  display: none;
}
.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover {
  color: var(--ink);
  background: var(--paper-3);
}
.nav__link.is-active {
  color: var(--paper);
  background: var(--ink);
}

/* ── 티커 ───────────────────────────────── */

.ticker {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ticker__track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding-block: 9px;
  animation: ticker 48s linear infinite;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0.85;
}
.ticker__item:hover {
  opacity: 1;
}
.ticker__item b {
  font-family: var(--display);
  font-size: 12px;
  color: var(--accent-2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 1px 8px;
  letter-spacing: 0.06em;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ── 히어로 ─────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0e0d10;
  color: #f6f2ea;
}
.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: -2;
  filter: blur(46px) saturate(1.5);
  opacity: 0.55;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(14, 13, 16, 0.2), rgba(14, 13, 16, 0.9)),
    linear-gradient(180deg, rgba(14, 13, 16, 0.2), rgba(14, 13, 16, 0.85));
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding-block: 84px 96px;
  min-height: 640px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffb9a8;
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(255, 106, 61, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 10px rgba(255, 106, 61, 0);
  }
}

.hero__title {
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.06;
  color: #fff;
  text-wrap: balance;
}
.hero__title a {
  background-image: linear-gradient(var(--accent-2), var(--accent-2));
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: 0 96%;
  transition: background-size 0.5s var(--ease);
}
.hero__title a:hover {
  background-size: 100% 3px;
}

.hero__sub {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 2.1vw, 24px);
  color: rgba(246, 242, 234, 0.82);
}

.hero__verdict {
  position: relative;
  margin: 26px 0 0;
  padding: 14px 0 14px 22px;
  max-width: 52ch;
  font-size: 16px;
  color: rgba(246, 242, 234, 0.72);
}
.hero__verdict::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--accent-2), transparent);
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}
.hero__foot .meta {
  color: rgba(246, 242, 234, 0.55);
}
.hero__foot .meta__author {
  color: rgba(246, 242, 234, 0.85);
}

.hero__figure {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease);
}
.hero__figure:hover {
  transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-4px);
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero__ring {
  position: absolute;
  right: 18px;
  bottom: 18px;
}
.hero__tags {
  position: absolute;
  left: 18px;
  top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero__tags i {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 4px 10px;
}

.hero__ghost {
  position: absolute;
  left: -0.05em;
  bottom: -0.32em;
  margin: 0;
  z-index: -1;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(120px, 18vw, 260px);
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
}

/* ── 버튼 ───────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.2s;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(213, 50, 31, 0.8);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -14px rgba(213, 50, 31, 0.9);
}
.btn svg {
  transition: transform 0.3s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}

/* ── 메타 라인 ──────────────────────────── */

.meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 14px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.meta > * + *::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
  margin-right: 14px;
  vertical-align: middle;
}
.meta__author {
  font-weight: 600;
  color: var(--ink-2);
}

/* ── 통계 스트립 ────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -40px;
  position: relative;
  z-index: 3;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat {
  padding: 26px 28px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat:last-child {
  border-right: 0;
}
.stat__value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144;
}
.stat__value small {
  font-size: 14px;
  font-weight: 500;
  margin-left: 6px;
  color: var(--ink-3);
  letter-spacing: 0;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── 섹션 헤더 ──────────────────────────── */

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin: 88px 0 34px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--rule-strong);
}
.section-head__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  opacity: 0.55;
}
.section-head__text {
  flex: 1;
}
.eyebrow {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.section-title {
  font-size: clamp(26px, 3.2vw, 38px);
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  white-space: nowrap;
  padding-bottom: 4px;
}
.more i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}
.more:hover {
  color: var(--accent);
}
.more:hover i {
  transform: translateX(4px);
}

/* ── 카드 그리드 ────────────────────────── */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.grid--bento .card--lead {
  grid-column: span 2;
}

.card {
  position: relative;
}
.card__link {
  display: block;
  height: 100%;
}

.card__media {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--paper-3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45));
  opacity: 0.6;
  transition: opacity 0.4s;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.card__link:hover .card__media {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__link:hover .card__media img {
  transform: scale(1.06);
}
.card__link:hover .card__media::after {
  opacity: 0.85;
}

.card__cat {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  background: rgba(246, 242, 234, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (prefers-color-scheme: dark) {
  .card__cat {
    background: rgba(15, 14, 16, 0.8);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }
}
.card__media .score {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}
.card__num {
  position: absolute;
  right: 14px;
  top: 8px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.card__body {
  padding-top: 18px;
}
.card__title {
  font-size: 21px;
  font-weight: 700;
  transition: color 0.2s;
}
.card__link:hover .card__title {
  color: var(--accent);
}
.card__sub {
  margin: 8px 0 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.card__verdict {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--ink-3);
  border-left: 2px solid var(--rule);
  padding-left: 12px;
  font-family: var(--serif);
  font-weight: 500;
}
.card__body .meta {
  margin-top: 14px;
}

.card--lead .card__media {
  aspect-ratio: 16 / 8.2;
}
.card--lead .card__title {
  font-size: clamp(24px, 2.6vw, 32px);
}
.card--lead .card__sub {
  font-size: 16px;
}

.card--compact .card__title {
  font-size: 17.5px;
}
.card--compact .card__verdict {
  display: none;
}
.card--compact .card__media {
  aspect-ratio: 16 / 9;
}

/* ── 평점 배지 · 링 ─────────────────────── */

.score {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  border-radius: 8px;
  padding: 5px 10px;
  line-height: 1;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.6);
}
.score b {
  font-size: 16px;
  font-weight: 700;
}
.score small {
  font-size: 10px;
  opacity: 0.65;
}
.score--gold {
  background: linear-gradient(135deg, #d99a2b, #8f5f0c);
  color: #fff;
}
.score--green {
  background: linear-gradient(135deg, #2d9a63, #145a38);
  color: #fff;
}

.ring {
  --size: 112px;
  --c: var(--ink);
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: color-mix(in srgb, var(--paper-2) 92%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.ring--gold {
  --c: var(--gold);
}
.ring--green {
  --c: var(--green);
}
.ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring__track {
  fill: none;
  stroke: var(--rule);
  stroke-width: 6;
}
.ring__bar {
  fill: none;
  stroke: var(--c);
  stroke-width: 6;
  stroke-linecap: round;
  animation: ring 1.4s var(--ease) both;
}
@keyframes ring {
  from {
    stroke-dasharray: 0 999;
  }
}
.ring__val {
  display: grid;
  text-align: center;
  line-height: 1;
  font-family: var(--display);
  color: var(--ink);
}
.ring__val b {
  font-size: calc(var(--size) * 0.3);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.ring__val small {
  font-size: calc(var(--size) * 0.1);
  color: var(--ink-3);
  margin-top: 4px;
}

/* ── 카테고리 레일 ──────────────────────── */

.rail {
  margin-top: 80px;
  padding: 34px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--paper-2), var(--paper-3));
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
}
.rail__title {
  font-size: 22px;
}
.rail__desc {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-3);
}
.rail__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 10px 8px 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: transform 0.3s var(--ease), border-color 0.2s, color 0.2s, box-shadow 0.3s;
}
.chip small {
  font-family: var(--display);
  font-size: 12px;
  background: var(--paper-3);
  color: var(--ink-3);
  border-radius: 999px;
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}
.chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.chip:hover small {
  background: var(--accent-soft);
  color: var(--accent);
}

/* ── 리스트 페이지 ──────────────────────── */

.page-head {
  position: relative;
  padding-block: 72px 40px;
  border-bottom: 2px solid var(--rule-strong);
  margin-bottom: 44px;
}
.page-title {
  font-size: clamp(34px, 5vw, 60px);
  max-width: 18ch;
}
.page-desc {
  margin: 14px 0 0;
  color: var(--ink-2);
  max-width: 62ch;
  font-size: 17px;
}
.page-count {
  position: absolute;
  right: 0;
  bottom: 24px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 88px;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  opacity: 0.35;
}
.page-count small {
  font-size: 20px;
  -webkit-text-stroke: 0;
  color: var(--ink-3);
  margin-left: 6px;
  letter-spacing: 0;
}
.empty {
  padding: 80px 0;
  text-align: center;
  color: var(--ink-3);
  font-family: var(--serif);
  font-size: 18px;
}

/* ── 기사 본문 ──────────────────────────── */

.post__head {
  padding-block: 72px 40px;
  text-align: center;
  max-width: 900px;
}
.post__cat a {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.post__title {
  font-size: clamp(34px, 5vw, 64px);
  margin-top: 14px;
  text-wrap: balance;
}
.post__sub {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-2);
}
.post__head .meta {
  justify-content: center;
  margin-top: 22px;
}

.post__cover {
  margin: 0;
}
.post__cover img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}
.post__cover figcaption {
  max-width: var(--shell);
  margin: 12px auto 0;
  padding-inline: 24px;
  display: flex;
  gap: 18px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.post__layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 64px;
  margin-top: 56px;
}
.post__side {
  position: relative;
}
.post__side .verdict {
  position: sticky;
  top: 120px;
}

.verdict {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.verdict__ring {
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.verdict__na {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  padding: 30px 0;
}
.verdict__label {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.verdict__text {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-wrap: balance;
}
.verdict .tags {
  justify-content: center;
}
.verdict__facts {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 8px;
  text-align: left;
}
.verdict__facts div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.verdict__facts dt {
  color: var(--ink-3);
}
.verdict__facts dd {
  margin: 0;
  font-weight: 600;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--paper-3);
  border-radius: 999px;
  padding: 4px 11px;
}

.prose {
  font-size: 17.5px;
  line-height: 1.95;
  color: var(--ink);
  max-width: 68ch;
}
.prose p {
  margin: 0 0 26px;
}
.prose__lead {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--ink);
  border-top: 2px solid var(--rule-strong);
  padding-top: 24px;
}
.prose__lead::first-letter {
  font-family: var(--display);
  font-size: 4.2em;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin: 10px 14px 0 0;
  color: var(--accent);
}
.prose h2 {
  font-size: 26px;
  margin: 44px 0 16px;
}
.prose ul {
  padding-left: 20px;
  margin: 0 0 26px;
}
.prose li {
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 52px 0;
}
.split__col {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
}
.split__col h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.split__col h2 i {
  font-style: normal;
  font-family: var(--display);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #fff;
}
.split__col ul {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  color: var(--ink-2);
}
.split__col li {
  margin-bottom: 9px;
}
.split__col--pro h2 {
  color: var(--green);
}
.split__col--pro h2 i {
  background: var(--green);
}
.split__col--con h2 {
  color: var(--accent);
}
.split__col--con h2 i {
  background: var(--accent);
}

.specs {
  margin: 52px 0 72px;
}
.specs__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rule-strong);
  margin-bottom: 4px;
}
.specs__title {
  font-size: 22px;
}
.specs__note {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
}
.specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.specs th,
.specs td {
  text-align: left;
  padding: 14px 6px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.specs tr {
  transition: background 0.2s;
}
.specs tr:hover {
  background: var(--paper-2);
}
.specs th {
  width: 38%;
  font-weight: 500;
  color: var(--ink-3);
}
.specs td {
  font-weight: 600;
}

/* ── 푸터 ───────────────────────────────── */

.footer {
  margin-top: 110px;
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
  padding-top: 64px;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer__brand {
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.05em;
  margin: 0 0 12px;
}
.footer__brand span {
  color: var(--accent);
}
.footer__note {
  margin: 0;
  max-width: 44ch;
  font-size: 14.5px;
  color: var(--ink-2);
}
.footer__issue {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}
.footer__title {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
}
.footer__list li {
  margin-bottom: 9px;
}
.footer__list a {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.3s var(--ease), color 0.2s;
}
.footer__list a:hover {
  color: var(--accent);
  background-size: 100% 1px;
}
.footer__wordmark {
  margin-top: 48px;
  line-height: 0.72;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 340px);
  letter-spacing: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
  background: linear-gradient(180deg, var(--ink-3), transparent 80%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.35;
  transform: translateY(0.12em);
  user-select: none;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 20px 26px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-3);
}
.footer__legal p {
  margin: 0;
}

/* ── 반응형 ─────────────────────────────── */

@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
    padding-block: 64px 80px;
  }
  .hero__figure {
    transform: none;
    max-width: 720px;
  }
  .post__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .post__side .verdict {
    position: static;
  }
  .rail {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .masthead__tagline {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }
  .page-count {
    display: none;
  }
}

@media (max-width: 640px) {
  .shell {
    padding-inline: 18px;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .grid--bento .card--lead {
    grid-column: auto;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .masthead__top {
    display: none;
  }
  .masthead__bar {
    gap: 12px;
  }
  .brand {
    font-size: 32px;
  }
  .search {
    flex: 1;
    min-width: 0;
  }
  .search input {
    width: 100%;
    min-width: 0;
  }
  .search kbd {
    display: none;
  }
  .hero__inner {
    padding-block: 48px 64px;
  }
  .hero__ghost {
    display: none;
  }
  .stats {
    margin-top: -28px;
  }
  .stat {
    padding: 18px 20px;
  }
  .stat__value {
    font-size: 30px;
  }
  .section-head {
    margin-top: 60px;
    gap: 14px;
  }
  .section-head__num {
    font-size: 48px;
  }
  .rail {
    padding: 24px;
  }
  .verdict {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ── v3: 실데이터(상품 · 가격) 컴포넌트 ────────────────── */

.card__media--product {
  aspect-ratio: 1 / 1;
  background: radial-gradient(80% 80% at 50% 40%, var(--paper-2), var(--paper-3));
}
.card__media--product img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  mix-blend-mode: multiply;
}
@media (prefers-color-scheme: dark) {
  .card__media--product {
    background: radial-gradient(80% 80% at 50% 40%, #f4f1ea, #d8d3c8);
  }
  .card__media--product img {
    mix-blend-mode: normal;
  }
}
.card__media--product::after {
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.18));
}
.card--lead .card__media--product {
  aspect-ratio: 16 / 9;
}
.card--lead .card__media--product img {
  padding: 4%;
}
.card--compact .card__media--product {
  aspect-ratio: 4 / 3;
}

.price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  border-radius: 8px;
  padding: 6px 11px;
  line-height: 1;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}
.price b {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  color: #9ec7ff;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 8px;
}
.card__media .price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}

.meta__cat {
  color: var(--accent);
  font-weight: 700;
}
.meta__views {
  color: var(--ink-3);
}

.ship {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 9px;
  background: var(--paper-3);
  color: var(--ink-2);
}
.ship--rocket {
  background: #0064ff;
  color: #fff;
}

/* 히어로 상품 */
.hero__figure--product {
  background: radial-gradient(80% 80% at 50% 40%, #fbf8f1, #d9d3c6);
  aspect-ratio: 16 / 11;
}
.hero__figure--product img {
  position: absolute;
  inset: 11%;
  width: 78%;
  height: 78%;
  aspect-ratio: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
}
.hero__pricecard {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
}
.hero__pricecard small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #9ec7ff;
}
.hero__pricecard b {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__tags i {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.1);
}

/* 인기 순위 */
.popular {
  margin-top: 80px;
  padding: 34px 36px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--paper);
}
.popular__head .eyebrow {
  color: var(--accent-2);
}
.popular__title {
  font-size: 26px;
  margin-bottom: 20px;
}
.popular__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
.popular__item a {
  display: grid;
  grid-template-columns: 34px 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.2s;
}
.popular__item a:hover {
  opacity: 0.8;
}
.popular__rank {
  font-family: var(--display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}
.popular__thumb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #f4f1ea;
  overflow: hidden;
}
.popular__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  mix-blend-mode: multiply;
}
.popular__text {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.popular__text b {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.popular__text small {
  font-size: 12px;
  color: rgba(246, 242, 234, 0.55);
}
.popular .price {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.chip--ghost {
  border-style: dashed;
  color: var(--ink-3);
}

/* 카테고리 그리드 */
.catgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.catcard {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s;
}
.catcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.catcard.is-empty {
  opacity: 0.45;
}
.catcard__num {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
}
.catcard__name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
}
.catcard__kw {
  font-size: 12.5px;
  color: var(--ink-3);
}
.catcard__count {
  position: absolute;
  right: 18px;
  top: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
}
.catcard__count small {
  font-size: 11px;
  margin-left: 2px;
  color: var(--ink-3);
}

/* 글 페이지 상품 요소 */
.post__cover--product {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}
.post__cover--product a {
  position: relative;
  display: block;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  background: radial-gradient(70% 90% at 50% 45%, #fbf8f1, #d9d3c6);
  overflow: hidden;
}
.post__cover--product img {
  position: absolute;
  inset: 9%;
  width: 82%;
  height: 82%;
  max-height: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.8s var(--ease);
}
.post__cover--product a:hover img {
  transform: scale(1.04);
}
.post__cover--product figcaption {
  padding-inline: 4px;
  justify-content: space-between;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--sans);
  font-size: 13px;
}

.verdict__product {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-bottom: 18px;
}
.verdict__product img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: #f7f4ee;
  border-radius: 14px;
  padding: 10px;
}
.verdict__pname {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
.verdict__pprice {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.btn--block {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
}
.toc {
  text-align: left;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.toc ol {
  margin: 0;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.9;
}
.toc a:hover {
  color: var(--accent);
}

.tldr {
  display: grid;
  gap: 6px;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-soft), var(--paper-2));
  border: 1px solid color-mix(in srgb, var(--gold) 35%, var(--rule));
  margin-bottom: 30px;
}
.tldr__label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 700;
}
.tldr p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.55;
}

.compare {
  margin: 0 0 36px;
}
.compare__scroll {
  overflow-x: auto;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 480px;
}
.compare th {
  text-align: left;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 10px 8px;
  border-bottom: 1px solid var(--rule);
}
.compare td {
  padding: 13px 8px;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.compare .num {
  text-align: right;
  font-family: var(--display);
  font-weight: 700;
  white-space: nowrap;
}
.compare tr.is-top {
  background: color-mix(in srgb, var(--gold-soft) 60%, transparent);
}
.compare__crown {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  margin-right: 8px;
  vertical-align: middle;
}
.compare__go {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.prose--post p:first-child {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.7;
  font-weight: 500;
  border-top: 2px solid var(--rule-strong);
  padding-top: 24px;
}
.prose--post p:first-child::first-letter {
  font-family: var(--display);
  font-size: 4em;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin: 10px 14px 0 0;
  color: var(--accent);
}
.prose--post h2 {
  scroll-margin-top: 120px;
}
.prose--post a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose--post ul,
.prose--post ol {
  padding-left: 22px;
  margin: 0 0 26px;
}
.prose--post table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 0 0 26px;
}
.prose--post th,
.prose--post td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}
.prose--outro {
  margin-top: 8px;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  font-size: 16.5px;
}
.prose--outro p:last-child {
  margin-bottom: 0;
}

.ppair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 12px 0 34px;
}
.ppair:has(> :only-child) {
  grid-template-columns: 1fr;
}
.pbox {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pbox:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pbox--top {
  border-color: color-mix(in srgb, var(--gold) 50%, var(--rule));
}
.pbox__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: radial-gradient(70% 80% at 50% 45%, #fbf8f1, #e2ddd2);
}
.pbox__media img {
  position: absolute;
  inset: 15%;
  width: 70%;
  height: 70%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}
.pbox__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
}
.pbox__rank {
  position: absolute;
  left: 12px;
  top: 6px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.45);
}
.pbox__body {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
  align-content: start;
}
.pbox__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0;
}
.pbox__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pbox__price s {
  font-size: 13px;
  color: var(--ink-3);
}
.pbox__price b {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.pbox__ship {
  display: flex;
  gap: 6px;
  min-height: 20px;
}
.pbox .btn {
  justify-self: start;
  margin-top: 4px;
}

.alts {
  margin: 44px 0;
}
.alts__title,
.faq__title {
  font-size: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rule-strong);
  margin-bottom: 18px;
}
.alts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.alt {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.alt:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.alt img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: #f7f4ee;
  border-radius: 10px;
  padding: 8px;
}
.alt__name {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}
.alt__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}

.faq {
  margin: 44px 0 24px;
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 32px 16px 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16.5px;
  position: relative;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 14px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 0 18px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.8;
}

.disclosure {
  margin: 36px 0 0;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: var(--paper-2);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 13px;
  color: var(--ink-2);
}

.footer__list--cols {
  columns: 2;
  column-gap: 24px;
}

@media (max-width: 960px) {
  .popular__list {
    grid-template-columns: 1fr;
  }
  .catgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .alts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ppair {
    grid-template-columns: 1fr;
  }
  .popular {
    padding: 24px 20px;
  }
  .popular__item a {
    grid-template-columns: 28px 52px 1fr;
  }
  .popular .price {
    display: none;
  }
  .catgrid {
    grid-template-columns: 1fr;
  }
  .post__cover--product a {
    aspect-ratio: 4 / 3;
  }
  .footer__list--cols {
    columns: 1;
  }
  .hero__figure--product img {
    width: 84%;
    height: 84%;
  }
}

/* 본문 삽입 사진 (발행기가 넣는 .pfig) */
.prose--post .pfig {
  margin: 8px 0 30px;
  text-align: center;
}
.prose--post .pfig img {
  display: inline-block;
  max-width: min(100%, 420px);
  aspect-ratio: 1;
  object-fit: contain;
  background: radial-gradient(70% 80% at 50% 45%, #fbf8f1, #e2ddd2);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  mix-blend-mode: multiply;
}
.prose--post .pfig small {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
}

/* 통계 페이지 */
.stats--page {
  margin-top: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* 제품 영상 */
.video {
  margin: 0 0 30px;
}
.video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
}
