/* ==========================================================
   Vape Observation — Kadence 皮肤（观察台 / 仪器日志）
   粘贴到：外观 → 自定义 → 额外 CSS
   ========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Fragment+Mono&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap");

/* ---------- 设计令牌 ---------- */
:root {
  --vo-paper: #fafaf8;
  --vo-ink: #17181c;
  --vo-deep: #121316;
  --vo-deep-2: #1f2733;
  --vo-ember: #ff4d00;
  --vo-ember-soft: rgba(255, 77, 0, 0.10);
  --vo-vapor: #2f9bd8;
  --vo-steel: #e9e9e4;
  --vo-ash: #5b606a;
  --vo-surface: #ffffff;
  --vo-surface-2: #f1f1ec;
  --vo-deal: #12b188;
  --vo-spectrum: linear-gradient(90deg, #2f9bd8 0%, #ff4d00 100%);
  --vo-font-display: "Bricolage Grotesque", "Poppins", system-ui, sans-serif;
  --vo-font-body: "Instrument Sans", "Poppins", system-ui, sans-serif;
  --vo-font-mono: "Fragment Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ---------- 全站文字与底色 ---------- */
body { background: var(--vo-paper); color: var(--vo-ink); font-family: var(--vo-font-body); }
h1, h2, h3, h4, h5 { font-family: var(--vo-font-display); font-weight: 700; letter-spacing: -0.015em; }
::selection { background: var(--vo-ember); color: #fff; }

/* Gutenberg 会给区块包一层 inner-container，让它不干扰我们的网格/横排布局 */
.vo-topbar > .wp-block-group__inner-container,
.vo-hero-grid > .wp-block-group__inner-container,
.vo-hero-featured > .wp-block-group__inner-container,
.vo-hero-sub > .wp-block-group__inner-container,
.vo-grid > .wp-block-group__inner-container,
.vo-news-list > .wp-block-group__inner-container,
.vo-news > .wp-block-group__inner-container,
.vo-card > .wp-block-group__inner-container,
.vo-newsletter > .wp-block-group__inner-container {
  display: contents;
}

/* ---------- 快讯条 ---------- */
.vo-topbar {
  background: var(--vo-deep);
  border-radius: 10px;
  color: #cdd8ea;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  height: 42px;
  margin-top: 1.4rem;
  padding: 0 1rem;
  overflow: hidden;
}
.vo-ticker-label {
  flex: none;
  background: var(--vo-ember);
  color: #fff;
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}
.vo-ticker-viewport { overflow: hidden; min-width: 0; flex: 1; }
.vo-ticker-track { position: relative; height: 1.4em; }
.vo-ticker-group { display: none; }
.vo-ticker-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: vo-ticker-cycle 16s linear infinite;
}
.vo-ticker-item a { color: inherit; text-decoration: none; }
.vo-ticker-item a:hover { color: var(--vo-ember); }
.vo-ticker-item:nth-child(2) { animation-delay: 4s; }
.vo-ticker-item:nth-child(3) { animation-delay: 8s; }
.vo-ticker-item:nth-child(4) { animation-delay: 12s; }
@keyframes vo-ticker-cycle {
  0% { opacity: 0; }
  5%, 20% { opacity: 1; }
  25%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .vo-ticker-item { animation: none; opacity: 0; }
  .vo-ticker-item:first-child { opacity: 1; }
}

/* ---------- 头条区 ---------- */
.vo-hero-grid { display: grid; gap: 1rem; margin-top: 1.2rem; }
.vo-hero-featured {
  background: linear-gradient(125deg, #0a1322 0%, #14274a 45%, #2d5f9e 78%, #6fc3ff 120%);
  border-radius: 14px;
  color: #fff;
  min-height: 360px;
  align-self: stretch;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.vo-hero-featured::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(55% 85% at 28% 112%, rgba(242, 92, 5, 0.22), transparent 62%);
  animation: vo-haze 16s ease-in-out infinite alternate;
  pointer-events: none;
}
.vo-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.vo-hero-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.62), rgba(8, 14, 26, 0.30) 48%, rgba(8, 14, 26, 0.88));
}
@keyframes vo-haze { from { transform: translate3d(-1.5%, 0, 0) scale(1); } to { transform: translate3d(2.5%, 1.5%, 0) scale(1.05); } }
.vo-hero-cover-label {
  position: absolute; top: 1.3rem; left: 1.5rem;
  font-family: var(--vo-font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
}
.vo-hero-badge {
  position: absolute; top: 1.2rem; right: 1.3rem;
  font-family: var(--vo-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(10, 16, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}
.vo-hero-featured > * { position: relative; }
.vo-hero-featured > *:not(.vo-hero-photo) { z-index: 1; }
.vo-hero-featured .vo-kicker,
.vo-hero-featured h1,
.vo-hero-featured .vo-hero-excerpt,
.vo-hero-featured .vo-hero-meta,
.vo-hero-featured .wp-block-buttons { position: relative; z-index: 1; }
.vo-hero-cover-label,
.vo-hero-badge { z-index: 1; }
.vo-hero-featured h1, .vo-hero-title { color: #fff; font-size: clamp(1.55rem, 3.2vw, 2.4rem); line-height: 1.12; margin: 0.55rem 0 0.65rem; }
.vo-hero-excerpt { color: rgba(255, 255, 255, 0.84); font-size: 0.95rem; margin: 0 0 1.2rem; }
.vo-hero-meta { font-family: var(--vo-font-mono); font-size: 0.7rem; color: rgba(255, 255, 255, 0.72); margin: 0 0 1rem; }
.vo-hero-featured .wp-block-button__link { background: #fff; color: var(--vo-deep); }
.vo-hero-featured .wp-block-button__link:hover { background: var(--vo-ember); color: #fff; }

.vo-hero-sub {
  background: linear-gradient(135deg, #101a2b 0%, #1b2c47 55%, #2a4a78 100%);
  border-radius: 12px;
  color: #fff;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.vo-hero-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 33, 0.88), rgba(10, 18, 33, 0.55) 70%, rgba(10, 18, 33, 0.25));
  z-index: 0;
}
.vo-hero-sub .vo-hero-photo { opacity: 0.85; }
.vo-hero-sub > *:not(.vo-hero-photo) { position: relative; z-index: 1; }
.vo-hero-sub .vo-kicker,
.vo-hero-sub h3 { position: relative; z-index: 1; }
.vo-hero-sub h3 { color: #fff; font-size: 0.98rem; line-height: 1.3; margin: 0.2rem 0 0; }
.vo-hero-sub h3 a { color: inherit; text-decoration: none; }
.vo-hero-sub h3 a:hover { color: var(--vo-vapor); }

/* ---------- 区块通用 ---------- */
.vo-section { margin-top: clamp(2.2rem, 5vw, 3.8rem); padding-top: clamp(1.4rem, 3vw, 2.2rem); border-top: 1px solid var(--vo-steel); }
.vo-section > h2 { margin: 0.2rem 0 1.2rem; font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.vo-kicker {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vo-ember);
  margin: 0;
}
.vo-kicker-light { color: rgba(255, 255, 255, 0.78); }

/* 首页隐藏 Kadence 自带页面标题，避免和 hero 头条重复 */
.home .entry-header, .page-id-24198 .entry-header { display: none; }

/* 头部只保留 logo 图，隐藏与 logo 重复的站点文字 */
.site-branding .site-title,
.site-branding .site-title a { display: none; }

/* ---------- 卡片 ---------- */
.vo-grid { display: grid; gap: 1rem; }
.vo-grid { min-width: 0; }
.vo-grid > * { min-width: 0; }
.vo-grid-3 { grid-template-columns: 1fr; }
.vo-grid-4 { grid-template-columns: 1fr; }
.vo-card {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 10px;
  padding: 1.1rem 1.15rem;
  margin: 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(15, 26, 43, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.vo-card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--vo-ember) 45%, var(--vo-steel)); box-shadow: 0 8px 20px rgba(15, 26, 43, 0.08); }
.vo-card h3 { margin: 0 0 0.45rem; font-size: 1rem; line-height: 1.32; }

/* 封面（仪器屏渐变 + 等宽代码） */
.vo-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  border-radius: 9px 9px 0 0;
  margin: -1.1rem -1.15rem 1rem -1.15rem;
  position: relative;
}
.vo-cover-label {
  font-family: var(--vo-font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}
.vo-cover-rank { background: linear-gradient(135deg, #241208 0%, #5c2b0c 55%, #b4550e 100%); }
.vo-cover-review { background: linear-gradient(135deg, #101a2b 0%, #222c46 50%, #3a3f63 100%); }

/* 照片封面：真实文章头图铺满，保留角落的等宽标签 */
.vo-cover-photo { background: var(--vo-deep); }
.vo-cover-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vo-cover-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.28), rgba(10, 16, 28, 0.04) 55%, rgba(10, 16, 28, 0.38));
}
.vo-cover-photo .vo-cover-label {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 2;
  background: rgba(10, 16, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 0.22rem 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: #fff;
}

/* 评分读数（LED 风格） */
.vo-score {
  display: inline-block;
  font-family: var(--vo-font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--vo-deep);
  color: #fff;
  border-radius: 6px;
  padding: 0.18rem 0.45rem;
  margin-right: 0.5rem;
}
.vo-meta { font-family: var(--vo-font-mono); font-size: 0.72rem; color: var(--vo-ash); margin: 0; }
.vo-excerpt { color: var(--vo-ash); font-size: 0.88rem; margin: 0.6rem 0 0; }

/* 榜单卡 */
.vo-rank, .vo-review { padding-top: 0; overflow: hidden; }
.vo-rank .vo-rank-num {
  position: absolute;
  top: 0.2rem; left: 0.8rem;
  z-index: 2;
  font-family: var(--vo-font-mono);
  font-weight: 700;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin: 0;
}
.vo-rank-body { padding: 0.2rem 0 0.2rem; }

/* 新闻列表 */
.vo-news-list { display: grid; gap: 0.8rem; }
.vo-news { display: flex; gap: 1rem; align-items: flex-start; }
.vo-date {
  font-family: var(--vo-font-mono);
  font-weight: 600;
  color: var(--vo-ember);
  margin: 0;
  flex: none;
  min-width: 3.2em;
}
.vo-news-body { min-width: 0; }
.vo-news-body h3 { font-size: 0.98rem; }
.vo-news-body .vo-excerpt { margin-top: 0.3rem; }

/* 指南卡 */
.vo-guide-code {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  background: var(--vo-deep);
  color: #fff;
  display: inline-block;
  border-radius: 8px;
  padding: 0.32rem 0.55rem;
  margin: 0 0 0.7rem;
}

/* 优惠卡 */
.vo-deal {
  position: relative;
  overflow: hidden;
  border-color: #e6e3dc;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(15, 26, 43, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.vo-deal:hover {
  transform: translateY(-2px);
  border-color: #d9d5cc;
  box-shadow: 0 12px 26px rgba(15, 26, 43, 0.1);
}
.vo-off {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--vo-ember);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--vo-font-mono);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 0.22rem 0.6rem;
  margin: 0 0 0.75rem;
}
.vo-expired { filter: grayscale(1); opacity: 0.7; }
.vo-expired .vo-off { color: var(--vo-ash); }
.vo-deal .wp-block-buttons { margin-top: 0.9rem; }
.vo-deal .wp-block-button__link {
  background: transparent;
  border: 1px solid var(--vo-ink);
  color: var(--vo-ink);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vo-deal .wp-block-button__link:hover { background: var(--vo-ember); border-color: var(--vo-ember); color: #fff; }
.vo-deal-expired-note {
  margin: 0.9rem 0 0;
  display: inline-block;
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vo-ash);
  border: 1px dashed var(--vo-steel);
  border-radius: 8px;
  padding: 0.42rem 0.8rem;
}

/* 订阅区 */
.vo-newsletter {
  background: var(--vo-deep);
  border-radius: 16px;
  color: #fff;
  margin: clamp(2.2rem, 5vw, 3.8rem) 0 1rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.vo-newsletter::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 90% at 88% 112%, rgba(242, 92, 5, 0.24), transparent 62%),
    radial-gradient(45% 75% at 6% 0%, rgba(255, 178, 138, 0.16), transparent 60%);
  pointer-events: none;
}
.vo-newsletter-inner { position: relative; max-width: 640px; }
.vo-newsletter h2 { color: #fff; margin: 0.5rem 0; font-size: clamp(1.4rem, 3vw, 2rem); }
.vo-newsletter p { color: rgba(255, 255, 255, 0.82); }
.vo-newsletter .wp-block-button__link { background: #fff; color: var(--vo-deep); }
.vo-newsletter .wp-block-button__link:hover { background: var(--vo-ember); color: #fff; }

/* 板块标题右侧 View all 链接 */
.vo-section { position: relative; }
.vo-viewall {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.35rem);
  right: 0;
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
  text-decoration: none;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.vo-viewall:hover { color: var(--vo-ember); background: var(--vo-ember-soft); }

/* 产品卡片 */
.vo-product-card { padding: 0; overflow: hidden; }
.vo-product-card .vo-thumb { border-radius: 14px; margin: 0; }
.vo-product-card .vo-thumb { aspect-ratio: 1 / 1; }
.vo-product-card .vo-card-body { padding: 1rem 1.1rem 1.15rem; }
.vo-product-card .vo-chip-sm { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 文章内产品资料卡（[vo_product]） */
.vo-inline-product {
  position: relative;
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--vo-surface);
  border: 1px solid #e6e3dc;
  border-left: 3px solid var(--vo-ember);
  border-radius: 14px;
  padding: 1.05rem 1.35rem;
  margin: 1.9rem 0;
  box-shadow: 0 2px 10px rgba(15, 26, 43, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.vo-inline-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 26, 43, 0.1);
}
.vo-inline-product::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vo-ember);
  opacity: 0.85;
}
.vo-inline-product-media {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0ede6;
  padding: 0.4rem;
  box-shadow: 0 3px 12px rgba(15, 26, 43, 0.05);
}
.vo-inline-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.vo-inline-product-media:hover img { transform: scale(1.04); }
.vo-inline-product-body { min-width: 0; }
.vo-inline-product-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.vo-inline-product-cat {
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vo-ember);
}
.vo-inline-product-id {
  font-family: var(--vo-font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--vo-ash);
  margin-left: 0.6rem;
}
.vo-inline-product-type {
  margin-left: auto;
  font-family: var(--vo-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ink);
  border: 1px solid #dcd9d1;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  white-space: nowrap;
}
.vo-inline-product-body h3 {
  margin: 0.5rem 0 0.55rem;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.vo-inline-product-body h3 a { color: var(--vo-ink); text-decoration: none; }
.vo-inline-product-body h3 a:hover { color: var(--vo-ember); }
.vo-inline-product-specs {
  font-family: var(--vo-font-mono);
  color: #7a7a74;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.vo-inline-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #efede7;
  padding-top: 0.9rem;
}
.vo-inline-product-score {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--vo-font-mono);
  font-size: 0.78rem;
}
.vo-inline-score { font-weight: 700; color: var(--vo-ink); }
.vo-inline-score-track {
  width: 68px;
  height: 4px;
  background: #ecebe5;
  border-radius: 999px;
  overflow: hidden;
}
.vo-inline-score-track span {
  display: block;
  height: 100%;
  background: var(--vo-ember);
  border-radius: 999px;
}
.vo-inline-score-tag {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ink);
  border: 1px solid #dcd9d1;
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
}
.vo-inline-score-tag-top { color: #fff; background: var(--vo-ember); border-color: var(--vo-ember); }
.vo-inline-score-tag-good { color: #0f7a5f; border-color: #a8dccb; background: rgba(18, 178, 136, 0.07); }
.vo-inline-score-tag-mid { color: #8f6a14; border-color: #e2c477; background: rgba(184, 135, 30, 0.08); }
.vo-inline-score-tag-low { color: #9d3f2f; border-color: #e0a99c; background: rgba(138, 59, 47, 0.07); }
.vo-inline-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--vo-ink);
  color: #fff;
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.52rem 1.05rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.vo-inline-product-cta:hover { background: var(--vo-ember); color: #fff; transform: translateY(-1px); }
.vo-inline-product-cta-external { background: var(--vo-ember); }
.vo-inline-product-cta-external:hover { background: #ff6a2b; }
@media (max-width: 640px) {
  .vo-inline-product { grid-template-columns: 1fr; gap: 1rem; }
  .vo-inline-product-media { max-width: 220px; }
  .vo-inline-product-foot { align-items: flex-start; }
}

.vo-price {
  font-family: var(--vo-font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--vo-ember);
  margin: 0.35rem 0 0;
}
.vo-price del { color: var(--vo-ash); font-weight: 500; font-size: 0.78rem; margin-right: 0.35rem; }
.vo-price ins { text-decoration: none; }

/* ---------- 产品列表页（WooCommerce 归档） ---------- */
.post-type-archive-product .content-area,
.woocommerce-shop .content-area { margin-top: 0; }
.vo-shop-hero { padding: clamp(1.4rem, 3vw, 2.2rem) 0 1rem; }
.vo-shop-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin: 0.85rem 0 0.5rem;
}
.vo-shop-desc { color: var(--vo-ash); font-size: 1rem; line-height: 1.65; margin: 0; }
.vo-shop-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--vo-ember);
  text-decoration: none;
}
.vo-shop-clear:hover { text-decoration: underline; }

.vo-shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.6rem;
  margin-top: 1.2rem;
  align-items: start;
}

.vo-shop-filters {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 14px;
  padding: 1.2rem 1.15rem;
  position: sticky;
  top: 1.5rem;
  min-width: 0;
}
.vo-shop-filters-title {
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vo-ember);
  margin: 0 0 1rem;
}
.vo-filter-group + .vo-filter-group {
  margin-top: 1.35rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--vo-steel);
}
.vo-filter-group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vo-deep);
  margin: 0 0 0.7rem;
}
.vo-filter-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vo-steel);
  transform: translateY(0.2em);
}
.vo-filter-list { list-style: none; margin: 0; padding: 0; }
.vo-filter-list li { margin: 0; }
.vo-filter-row { position: relative; }
.vo-cat-bar {
  position: absolute;
  left: 0.5rem;
  bottom: 0.18rem;
  height: 2px;
  border-radius: 99px;
  background: transparent;
  pointer-events: none;
  transition: background 0.15s ease;
}
.vo-filter-row:hover .vo-cat-bar,
.vo-filter-row .vo-filter-link.is-active ~ .vo-cat-bar {
  background: var(--vo-ember);
}
.vo-filter-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  color: var(--vo-ink);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.52rem 0.5rem 0.55rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.vo-filter-link:hover { background: var(--vo-surface-2); color: var(--vo-ember); }
.vo-filter-link.is-active {
  background: var(--vo-ember-soft);
  border-color: color-mix(in srgb, var(--vo-ember) 35%, transparent);
  color: var(--vo-ember);
  font-weight: 600;
}
.vo-filter-link small {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  color: var(--vo-ash);
}
.vo-filter-link.is-active small { color: var(--vo-ember); }

/* 筛选栏头部 + 已选条件 */
.vo-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.vo-filters-head .vo-shop-filters-title { margin: 0; }
.vo-filters-reset {
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
  text-decoration: none;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--vo-steel);
  border-radius: 7px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.vo-filters-reset:hover { color: var(--vo-ember); border-color: var(--vo-ember); }
.vo-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.vo-active-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  color: var(--vo-ember);
  background: var(--vo-ember-soft);
  border: 1px solid color-mix(in srgb, var(--vo-ember) 30%, transparent);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.vo-active-chip:hover { background: var(--vo-ember); color: #fff; }
.vo-active-chip span { font-weight: 700; }

/* 设备类型细分 */
.vo-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.vo-type-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--vo-ink);
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 9px;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.vo-type-chip small {
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  color: var(--vo-ash);
  flex: none;
}
.vo-type-chip:hover {
  border-color: var(--vo-ember);
  color: var(--vo-ember);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 26, 43, 0.08);
}
.vo-type-chip.is-active {
  background: var(--vo-deep);
  border-color: var(--vo-deep);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 26, 43, 0.16);
}
.vo-type-chip.is-active small { color: var(--vo-ember); }

/* 品牌搜索 */
.vo-filter-group .vo-brand-search {
  box-sizing: border-box;
  width: 100%;
  height: 36px;
  padding: 0 0.75rem;
  border: 1px solid var(--vo-steel);
  border-radius: 8px;
  background: var(--vo-surface);
  color: var(--vo-ink);
  font-family: var(--vo-font-body);
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
}
.vo-filter-group .vo-brand-search::placeholder { color: var(--vo-ash); opacity: 1; }
.vo-filter-group .vo-brand-search:focus {
  border-color: var(--vo-ember);
  box-shadow: 0 0 0 3px var(--vo-ember-soft);
  outline: none;
}
.vo-brand-list {
  max-height: 252px;
  overflow-y: auto;
  padding-right: 0.2rem;
}
.vo-brand-list::-webkit-scrollbar { width: 5px; }
.vo-brand-list::-webkit-scrollbar-track { background: transparent; }
.vo-brand-list::-webkit-scrollbar-thumb { background: var(--vo-steel); border-radius: 99px; }

/* 移动端筛选折叠按钮（默认隐藏） */
.vo-filters-toggle { display: none; }

.vo-shop-main { min-width: 0; }
.vo-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.4rem;
  flex-wrap: wrap;
  padding: 1rem 0 1.15rem;
  margin: 0 0 0.35rem;
  border-top: 1px solid var(--vo-steel);
}
.vo-result-count {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0;
  font-family: var(--vo-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--vo-ash);
}
.vo-result-label {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-result-range,
.vo-result-total { color: var(--vo-ink); font-weight: 650; }
.vo-shop-order {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.vo-order-label {
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-shop-order form { margin: 0; display: inline-block; }
.vo-shop-order select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--vo-font-body);
  font-size: 0.85rem;
  color: var(--vo-ink);
  background: var(--vo-surface) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path d="M1 1l4 4 4-4" fill="none" stroke="%23666666" stroke-width="1.4"/></svg>') no-repeat right 0.7rem center;
  border: 1px solid var(--vo-steel);
  border-radius: 8px;
  padding: 0.5rem 2rem 0.5rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.18s ease;
}
.vo-shop-order select:hover {
  border-color: color-mix(in srgb, var(--vo-ember) 45%, var(--vo-steel));
}
.vo-shop-order select:focus {
  outline: none;
  border-color: var(--vo-ember);
  box-shadow: 0 0 0 3px var(--vo-ember-soft);
}

.vo-products-grid .vo-card { padding: 0; overflow: hidden; }
.vo-products-grid .vo-thumb { border-radius: 14px; margin: 0; }
.vo-products-grid .vo-card-body { padding: 0.95rem 1.05rem 1.1rem; }

/* ==========================================================
   分类频道 v2：新闻图文流 / 评测头条 / 指南编号列表
   ========================================================== */

/* 通用：归档卡片等高、摘要限两行 */
.vo-archive-grid .vo-query-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vo-archive-grid .vo-query-card .vo-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.vo-archive-grid .vo-query-card h3 {
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vo-archive-grid .vo-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vo-score-grade-line {
  margin-top: 0.6rem;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ember);
}
.vo-archive-grid .vo-score-grade-line { margin-top: auto; }

/* 新闻：左图右文信息流 */
.vo-newsfeed {
  margin-top: 1.6rem;
  border-top: 1px solid var(--vo-steel);
}
.vo-newsrow {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-newsrow-thumb {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--vo-surface-2);
}
.vo-newsrow-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vo-newsrow-thumb span,
.vo-review-featured-media span,
.vo-guide-row-thumb span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--vo-ash);
}
.vo-newsrow-body { min-width: 0; }
.vo-newsrow-meta,
.vo-review-featured-meta,
.vo-guide-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.9rem;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-newsrow-meta span + span::before,
.vo-review-featured-meta span + span::before,
.vo-guide-meta span + span::before {
  content: "·";
  margin-right: 0.9rem;
  color: var(--vo-steel);
}
.vo-newsrow-kicker,
.vo-guide-kicker { color: var(--vo-ember); font-weight: 700; }
.vo-newsrow-meta { margin-bottom: 0.55rem; }
.vo-newsrow-title {
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 0 0 0.45rem;
}
.vo-newsrow-title a:hover { color: var(--vo-ember); }
.vo-newsrow-excerpt {
  color: var(--vo-ash);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 评测：头条大卡 + 网格 */
.vo-review-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
  margin: 1.6rem 0 2.6rem;
  padding: 1.8rem;
  background: var(--vo-surface-2);
  border-radius: 18px;
}
.vo-review-featured-media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--vo-surface);
}
.vo-review-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vo-review-featured-body { min-width: 0; }
.vo-review-featured-body .vo-chip { margin-bottom: 0.85rem; }
.vo-review-featured-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 0.7rem;
}
.vo-review-featured-body h2 a:hover { color: var(--vo-ember); }
.vo-review-featured-body .vo-excerpt {
  color: var(--vo-ash);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 0.9rem;
}
.vo-review-featured-meta { margin-bottom: 1rem; }
.vo-review-featured-score { margin: 0; }
.vo-review-grid { margin-top: 0; }

/* 指南：编号索引行 */
.vo-guide-list {
  margin-top: 1.6rem;
  border-top: 1px solid var(--vo-steel);
}
.vo-guide-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 190px;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-guide-num {
  font-family: var(--vo-font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: #c9c5bd;
  text-align: right;
  padding-right: 0.25rem;
}
.vo-guide-row-body { min-width: 0; }
.vo-guide-meta { margin-bottom: 0.5rem; }
.vo-guide-title {
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0 0 0.4rem;
}
.vo-guide-title a:hover { color: var(--vo-ember); }
.vo-guide-excerpt {
  color: var(--vo-ash);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vo-guide-row-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--vo-surface-2);
}
.vo-guide-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .vo-newsrow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .vo-newsrow-thumb { aspect-ratio: 16 / 9; }
  .vo-review-featured {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 1.2rem;
  }
  .vo-review-featured-media { aspect-ratio: 16 / 10; }
  .vo-guide-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 1rem;
  }
  .vo-guide-row-thumb { display: none; }
}

/* ==========================================================
   频道页 v3：重点展示区 + 主列 + 右侧边栏
   ========================================================== */
.vo-channel {
  margin-top: 1.6rem;
}
.vo-feature-row { margin-bottom: 2.8rem; }
.vo-feature-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.3rem;
}
.vo-feature-head .vo-kicker { flex: none; }
.vo-feature-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vo-steel);
}
.vo-channel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
}
.vo-channel-main { min-width: 0; }
.vo-channel-side {
  min-width: 0;
  position: sticky;
  top: 96px;
}

/* 重点展示区：头条大卡 + 副卡列 */
.vo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.2rem;
  margin: 0;
  align-items: stretch;
}
.vo-feature-main {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.vo-feature-media {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  flex: 1 1 0;
  min-height: 300px;
  background: var(--vo-surface-2);
}
.vo-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vo-feature-media span,
.vo-feature-mini-thumb span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--vo-ash);
}
.vo-score-square {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: rgba(10, 14, 20, 0.92);
  color: #fff;
}
.vo-score-square b {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.vo-score-square em {
  font-style: normal;
  font-family: var(--vo-font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9bec6;
  margin-top: 0.22rem;
}
.vo-feature-grade {
  margin-top: 0.7rem;
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ember);
}
.vo-feature-body { min-width: 0; }
.vo-feature-body .vo-chip { margin-bottom: 0.7rem; }
.vo-feature-index {
  display: inline-block;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vo-ember);
  margin-bottom: 0.45rem;
}
.vo-feature-body h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
}
.vo-feature-body h2 a:hover { color: var(--vo-ember); }
.vo-feature-body .vo-excerpt {
  color: var(--vo-ash);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0 0 0.7rem;
}
.vo-feature-score { margin: 0.6rem 0 0; }
.vo-feature-score .vo-score-num { color: var(--vo-ember); }

.vo-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-meta-dot { color: var(--vo-steel); }
.vo-meta-kicker { color: var(--vo-ember); font-weight: 700; }

.vo-feature-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.15rem;
}
.vo-feature-mini {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-feature-mini:last-child { padding-bottom: 0; border-bottom: 0; }
.vo-feature-mini-thumb {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--vo-surface-2);
}
.vo-feature-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vo-feature-mini-body { min-width: 0; }
.vo-feature-mini-num {
  display: inline-block;
  font-family: var(--vo-font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vo-ember);
  margin-bottom: 0.25rem;
}
.vo-feature-mini-body h3 {
  font-size: 0.98rem;
  line-height: 1.35;
  margin: 0 0 0.35rem;
}
.vo-feature-mini-body h3 a:hover { color: var(--vo-ember); }
.vo-feature-mini-excerpt {
  color: var(--vo-ash);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0 0 0.45rem;
  min-height: 2.55em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vo-feature-mini-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-feature-mini-score {
  color: var(--vo-ember);
  font-weight: 700;
}

/* 主列表区标题 */
.vo-channel-latest {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
  font-weight: 650;
  margin: 0 0 1.2rem;
}
.vo-channel-latest::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vo-steel);
}

/* 边栏 */
.vo-side { display: flex; flex-direction: column; gap: 2rem; }
.vo-side-block { padding-top: 1.3rem; border-top: 1px solid var(--vo-steel); }
.vo-side-block:first-child { padding-top: 0; border-top: 0; }
.vo-side-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vo-ember);
  margin: 0 0 1rem;
}
.vo-side-title::before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--vo-ember);
  flex: none;
}
.vo-side-hot {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.vo-side-hot li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: baseline;
}
.vo-side-hot-num {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  color: #7a756c;
}
.vo-side-hot-score {
  font-family: var(--vo-font-mono);
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--vo-ink);
  text-decoration: none;
}
.vo-side-hot-score-top { color: var(--vo-ember); }
.vo-side-hot-score-good { color: #0f766e; }
.vo-side-hot-score-mid { color: #8a6d1f; }
.vo-side-hot-score-low { color: var(--vo-ash); }
.vo-side-hot-title {
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--vo-ink);
  text-decoration: none;
}
.vo-side-hot-title:hover { color: var(--vo-ember); }
.vo-side-latest {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.vo-side-latest li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}
.vo-side-latest-thumb {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--vo-surface-2);
}
.vo-side-latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vo-side-latest-body { min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.vo-side-latest-title {
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--vo-ink);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vo-side-latest-title:hover { color: var(--vo-ember); }
.vo-side-latest-date {
  font-family: var(--vo-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-side-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}
.vo-side-nav a {
  font-size: 0.88rem;
  color: var(--vo-ink);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-side-nav a:hover { color: var(--vo-ember); }
.vo-side-empty { color: var(--vo-ash); font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* 广告位（预留） */
.vo-ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 180px;
  border: 1px dashed var(--vo-steel);
  border-radius: 12px;
  color: var(--vo-ash);
}
.vo-ad-slot span {
  font-family: var(--vo-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}
.vo-ad-slot em { font-style: normal; font-size: 0.78rem; color: #8d8981; }

/* 文章页布局 */
.vo-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: 3rem;
  align-items: start;
  justify-content: center;
  margin-top: 0;
}
.vo-article-main { min-width: 0; }
.vo-article-side {
  min-width: 0;
  position: sticky;
  top: 96px;
  padding-top: 1.7rem;
}
.vo-comments-area {
  max-width: 860px;
  margin: 3rem auto 0;
}

@media (max-width: 1100px) {
  .vo-channel-grid,
  .vo-article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.2rem;
  }
}

@media (max-width: 900px) {
  .vo-single-hero { padding: 2rem 0 1.6rem; }
  .vo-single-content table {
    display: block;
    overflow-x: auto;
    min-width: 620px;
    -webkit-overflow-scrolling: touch;
  }
  .vo-channel-grid,
  .vo-article-layout { grid-template-columns: 1fr; gap: 2.4rem; }
  .vo-channel-side,
  .vo-article-side { position: static; }
  .vo-feature { grid-template-columns: 1fr; gap: 1.8rem; }
  .vo-feature-mini { grid-template-columns: 92px minmax(0, 1fr); }
}

/* WooCommerce 分页 */
.woocommerce-pagination { margin-top: 2.4rem; }
.woocommerce-pagination ul.page-numbers {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-pagination ul.page-numbers li .page-numbers {
  display: inline-block;
  font-family: var(--vo-font-mono);
  font-size: 0.78rem;
  color: var(--vo-ink);
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 8px;
  padding: 0.45rem 0.78rem;
  text-decoration: none;
}
.woocommerce-pagination ul.page-numbers li .page-numbers.current { background: var(--vo-deep); color: #fff; border-color: var(--vo-deep); }
.woocommerce-pagination ul.page-numbers li .page-numbers:hover { border-color: var(--vo-ember); color: var(--vo-ember); }

@media (max-width: 900px) {
  .vo-shop-layout { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
  .vo-filters-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.1rem;
    font-family: var(--vo-font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vo-ink);
    background: var(--vo-surface);
    border: 1px solid var(--vo-steel);
    border-radius: 9px;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
  }
  .vo-filters-toggle-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 0.3rem;
    background: var(--vo-ember);
    color: #fff;
    border-radius: 999px;
    font-size: 0.64rem;
  }
  .vo-shop-filters {
    display: none;
    position: static;
    margin-top: 0.8rem;
    padding: 1rem;
  }
  .vo-shop-filters.is-open { display: block; }
  .vo-filters-head { margin-bottom: 0.6rem; }
  .vo-filter-group { margin-top: 0.9rem !important; }
  .vo-filter-group-title { margin-bottom: 0.45rem; }
  .vo-filter-group + .vo-filter-group { padding-top: 0.9rem; }
  .vo-filter-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }
  .vo-filter-list::-webkit-scrollbar { display: none; }
  .vo-filter-list li { flex: none; }
  .vo-filter-link { border: 1px solid var(--vo-steel); padding: 0.35rem 0.65rem; }
  .vo-filter-row { position: static; }
  .vo-cat-bar { display: none; }
  .vo-type-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }
  .vo-type-grid::-webkit-scrollbar { display: none; }
  .vo-type-chip { flex: none; padding: 0.5rem 0.7rem; }
  .vo-brand-list {
    display: block;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
  }
}

/* ---------- 产品详情页（资料库条目） ---------- */
.single-product .content-area { margin-top: 0; }
.vo-product-single {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.vo-prod-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  color: var(--vo-ash);
  padding-top: 1.6rem;
}
.vo-prod-breadcrumb a { color: var(--vo-ash); text-decoration: none; }
.vo-prod-breadcrumb a:hover { color: var(--vo-ember); }
.vo-prod-crumb-current { color: var(--vo-ink); font-weight: 600; max-width: 420px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.vo-prod-header { padding: 1.3rem 0 1.2rem; }
.vo-prod-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vo-prod-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0.85rem 0 0.6rem;
}
.vo-prod-about { max-width: 860px; }
.vo-prod-intro { color: var(--vo-ash); font-size: 1.02rem; line-height: 1.7; max-width: 780px; margin: 0.55rem 0 0; }
.vo-prod-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 2rem;
  margin: 1.2rem 0 0;
  align-items: start;
}
.vo-prod-photo {
	position: relative;
	margin: 0;
	background: var(--vo-surface);
	border: 1px solid var(--vo-steel);
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.vo-prod-photo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.vo-prod-photo-brand {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	z-index: 2;
	background: rgba(8, 14, 26, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	font-family: var(--vo-font-mono);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	border-radius: 8px;
	padding: 0.28rem 0.55rem;
}
.vo-prod-photo-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: linear-gradient(135deg, #101a2b, #2a4a78);
}
.vo-prod-photo-empty span {
	font-family: var(--vo-font-mono);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.7);
}
.vo-prod-media { display: flex; flex-direction: column; gap: 0.6rem; min-width: 0; }
.vo-prod-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
}
.vo-prod-gallery img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: var(--vo-surface);
	border: 1px solid var(--vo-steel);
	border-radius: 10px;
	padding: 0.35rem;
}
.vo-check-list-single { grid-template-columns: 1fr; }

.vo-prod-facts {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.5rem;
}
.vo-prod-facts-title {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vo-ember);
  margin: 0 0 0.9rem;
}
.vo-prod-facts-list {
	margin: 0;
}
.vo-prod-fact {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.55rem 0;
	border-bottom: 1px dashed var(--vo-steel);
}
.vo-prod-fact:last-child { border-bottom: 0; }
.vo-prod-fact dt { font-size: 0.8rem; color: var(--vo-ash); flex: none; }
.vo-prod-fact dd { font-weight: 600; font-size: 0.92rem; margin: 0; text-align: right; word-break: break-word; }

.vo-prod-review-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--vo-steel);
  text-decoration: none;
}
.vo-prod-review-link strong { color: var(--vo-ink); font-size: 0.98rem; line-height: 1.35; }
.vo-prod-review-link:hover strong { color: var(--vo-ember); }
.vo-score-badge-static { position: static; }
.vo-prod-review-arrow { font-family: var(--vo-font-mono); font-size: 0.74rem; color: var(--vo-ember); }

.vo-prod-block {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 16px;
  padding: clamp(1.3rem, 3vw, 2rem);
  margin-top: 1.6rem;
}
.vo-prod-block > h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 0 0 1.1rem;
}
.vo-prod-block > h3 {
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin: 1.5rem 0 0.7rem;
}

.vo-spec-table { display: grid; grid-template-columns: 1fr; gap: 0; margin: 0; }
/* 规格分组：两列数据表，避免整页横向拉太宽 */
.vo-spec-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3.4rem;
  max-width: 1080px;
  align-items: start;
}
.vo-spec-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.vo-spec-group {
  min-width: 0;
  margin-bottom: 2.2rem;
}
.vo-spec-col > .vo-spec-group:last-child { margin-bottom: 0; }
.vo-spec-group > .vo-hub-sub {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin: 0 0 0.65rem;
}
.vo-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px dashed var(--vo-steel);
}
.vo-spec-row dt { color: var(--vo-ash); font-size: 0.88rem; }
.vo-spec-row dd { font-weight: 600; font-size: 0.95rem; text-align: right; margin: 0; }
.vo-spec-full { padding: 0.55rem 0; border-bottom: 1px dashed var(--vo-steel); grid-column: 1 / -1; }
.vo-spec-full dd { margin: 0; }

.vo-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.6rem;
}
.vo-check-list li { position: relative; padding-left: 1.5rem; line-height: 1.5; }
.vo-check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--vo-deal); font-weight: 700; }

.vo-chip-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vo-chip-cloud .vo-chip-sm { margin-bottom: 0; }

.vo-prod-html p { line-height: 1.7; color: #26344a; }
.vo-prod-html ul { padding-left: 1.3rem; line-height: 1.7; }

.vo-prod-related { margin-top: 2.4rem; }
.vo-prod-related .vo-card { padding: 0; overflow: hidden; }
.vo-prod-related .vo-thumb { border-radius: 14px; margin: 0; }
.vo-prod-related .vo-card-body { padding: 0.95rem 1.05rem 1.1rem; }

@media (max-width: 900px) {
  .vo-prod-grid { grid-template-columns: 1fr; }
  .vo-prod-photo { max-width: 420px; }
  .vo-prod-facts-list,
  .vo-spec-table,
  .vo-check-list { grid-template-columns: 1fr; }
}

/* ---------- 动态查询卡片（Query Loop） ---------- */
.vo-query-card { overflow: hidden; }
.vo-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 0.95rem;
  background: linear-gradient(135deg, #101a2b, #2a4a78);
}
.vo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vo-thumb-empty { display: flex; align-items: center; justify-content: center; }
.vo-thumb-empty span {
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}
.vo-query-card h3 { margin: 0 0 0.4rem; font-size: 0.98rem; line-height: 1.3; }
.vo-query-card h3 a { color: var(--vo-ink); }
.vo-query-card .vo-date {
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  color: var(--vo-ash);
  margin: 0 0 0.5rem;
}
.vo-query-card .wp-block-post-date {
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  color: var(--vo-ash);
  margin: 0 0 0.5rem;
}
.vo-query-card .wp-block-post-date a { color: var(--vo-ash); }

/* ==========================================================
   文章页 / 列表页（Observation Deck 全站皮肤）
   ========================================================== */

/* ---------- 代码标签 chip ---------- */
.vo-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--vo-deep);
  border: 1px solid rgba(255, 255, 255, 0.0);
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  text-decoration: none;
  line-height: 1;
}
.vo-chip-ember { background: var(--vo-ember); }
.vo-chip-deal { background: var(--vo-deal); }
.vo-chip-type {
  background: transparent;
  color: var(--vo-ink);
  border-color: var(--vo-steel);
}
.vo-chip-sm {
  font-size: 0.58rem;
  padding: 0.24rem 0.58rem;
  margin-bottom: 0.65rem;
  color: var(--vo-deep);
  background: var(--vo-surface-2);
  border-color: var(--vo-steel);
}
.vo-single-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.vo-chip-score {
  background: linear-gradient(135deg, #101a2b, #22314f);
  border: 1px solid rgba(79, 179, 255, 0.35);
  color: var(--vo-vapor);
}
.vo-chip-score b { color: #fff; font-size: 0.8rem; margin-left: 0.3rem; letter-spacing: 0.02em; }

/* ---------- 文章页 ---------- */
.vo-single {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.vo-single-hero {
  padding: 1.8rem 0 1.6rem;
  border-bottom: 1px solid var(--vo-steel);
  background: var(--vo-paper);
}
.vo-single-hero-inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
/* 安静编辑头部：眉题 → 超大标题 → 导语 → 署名 */
.vo-single-kicker {
  display: block;
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vo-ember);
  margin-bottom: 0.8rem;
}
.vo-single-kicker::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--vo-ember);
  margin-right: 0.6rem;
  vertical-align: middle;
}
.vo-single-title {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--vo-ink);
  margin: 0 0 1.1rem;
  max-width: 100%;
}
.vo-single-lede {
  font-size: 1.22rem;
  line-height: 1.7;
  color: #4f4f49;
  max-width: 700px;
  margin: 0 0 1.3rem;
}
.vo-single-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--vo-font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-meta-avatar img { border-radius: 50%; display: block; }
.vo-meta-dot { color: var(--vo-steel); }
.vo-meta-score { color: var(--vo-ember); font-weight: 700; }
.vo-meta-author a { color: var(--vo-ink); font-weight: 600; text-decoration: none; }
.vo-meta-author a:hover { color: var(--vo-ember); }

.vo-single-hero-media {
  position: relative;
  margin: 2rem 0 0;
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ecebe6;
  box-shadow: 0 18px 44px rgba(15, 26, 43, 0.12);
  background: var(--vo-deep);
}
.vo-single-hero-media img { width: 100%; height: auto; display: block; }
.vo-single-hero-media .vo-score-square { top: 1rem; left: 1rem; }
.vo-single-hero-cap {
  text-align: center;
  margin: 0.7rem 0 0;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ash);
}

.vo-single-content {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.vo-single-content > * { max-width: 100%; }
.vo-single-content p {
  font-family: var(--vo-font-body);
  font-size: 1.06rem;
  line-height: 1.78;
  color: #2a2a2a;
  margin: 0 0 1.35rem;
}
.vo-single-content a { color: var(--vo-ember); text-decoration-thickness: 1px; text-underline-offset: 2px; }
.vo-single-content h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  letter-spacing: -0.015em;
  margin: 2.2rem 0 0.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--vo-steel);
}
.vo-single-content h3 { font-size: 1.28rem; letter-spacing: -0.01em; margin: 1.8rem 0 0.7rem; }
.vo-single-content img { border-radius: 10px; height: auto; }
.vo-single-content figure { margin: 1.4rem 0; }
.vo-single-content figure img { box-shadow: 0 4px 14px rgba(15, 26, 43, 0.08); }
.vo-single-content figcaption {
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin-top: 0.5rem;
  text-align: center;
}
.vo-single-content table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 0.92rem; }
.vo-single-content th,
.vo-single-content td { border: 1px solid var(--vo-steel); padding: 0.65rem 0.8rem; text-align: left; vertical-align: top; }
.vo-single-content th {
  background: var(--vo-surface-2);
  font-family: var(--vo-font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vo-single-content ul,
.vo-single-content ol { margin: 0 0 1.2rem; padding-left: 1.4rem; line-height: 1.7; }
.vo-single-content li { margin-bottom: 0.4rem; }
.vo-single-content blockquote {
  font-family: var(--vo-font-body);
  border-left: 3px solid var(--vo-ember);
  background: var(--vo-surface-2);
  padding: 1.2rem 1.4rem;
  border-radius: 0 12px 12px 0;
  margin: 1.6rem 0;
  font-size: 1.05rem;
  font-style: italic;
}
.vo-single-content blockquote p:last-child { margin-bottom: 0; }

.vo-single-foot {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.vo-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.vo-tags a {
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  color: var(--vo-ash);
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  text-decoration: none;
}
.vo-tags a:hover { color: var(--vo-ember); border-color: var(--vo-ember); }

/* 作者卡 */
.vo-single-author {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-top: 2.4rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
}
.vo-single-author-avatar { flex: none; }
.vo-single-author-avatar img { border-radius: 50%; display: block; }
.vo-single-author-body { min-width: 0; }
.vo-single-author-role {
  display: block;
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vo-ember);
  margin-bottom: 0.3rem;
}
.vo-single-author-name { font-size: 1.05rem; }
.vo-single-author-name a { color: var(--vo-ink); text-decoration: none; }
.vo-single-author-name a:hover { color: var(--vo-ember); }
.vo-single-author-body p {
  color: var(--vo-ash);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.35rem 0 0;
}

/* ---------- 评分面板 ---------- */
.vo-review-panel {
  background: linear-gradient(160deg, #0d1626 0%, #111d33 55%, #16263f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: #fff;
  padding: clamp(1.35rem, 3.5vw, 2rem);
  margin: 0 0 1.8rem;
  position: relative;
  overflow: hidden;
}
.vo-review-panel::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 85% at 90% 0%, rgba(255, 77, 0, 0.16), transparent 60%),
    radial-gradient(45% 70% at 0% 100%, rgba(79, 179, 255, 0.1), transparent 55%);
  pointer-events: none;
}
.vo-review-head {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: flex-start;
  position: relative;
}
.vo-review-score {
  flex: none;
  width: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(8, 14, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.05rem 0.8rem 0.95rem;
}
.vo-score-big {
  font-family: var(--vo-font-mono);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.vo-score-unit { font-family: var(--vo-font-mono); font-size: 0.72rem; color: rgba(255, 255, 255, 0.55); margin-top: 0.25rem; }
.vo-score-label {
  font-family: var(--vo-font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--vo-vapor);
  margin-top: 0.6rem;
}
/* 0-10 量表：刻度线 + 炽橙指针（记忆点） */
.vo-score-gauge {
  width: 100%;
  max-width: 108px;
  height: 4px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.24));
  border-radius: 999px;
  position: relative;
}
.vo-score-gauge::before,
.vo-score-gauge::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 1px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
}
.vo-score-gauge::before { left: 0; }
.vo-score-gauge::after { right: 0; }
.vo-score-needle {
  position: absolute;
  top: -3px;
  width: 3px;
  height: 10px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--vo-ember);
  box-shadow: 0 0 8px rgba(255, 77, 0, 0.55);
}
.vo-score-grade {
  margin-top: 0.6rem;
  font-family: var(--vo-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}
.vo-score-grade-top { background: var(--vo-ember); }
.vo-score-grade-good { background: var(--vo-deal); }
.vo-score-grade-mid { background: #b8871e; }
.vo-score-grade-low { background: #8a3b2f; }
.vo-review-id { min-width: 0; }
.vo-review-panel .vo-review-title {
  color: #fff;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  margin: 0.65rem 0 0.45rem;
  line-height: 1.25;
  border-top: 0;
  padding-top: 0;
}
.vo-review-panel .vo-review-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.vo-review-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.6rem;
  margin-top: 1.5rem;
  position: relative;
}
.vo-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.72rem;
}
.vo-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
}
.vo-bar-top b { color: #fff; font-size: 0.78rem; }
.vo-bar-track { height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 999px; position: relative; }
.vo-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vo-ember), #ff9a4d);
  position: relative;
}
.vo-bar-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 10px;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 1px;
  opacity: 0.85;
}

/* ---------- 购买框 ---------- */
.vo-offer-wrap { margin: 1.7rem 0; display: grid; gap: 1rem; }
.vo-offer-card {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  background: var(--vo-paper);
  border: 1px solid #e5e2db;
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
}
.vo-offer-thumb {
  flex: none;
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--vo-deep);
  margin: 0;
}
.vo-offer-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vo-offer-body { min-width: 0; }
.vo-offer-body h3 { margin: 0.45rem 0 0.25rem; font-size: 1rem; }
.vo-offer-copy { color: var(--vo-ash); font-size: 0.85rem; line-height: 1.5; margin: 0 0 0.65rem; }
.vo-offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  color: var(--vo-ember);
  border: 1px solid var(--vo-ember);
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.52rem 0.95rem;
}
.vo-offer-btn:hover { background: var(--vo-ember); color: #fff; }

/* ---------- 归档/列表页 ---------- */
.single .content-container.site-container {
  max-width: var(--global-content-width);
}
.single.category-best-vapes .content-container.site-container {
  max-width: var(--global-content-narrow-width);
}
.archive .content-area,
.search .content-area {
  margin-top: 0;
  margin-bottom: 3rem;
}
.vo-archive-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 4.5vw, 3.4rem) 0 2.2rem;
  border-bottom: 1px solid var(--vo-steel);
  background: var(--vo-paper);
}
.vo-archive-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.4rem;
  background: linear-gradient(180deg, transparent, var(--vo-paper));
  pointer-events: none;
}
.vo-archive-hero--reviews { background: #f6f1e8; }
.vo-archive-hero--vape-news { background: #edf0f5; }
.vo-archive-hero--info-and-guides { background: #edf2ed; }
.vo-archive-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: 3rem;
  align-items: center;
}
.vo-archive-hero-copy { min-width: 0; }
.vo-archive-code {
  display: block;
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vo-ember);
}
.vo-archive-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0.6rem 0 0.8rem;
  color: var(--vo-ink);
}
.vo-archive-desc {
  color: #56574f;
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}
.vo-archive-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--vo-steel);
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5f5f57;
}
.vo-archive-rail span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}
.vo-archive-rail span + span {
  padding-left: 1.4rem;
  margin-left: 1.4rem;
  border-left: 1px solid var(--vo-steel);
}
.vo-archive-rail b {
  color: var(--vo-ink);
  font-weight: 650;
}
.vo-archive-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
}
.vo-archive-hero-panel-img {
  display: block;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--vo-steel);
}
.vo-archive-hero-panel-cap {
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-archive-hero .vo-search-form { margin-top: 1.4rem; }
.vo-archive-grid { margin-top: 1.3rem; }
.vo-archive-grid .vo-card,
.vo-related .vo-card { padding: 0; overflow: hidden; }
.vo-archive-grid .vo-thumb,
.vo-related .vo-thumb { border-radius: 14px; margin: 0; }
.vo-archive-grid .vo-card-body,
.vo-related .vo-card-body { padding: 1rem 1.1rem 1.15rem; }

/* 卡片评分角标 */
.vo-score-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  background: rgba(8, 14, 26, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: var(--vo-font-mono);
  font-weight: 700;
  font-size: 0.76rem;
  border-radius: 8px;
  padding: 0.22rem 0.5rem;
  backdrop-filter: blur(3px);
}
.vo-score-badge::before {
  content: "SCORE ";
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.65;
}

/* 分页 */
.vo-pagination { margin-top: 2.4rem; display: flex; justify-content: center; }
.vo-pagination .nav-links { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.vo-pagination .page-numbers {
  font-family: var(--vo-font-mono);
  font-size: 0.78rem;
  color: var(--vo-ink);
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 8px;
  padding: 0.45rem 0.78rem;
  text-decoration: none;
}
.vo-pagination .page-numbers.current { background: var(--vo-deep); color: #fff; border-color: var(--vo-deep); }
.vo-pagination a.page-numbers:hover { border-color: var(--vo-ember); color: var(--vo-ember); }

/* 相关文章 */
.vo-related {
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--vo-steel);
}
.vo-related h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 0.4rem 0 1.2rem; }

.vo-empty {
  background: var(--vo-surface);
  border: 1px dashed var(--vo-steel);
  border-radius: 14px;
  color: var(--vo-ash);
  padding: 3rem 1.5rem;
  text-align: center;
  margin-top: 1.4rem;
}

/* ---------- 响应式 ---------- */
@media (max-width: 720px) {
  .vo-hero-featured { justify-content: flex-start; }
  .vo-hero-cover-label,
  .vo-hero-badge { position: static; align-self: flex-start; }
  .vo-hero-badge { margin-left: auto; order: -1; }
  .vo-review-head { flex-direction: column; align-items: stretch; }
  .vo-review-score { align-self: center; width: 120px; }
  .vo-review-bars { grid-template-columns: 1fr; }
  .vo-offer-card { align-items: flex-start; }
  .vo-offer-thumb { width: 64px; height: 64px; }
  .vo-single-content { padding: 1.2rem 1.05rem; }
  .vo-single-photo { margin: 1rem 0 1.5rem; border-radius: 10px; }
  .vo-archive-hero { padding: 2.6rem 0 2rem; }
  .vo-archive-hero-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .vo-archive-hero-panel { display: none; }
}
.vo-query-card .wp-block-post-excerpt { color: var(--vo-ash); font-size: 0.85rem; margin: 0; }
.vo-query-card .wp-block-post-excerpt__more-text { display: none; }

/* ==========================================================
   Vape Deals 页：优惠行列表（LIVE / EXPIRED）
   ========================================================== */
.vo-deals-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
}
.vo-deals-head .vo-kicker { flex: none; }
.vo-deals-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vo-steel);
}
.vo-deals-grid {
  display: flex;
  flex-direction: column;
  margin: 0 0 2.4rem;
  border-top: 1px solid var(--vo-steel);
}
.vo-deals-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.vo-deals-filter button {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
  background: transparent;
  border: 1px solid var(--vo-steel);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.vo-deals-filter button:hover { color: var(--vo-ember); border-color: var(--vo-ember); }
.vo-deals-filter button.is-active {
  background: var(--vo-ink);
  border-color: var(--vo-ink);
  color: #fff;
}
.vo-deal-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.05rem 0.2rem;
  border-bottom: 1px solid var(--vo-steel);
  text-decoration: none;
  color: var(--vo-ink);
  transition: transform 0.2s ease;
}
.vo-deal-row:hover { transform: translateX(4px); }
.vo-deal-row--expired { opacity: 0.72; }
.vo-deal-row--expired:hover { transform: none; }
.vo-deal-row--expired .vo-deal-title { color: var(--vo-ash); }
.vo-deal-row--expired .vo-deal-title { text-decoration: none; }
.vo-deal-row--expired:hover .vo-deal-title { color: var(--vo-ash); }
.vo-deal-row--expired .vo-deal-discount { color: var(--vo-ash); }
.vo-deal-status {
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.vo-deal-status-live { color: #fff; background: var(--vo-deal); }
.vo-deal-status-expired { color: var(--vo-ash); border: 1px solid var(--vo-steel); }
.vo-deal-body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}
.vo-deal-cat {
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ember);
}
.vo-deal-type {
  display: inline-block;
  margin-right: 0.55rem;
  padding: 0.14rem 0.45rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  line-height: 1.4;
}
.vo-deal-type-code { color: var(--vo-ember); }
.vo-deal-type-discount { color: var(--vo-deal); }
.vo-deal-type-store { color: var(--vo-ink); }
.vo-deal-title {
  font-family: var(--vo-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--vo-ink);
  transition: color 0.18s;
}
.vo-deal-row:hover .vo-deal-title { color: var(--vo-ember); }
.vo-deal-meta {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  color: var(--vo-ash);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.vo-deal-discount { color: var(--vo-deal); font-weight: 600; }
.vo-deal-soon { color: var(--vo-ember); font-weight: 700; }
.vo-deal-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  min-height: 2.1rem;
}
.vo-deal-copy {
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ember);
  background: transparent;
  border: 1px solid var(--vo-ember);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.vo-deal-copy:hover { background: var(--vo-ember); color: #fff; }
.vo-deal-arrow {
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  color: var(--vo-ember);
  white-space: nowrap;
  text-decoration: none;
}
.vo-deal-expired-label {
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ash);
  white-space: nowrap;
}
.vo-deals-empty {
  color: var(--vo-ash);
  padding: 1.5rem 0;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
}
/* 优惠详情页：信息卡 */
.vo-deal-single {
  border: 1px solid #e6e3dc;
  border-left: 3px solid var(--vo-ember);
  border-radius: 14px;
  padding: 1.35rem 1.45rem;
  margin: 0 0 1.6rem;
  background: var(--vo-surface);
  box-shadow: 0 2px 12px rgba(15, 26, 43, 0.05);
}
.vo-deal-single-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.vo-deal-single-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1rem;
  margin: 0 0 1.1rem;
}
.vo-deal-single-meta dt {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ash);
  padding-top: 0.1rem;
}
.vo-deal-single-meta dd { margin: 0; font-weight: 600; }
.vo-deal-single-meta code {
  background: var(--vo-surface-2);
  border: 1px solid var(--vo-steel);
  border-radius: 6px;
  padding: 0.12rem 0.4rem;
  font-family: var(--vo-font-mono);
}
.vo-deal-single-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.vo-deal-single-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--vo-ember);
  color: #fff;
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 77, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.entry-content a.vo-deal-single-btn,
.vo-single-content a.vo-deal-single-btn { color: #fff; }
.vo-deal-single-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 77, 0, 0.35);
}
@media (max-width: 700px) {
  .vo-deal-row { grid-template-columns: auto minmax(0, 1fr); }
  .vo-deal-actions { flex-direction: row; align-items: center; gap: 0.8rem; grid-column: 2; }
  .vo-deal-arrow { display: none; }
}

/* ==========================================================
   Vape Deals v2：高级卡片（白卡 + 悬停浮起 + 左侧橙描边）
   ========================================================== */
.vo-deals-filter {
  gap: 0.55rem;
  margin: 0 0 1.2rem;
}
.vo-deals-filter button {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  padding: 0.38rem 0.9rem;
}
.vo-deals-grid {
  gap: 0.85rem;
  margin: 0 0 2.8rem;
  border-top: 0;
}
.vo-deal-row {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  padding: 1.15rem 1.3rem;
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(15, 26, 43, 0.02);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.vo-deal-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 99px;
  background: transparent;
  transition: background 0.22s ease;
}
.vo-deal-row:hover {
  transform: translateY(-2px);
  border-color: #ddd9d0;
  box-shadow: 0 16px 34px rgba(15, 26, 43, 0.09);
}
.vo-deal-row:hover::before { background: var(--vo-ember); }
.vo-deal-status {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  padding: 0.34rem 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}
.vo-deal-status-live {
  background: rgba(18, 177, 136, 0.12);
  color: #0b7a5e;
}
.vo-deal-status-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vo-deal);
  animation: vo-pulse 2.2s ease-out infinite;
}
.vo-deal-status-expired {
  color: var(--vo-ash);
  border: 1px solid var(--vo-steel);
  background: transparent;
}
.vo-deal-status-soon {
  color: var(--vo-ember);
  border: 1px solid var(--vo-ember);
  background: transparent;
}
.vo-deal-type {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 0.16rem 0.5rem;
}
.vo-deal-body { gap: 0.34rem; }
.vo-deal-cat {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--vo-ash);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.vo-deal-title {
  font-size: 1.13rem;
  line-height: 1.32;
}
.vo-deal-meta {
  gap: 0.3rem 1.1rem;
  font-size: 0.68rem;
}
.vo-deal-discount {
  display: inline-block;
  background: var(--vo-ember-soft);
  color: var(--vo-ember);
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  font-weight: 700;
}
.vo-deal-actions { gap: 0.5rem; }
.vo-deal-copy {
  font-size: 0.62rem;
  padding: 0.36rem 0.85rem;
}
.vo-deal-arrow {
  font-size: 0.72rem;
  font-weight: 600;
  transition: transform 0.2s ease, color 0.2s ease;
}
.vo-deal-row:hover .vo-deal-arrow { transform: translateX(3px); }
.vo-deals-empty {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
}
/* 优惠详情页：底部二次转化条 + 精简作者区 */
.vo-deal-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 0;
  padding: 1.3rem 1.4rem;
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 16px;
}
.vo-deal-closing-copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.vo-deal-closing-copy .vo-kicker { margin: 0; }
.vo-deal-closing-copy strong {
  font-family: var(--vo-font-display);
  font-size: 1.08rem;
  line-height: 1.35;
}
.vo-deal-closing-note {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-deal-closing-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
article.category-vape-deals-2 .vo-single-author { display: none; }

/* Deals 页头与指南：与主题编辑风格统一 */
.page-id-9946 .vo-page-hero {
  padding: clamp(1.6rem, 4vw, 2.6rem) 0 1.4rem;
  border-bottom: 1px solid var(--vo-steel);
}
.page-id-9946 .vo-page-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.028em;
  margin: 0 0 0.8rem;
}
.page-id-9946 .vo-page-lead {
  color: #56574f;
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 720px;
}
.page-id-9946 .entry-content h2 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  margin: 2.2rem 0 1rem;
}
.page-id-9946 .entry-content h2::before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--vo-ember);
  flex: none;
}
.page-id-9946 .entry-content h3 {
  font-size: 1.02rem;
  margin: 1.4rem 0 0.4rem;
  color: var(--vo-ink);
}
.page-id-9946 .entry-content p {
  color: var(--vo-ash);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .vo-deal-row { grid-template-columns: auto minmax(0, 1fr); gap: 1rem; }
  .vo-deal-actions { grid-column: 2; }
  .vo-deal-arrow { display: none; }
}

/* ==========================================================
   Deals 中心：统计轨 + 今日主打 + 倒计时
   ========================================================== */
.vo-deals-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin: 0 0 1.8rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-deals-stats b { color: var(--vo-ink); font-weight: 700; }
.vo-deals-stats-hot { color: var(--vo-ember); }
.vo-deals-stats-hot b { color: var(--vo-ember); }

.vo-deals-spot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.6rem;
  align-items: center;
  margin: 0 0 2.4rem;
  padding: 1.2rem;
  background: linear-gradient(150deg, #131720 0%, #0d1117 60%, #1a120c 100%);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 44px rgba(10, 13, 18, 0.22);
}
.vo-deals-spot-media {
  display: block;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #1a2030;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.vo-deals-spot-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}
.vo-deals-spot-body .vo-kicker { color: #ffb28a; }
.vo-deals-spot-title {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
}
.vo-deals-spot-title a { color: #fff; text-decoration: none; }
.vo-deals-spot-title a:hover { color: var(--vo-ember); }
.vo-deals-spot-discount { font-size: 0.8rem; padding: 0.3rem 0.75rem; }
.vo-deals-spot-meta {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.vo-deal-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffb28a;
  background: rgba(255, 77, 0, 0.14);
  border: 1px solid rgba(255, 77, 0, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}
.vo-deals-spot-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
@media (max-width: 700px) {
  .vo-deals-spot { grid-template-columns: 1fr; gap: 1rem; }
  .vo-deals-spot-media { aspect-ratio: 4 / 3; background-position: center 70%; }
}

/* Deals 页：压掉页眉间距 */
.page-id-9946 .content-area { margin-top: 0; }

/* ==========================================================
   NEXT 设计层（2026-08-12）：暖纸编辑部 · Lab Bench
   对应原型 prototypes/vo-next —— 首页 / 产品库 / 产品详情
   ========================================================== */
:root {
  --vo-paper: #f5f3ee;
  --vo-ink: #16140f;
  --vo-ink-2: #4a473f;
  --vo-ink-3: #8f8b7e;
  --vo-deep: #12140f;
  --vo-deep-2: #1c1f18;
  --vo-ember: #ff4d00;
  --vo-ember-soft: #ffe6d9;
  --vo-ember-ink: #b63400;
  --vo-steel: #e3dfd4;
  --vo-line-2: #d5d0c2;
  --vo-surface-2: #efece4;
  --vo-deal: #0e9f6e;
  --vo-deal-soft: #ddf2e8;
  --vo-shadow-1: 0 1px 2px rgba(22, 20, 15, 0.05), 0 6px 18px rgba(22, 20, 15, 0.05);
  --vo-shadow-2: 0 16px 40px rgba(22, 20, 15, 0.14);
}

body { background: var(--vo-paper); }
::selection { background: var(--vo-ember); color: #fff; }

/* 图片内描边：避免图片边缘融进底色 */
.vo-query-card img,
.vo-top-card-img img,
.vo-hero-editorial-photo img,
.entry-content img,
.vo-article img,
.vo-newsletter img { outline: 1px solid rgba(22, 20, 15, 0.07); outline-offset: -1px; }

/* ---------- 页眉：暖纸半透明 + 模糊 ---------- */
#main-header .site-header-row-container-inner {
  background: rgba(245, 243, 238, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vo-steel);
}
.site-header-main-section-right .header-navigation .menu > li > a {
  font-size: 0.94rem;
  color: var(--vo-ink-2);
}
.site-header-main-section-right .header-navigation .menu > li.current-menu-item > a,
.site-header-main-section-right .header-navigation .menu > li > a:hover { color: var(--vo-ink); }

/* ---------- 首页 Hero：深色 Lab 面板 ---------- */
.vo-top-split { gap: 1.4rem; padding: 1.2rem 0 2.6rem; }
.vo-top-featured {
  border-radius: 18px;
  height: 540px;
  box-shadow: 0 16px 40px rgba(22, 20, 15, 0.22);
}
.vo-top-featured .vo-hero-editorial-title {
  font-size: clamp(1.65rem, 3.4vw, 2.8rem);
  max-width: 620px;
}
.vo-top-featured .vo-kicker { color: #ffb28a; }

/* 右侧副卡：Night-2 面板 + 发丝线 */
.vo-top-side {
  background: var(--vo-deep-2);
  border-radius: 18px;
  padding: 0.45rem 1.25rem;
  overflow: hidden;
  justify-content: flex-start;
}
.vo-top-card {
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.02rem 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vo-top-card:last-child { border-bottom: 0; }
.vo-top-card:hover { transform: translateX(4px); }
.vo-top-card .vo-card-cat { color: #ffb28a; font-size: 0.62rem; }
.vo-top-card:hover .vo-card-cat { color: #ffb28a; }
.vo-top-card-title { color: #fff; font-size: 0.96rem; }
.vo-top-card:hover .vo-top-card-title { color: #fff; }
.vo-top-card-meta { color: rgba(255, 255, 255, 0.62); }
.vo-top-card-img { border-radius: 6px; }
.vo-top-card-img img { width: 84px; height: 64px; border-radius: 6px; }

/* ---------- 区块标题 ---------- */
.vo-section > h2 {
  font-family: var(--vo-font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.vo-kicker { color: var(--vo-ember); }
.vo-viewall {
  color: var(--vo-ink-2);
  background: transparent;
  border-radius: 999px;
}
.vo-viewall:hover { color: var(--vo-ember); background: var(--vo-ember-soft); }

/* ---------- 文章/测评卡（vo-query-card）---------- */
.vo-query-card {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 10px;
  box-shadow: var(--vo-shadow-1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.vo-query-card:hover { transform: translateY(-4px); box-shadow: var(--vo-shadow-2); }
.vo-query-card .vo-thumb {
  border-radius: 0;
  margin: 0;
  background: var(--vo-surface-2);
}
.vo-query-card .vo-card-body { padding: 18px 20px 20px; }
.vo-query-card h3 { font-size: 1.04rem; line-height: 1.3; margin-bottom: 6px; }
.vo-query-card .vo-date,
.vo-query-card .wp-block-post-date {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ink-3);
}
.vo-query-card .vo-excerpt { color: var(--vo-ink-2); font-size: 0.86rem; }

/* 评分胶囊：≥9 橙底，其余深底（在卡片左上/右上已有结构上统一圆角） */
.vo-score-badge {
  border-radius: 999px;
  background: rgba(18, 20, 15, 0.88);
  border: 0;
  padding: 0.28rem 0.62rem;
}
.vo-score-badge::before { content: ""; }

/* ---------- 产品卡片 ---------- */
.vo-product-card {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 10px;
  box-shadow: var(--vo-shadow-1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.vo-product-card:hover { transform: translateY(-4px); box-shadow: var(--vo-shadow-2); }
.vo-product-card .vo-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  margin: 0;
  background: var(--vo-surface-2);
  aspect-ratio: 1 / 1;
  padding: 14px;
}
.vo-product-card .vo-thumb img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  outline: 0;
  transition: transform 0.3s ease;
}
.vo-product-card:hover .vo-thumb img { transform: scale(1.05); }
.vo-product-card .vo-card-body { padding: 15px 17px 17px; }
.vo-product-card .vo-card-cat {
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--vo-ink-3);
}
.vo-product-card h3 { font-size: 0.97rem; line-height: 1.3; margin: 0 0 4px; }
.vo-product-card .vo-date {
  display: inline-block;
  margin: 2px 0 6px;
  font-family: var(--vo-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ember-ink);
  background: var(--vo-ember-soft);
  border-radius: 999px;
  padding: 3px 9px;
}
.vo-product-card .vo-spec-row {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  color: var(--vo-ink-2);
  margin: 4px 0 0;
}
.vo-product-card .vo-price,
.vo-product-card .vo-score-line { display: none; }

/* Compare 按钮：右上角深色圆角 */
.vo-compare-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--vo-line-2);
  color: var(--vo-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: all 0.16s ease;
}
.vo-compare-btn:hover { border-color: var(--vo-ink); }
.vo-compare-btn.is-active,
.vo-compare-btn.vo-on { background: var(--vo-ink); border-color: var(--vo-ink); color: #fff; }

/* ---------- 产品库 ---------- */
.vo-shop-hero { padding: clamp(1.4rem, 3vw, 2.2rem) 0 0.8rem; }
.vo-shop-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 0.4rem;
}
.vo-shop-desc { color: var(--vo-ink-2); }
.vo-shop-layout { grid-template-columns: 250px minmax(0, 1fr); gap: 2.2rem; margin-top: 1.1rem; }
.vo-shop-filters {
  border-radius: 10px;
  border-color: var(--vo-steel);
  padding: 1.15rem 1.1rem;
}
.vo-shop-filters-title { color: var(--vo-ember); }
.vo-filter-group-title { color: var(--vo-ink-2); }
.vo-filter-row { font-size: 0.86rem; color: var(--vo-ink-2); }
.vo-filter-link:hover { color: var(--vo-ember); }
.vo-shop-toolbar { border-top: 0; }
.vo-result-count { font-size: 0.72rem; letter-spacing: 0.06em; }
.vo-products-grid { gap: 22px; }
.vo-products-grid .vo-card { border-radius: 10px; }
.vo-pagination .page-numbers { border-radius: 6px; }
.vo-pagination .page-numbers.current { background: var(--vo-ink); border-color: var(--vo-ink); color: #fff; }

/* ---------- 产品详情：档案页 ---------- */
.vo-prod-breadcrumb { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--vo-ink-2); }
.vo-record-head .vo-prod-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.vo-record-meta,
.vo-record-facts { color: var(--vo-ink-3); }

/* 关键指标条：白卡 + 发丝线，等宽数字 */
.vo-record-strip {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 10px;
  padding: 0.2rem 0;
  margin: 1.7rem 0 2.6rem;
}
.vo-record-stat { padding: 1rem 1.25rem 1.05rem; }
.vo-record-stat + .vo-record-stat { border-left: 1px solid var(--vo-steel); padding-left: 1.5rem; }
.vo-record-stat span { font-size: 11px; letter-spacing: 0.1em; color: var(--vo-ink-3); }
.vo-record-stat b { font-family: var(--vo-font-mono); font-size: 1.05rem; font-weight: 700; }

/* 照片板 + 侧栏 */
.vo-record-body { gap: 2.6rem; }
.vo-record-body .vo-prod-photo {
  border: 1px solid var(--vo-steel);
  border-radius: 10px;
  background: var(--vo-surface);
  box-shadow: var(--vo-shadow-1);
}
.vo-prod-gallery img { border-radius: 6px; border: 1px solid var(--vo-steel); }
.vo-prod-chips .vo-chip,
.vo-chip {
  border: 1px solid var(--vo-line-2);
  border-radius: 999px;
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ink-2);
}
.vo-chip-ember { color: var(--vo-ember-ink); background: var(--vo-ember-soft); border-color: transparent; }
.vo-prod-lead {
  border-left: 3px solid var(--vo-ember);
  padding-left: 18px;
  color: var(--vo-ink-2);
  font-size: 1.03rem;
  line-height: 1.75;
}

/* 档案目录：本页结构索引（保留在内容流中，不悬浮） */
.vo-record-index {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  margin: 2rem 0 0;
  gap: 1rem;
}
.vo-record-index-label { color: var(--vo-ink-3); }
.vo-record-index-links a { color: var(--vo-ink); font-size: 0.88rem; }

/* 分区模块 */
.vo-hub-module { margin-top: 3.4rem; }
.vo-hub-module > h2 {
  font-family: var(--vo-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 1.4rem;
  gap: 0.8rem;
}
.vo-mod-num {
  background: transparent;
  color: var(--vo-ember);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
}
.vo-hub-sub { font-size: 1.05rem; }

/* 规格：双栏数据表，发丝线行 */
.vo-spec-groups { column-gap: 3rem; max-width: 1080px; }
.vo-spec-group > .vo-hub-sub {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: var(--vo-ink-3);
}
.vo-spec-row {
  border-bottom: 1px solid var(--vo-steel);
  padding: 0.62rem 0;
}
.vo-spec-row dt { color: var(--vo-ink-3); font-size: 0.85rem; }
.vo-spec-row dd { font-weight: 500; font-size: 0.94rem; }
.vo-spec-full { border-bottom: 1px solid var(--vo-steel); }

/* Kit 清单：白卡 + 绿色勾 */
.vo-check-list { gap: 0.6rem; max-width: 720px; }
.vo-check-list li {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 8px;
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
}
.vo-check-list li::before { color: var(--vo-deal); font-weight: 700; }

/* 底部 Deals strip：深色面板 */
.vo-deals-strip {
  background: var(--vo-deep);
  color: #fff;
  border-radius: 10px;
  padding: 1.35rem 1.5rem;
}
.vo-deals-strip span { color: rgba(255, 255, 255, 0.65); }

/* ---------- 订阅区 ---------- */
.vo-newsletter {
  border-radius: 18px;
  background: var(--vo-deep);
  box-shadow: 0 16px 40px rgba(22, 20, 15, 0.18);
}
.vo-newsletter h2 { color: #fff; font-weight: 800; letter-spacing: -0.02em; }
.vo-newsletter p { color: rgba(255, 255, 255, 0.65); }
.vo-newsletter .wp-block-button__link { background: var(--vo-ember); }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .vo-top-split { grid-template-columns: 1fr; }
  .vo-top-side { padding: 0.35rem 1rem; }
}
@media (max-width: 700px) {
  .vo-top-featured { height: 480px; border-radius: 14px; }
  .vo-top-card { grid-template-columns: 72px minmax(0, 1fr); }
  .vo-top-card-img img { width: 72px; height: 56px; }
  .vo-shop-layout { grid-template-columns: 1fr; }
  .vo-spec-groups { grid-template-columns: 1fr; }
  .vo-record-body { grid-template-columns: 1fr; }
  .vo-record-strip { grid-template-columns: repeat(2, 1fr); }
  .vo-record-stat + .vo-record-stat { border-left: 0; }
  .vo-record-stat:nth-child(odd) { border-left: 0; }
  .vo-record-stat:nth-child(even) { border-left: 1px solid var(--vo-steel); }
  .vo-hub-module > h2 { font-size: 1.25rem; }
}
.page-id-9946 .vo-page-hero { padding: clamp(2.2rem, 5vw, 3.2rem) 0 1.4rem; }

/* ---------- 页脚 ---------- */
.site-footer { display: none; }
.vo-footer {
  border-top: 3px solid var(--vo-ember);
  background: linear-gradient(180deg, var(--vo-deep-2) 0%, var(--vo-deep) 55%, #0a1322 100%);
  color: #cdd8ea;
  margin-top: 2rem;
  padding: clamp(2.4rem, 5vw, 3.4rem) 1.2rem 0;
}
.vo-footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}
.vo-footer-brand .vo-footer-logo {
  font-family: var(--vo-font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
}
.vo-footer-brand .vo-footer-logo span { color: var(--vo-ember); }
.vo-footer-brand p {
  color: #9fb0c9;
  font-size: 0.86rem;
  max-width: 34ch;
  margin: 0.6rem 0 0.9rem;
  line-height: 1.6;
}
.vo-age-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  border-radius: 8px;
  padding: 0.28rem 0.62rem;
}
.vo-footer-col h4 {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vo-ember);
  margin: 0 0 0.7rem;
}
.vo-footer-col a {
  display: block;
  color: #cdd8ea;
  font-size: 0.88rem;
  padding: 0.28rem 0;
  text-decoration: none;
  transition: color 0.15s ease;
}
.vo-footer-col a:hover { color: #fff; }

/* 社媒图标一行 */
.vo-footer-social-row {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.vo-footer-social-label {
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fb0c9;
  flex: none;
}
.vo-footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.vo-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #cdd8ea;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.vo-social-link svg {
  display: block;
  width: 17px;
  height: 17px;
}
.vo-social-link:hover {
  border-color: var(--vo-ember);
  background: var(--vo-ember);
  color: #fff;
  transform: translateY(-2px);
}
.vo-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0 1.5rem;
  color: #8fa1ba;
  font-size: 0.74rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (max-width: 781px) {
  .vo-footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem 1.2rem; }
  .vo-footer-brand { grid-column: 1 / -1; }
  .vo-footer-social-row { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .vo-footer-bottom { padding-bottom: 1.2rem; }
}
@media (min-width: 782px) {
  .vo-footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .vo-footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------- 响应式 ---------- */
@media (min-width: 900px) {
  .vo-hero-grid {
    grid-template-columns: 1.7fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 440px;
  }
  .vo-hero-featured { grid-row: 1 / 3; align-self: stretch; height: 100%; }
  .vo-hero-sub { align-self: stretch; height: 100%; min-height: 0; }
}
@media (min-width: 782px) {
  .vo-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .vo-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 600px) and (max-width: 781px) {
  .vo-grid-3, .vo-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* 可访问性 */
:focus-visible { outline: 3px solid rgba(242, 92, 5, 0.55); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .vo-ticker-track { animation: none; }
  .vo-hero-featured::after { animation: none; }
}

/* ---------- 页眉整体 ---------- */
#main-header .site-header-row-container-inner {
  background: var(--vo-surface);
  border-bottom: 1px solid var(--vo-steel);
}
.site-header-main-section-right .header-navigation .menu > li > a {
  font-family: var(--vo-font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: var(--vo-deep);
  transition: color 0.18s ease;
}
.site-header-main-section-right .header-navigation .menu > li > a:hover {
  color: var(--vo-ember);
}

/* ---------- 搜索触发按钮 ---------- */
.voskin-search-trigger-wrap {
  display: flex;
  align-items: center;
}
.voskin-search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 38px;
  height: 38px;
  margin-left: 0.9rem;
  padding: 0;
  border: 1px solid var(--vo-steel);
  border-radius: 9px;
  background: var(--vo-surface);
  color: var(--vo-ink);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.voskin-search-trigger:hover {
  border-color: var(--vo-ember);
  color: var(--vo-ember);
  background: var(--vo-ember-soft);
}
.voskin-search-trigger:active {
  transform: scale(0.95);
}
.voskin-search-trigger svg {
  display: block;
  flex: none;
  max-width: none;
  width: 18px;
  height: 18px;
}
.voskin-search-trigger-mobile .voskin-search-trigger {
  width: 36px;
  height: 36px;
  margin-left: 0;
  margin-right: 0.55rem;
}

/* ---------- 搜索面板（命令面板式浮层） ---------- */
.voskin-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
}
.voskin-search-overlay[hidden] {
  display: none;
}
.voskin-search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 43, 0.56);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.voskin-search-panel {
  position: relative;
  margin: 12vh auto 0;
  width: min(680px, calc(100vw - 32px));
  background: var(--vo-paper);
  border: 1px solid var(--vo-steel);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 26, 43, 0.3);
  overflow: hidden;
}
.voskin-overlay-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--vo-surface);
  border-bottom: 1px solid var(--vo-steel);
}
.voskin-overlay-search-icon {
  display: flex;
  color: var(--vo-ember);
  flex: none;
}
.voskin-overlay-search-icon svg {
  width: 20px;
  height: 20px;
}
.voskin-overlay-input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--vo-ink);
  font-family: var(--vo-font-body);
  font-size: 1.02rem;
  font-weight: 500;
}
.voskin-overlay-input::placeholder {
  color: var(--vo-ash);
  opacity: 1;
}
.voskin-overlay-input:focus {
  box-shadow: none;
  border-color: transparent;
}
.voskin-overlay-close {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--vo-steel);
  border-radius: 8px;
  background: var(--vo-surface);
  color: var(--vo-ash);
  cursor: pointer;
  flex: none;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.voskin-overlay-close:hover {
  border-color: var(--vo-ember);
  color: var(--vo-ember);
}
.voskin-overlay-close svg {
  flex: none;
  max-width: none;
  width: 15px;
  height: 15px;
}
.voskin-search-results {
  max-height: min(62vh, 560px);
  overflow-y: auto;
  padding: 0.65rem 0.75rem 0.8rem;
}
.voskin-results-head {
  display: block;
  margin: 0.7rem 0.45rem 0.35rem;
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.voskin-results-group + .voskin-results-group .voskin-results-head {
  margin-top: 0.9rem;
  border-top: 1px solid var(--vo-steel);
  padding-top: 0.85rem;
}
.voskin-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.voskin-result-item:hover {
  background: var(--vo-surface);
}
.voskin-result-thumb {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  object-fit: cover;
  background: var(--vo-surface-2);
  flex: none;
}
.voskin-result-thumb-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vo-font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vo-ash);
}
.voskin-result-info {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.voskin-result-type {
  font-family: var(--vo-font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.voskin-result-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vo-ink);
  line-height: 1.35;
}
.voskin-result-meta {
  font-size: 0.76rem;
  color: var(--vo-ash);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voskin-results-empty {
  padding: 1.3rem 0.8rem;
  font-size: 0.9rem;
  color: var(--vo-ash);
  text-align: center;
}
.voskin-results-foot {
  margin-top: 0.5rem;
  padding: 0.75rem 0.6rem 0.4rem;
  border-top: 1px solid var(--vo-steel);
  text-align: center;
}
.voskin-results-foot a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--vo-ember);
  text-decoration: none;
}
.voskin-results-foot a:hover {
  text-decoration: underline;
}
.voskin-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.2rem 0.45rem 0.7rem;
}
.voskin-quicklinks a {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--vo-steel);
  border-radius: 999px;
  background: var(--vo-surface);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--vo-ink);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.voskin-quicklinks a:hover {
  border-color: var(--vo-ember);
  color: var(--vo-ember);
}
body.voskin-search-open {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .voskin-search-panel {
    margin-top: 7vh;
  }
}
@media (max-width: 720px) {
  .voskin-search-panel {
    margin: 0;
    width: 100%;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
    padding-top: env(safe-area-inset-top, 0px);
    display: flex;
    flex-direction: column;
  }
  .voskin-overlay-form {
    padding: 0.7rem 0.9rem;
    flex: none;
  }
  .voskin-overlay-input {
    font-size: 16px;
    height: 48px;
  }
  .voskin-overlay-close {
    width: 42px;
    height: 42px;
  }
  .voskin-search-results {
    flex: 1;
    max-height: none;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  .voskin-result-item {
    min-height: 52px;
    padding: 0.6rem 0.7rem;
  }
  .voskin-result-title {
    font-size: 0.95rem;
    line-height: 1.35;
  }
  .voskin-quicklinks {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .voskin-search-trigger,
  .voskin-search-trigger:hover,
  .voskin-overlay-close,
  .voskin-overlay-close:hover {
    transition: none;
  }
}

/* ==========================================================
   2026-08 皮肤升级：频谱评分仪表 / 编辑克制化
   ========================================================== */

/* 评分条统一走频谱渐变（蒸汽蓝 → 灼热橙） */
.vo-bar-fill {
  background: var(--vo-spectrum);
}

/* 卡片评分行（track + fill，固定轨道） */
.vo-score-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--vo-steel);
}
.vo-score-line .vo-score-track {
  flex: 0 0 84px;
  height: 2px;
  background: var(--vo-steel);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.vo-score-line .vo-score-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--vo-spectrum);
  border-radius: 2px;
}
.vo-score-line .vo-score-num {
  font-family: var(--vo-font-mono);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
}
.vo-score-line .vo-score-num small {
  color: var(--vo-ash);
  font-size: 0.62em;
  font-weight: 400;
}
.vo-score-line .vo-score-tag {
  font-family: var(--vo-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
  white-space: nowrap;
}

/* 头条评测区的浅色评分线 */
.vo-hero-featured .vo-score-line {
  position: relative;
  z-index: 2;
  margin-top: 0.8rem;
  border-top: 0;
  padding: 0.45rem 0.75rem;
  background: rgba(8, 14, 26, 0.55);
  border-radius: 999px;
  align-self: flex-start;
}
.vo-hero-featured .vo-score-line .vo-score-num { color: #fff; font-size: 1.25rem; }
.vo-hero-featured .vo-score-line .vo-score-num small { color: rgba(255, 255, 255, 0.65); }
.vo-hero-featured .vo-score-line .vo-score-track { background: rgba(255, 255, 255, 0.28); }
.vo-hero-featured .vo-score-line .vo-score-tag { color: #fff; }
.vo-hero-featured .wp-block-button__link { background: #fff; color: var(--vo-ink); }
.vo-hero-featured .wp-block-button__link:hover { background: var(--vo-ember); color: #fff; }

/* 正文链接与选中态 */
::selection { background: var(--vo-ember); color: #fff; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--vo-ember);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Kadence 按钮统一到皮肤 */
.wp-block-button__link,
.wp-block-button__link.wp-element-button {
  background: var(--vo-ink);
  color: #fff;
  border-radius: 999px;
  font-family: var(--vo-font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.3rem;
  transition: background 0.18s ease;
}
.wp-block-button__link:hover,
.wp-block-button__link.wp-element-button:hover {
  background: var(--vo-ember);
  color: #fff;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--vo-ink);
  border: 1px solid var(--vo-steel);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--vo-ember);
  color: var(--vo-ember);
  background: transparent;
}

/* ==========================================================
   产品 Hub 聚合页（2026-08）
   ========================================================== */

/* 产品库数据背书：权威数字条 */
.vo-db-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 1.4rem 0 1.8rem;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
}
.vo-db-stat {
  padding: 1.1rem 1.4rem 1.2rem 0;
}
.vo-db-stat + .vo-db-stat {
  padding-left: 1.4rem;
}
.vo-db-stat b {
  display: block;
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.vo-db-stat span {
  display: block;
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin-top: 0.35rem;
}

/* 判决行：编辑式评分条（无卡片框，hairline 分隔） */
.vo-prod-verdict {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin: 0.9rem 0 0;
  padding: 0.95rem 0;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
  max-width: 720px;
}
.vo-verdict-score {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex: none;
}
.vo-verdict-num {
  font-size: 2.05rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.02em;
}
.vo-verdict-unit {
  color: var(--vo-ash);
  font-size: 0.78rem;
}
.vo-verdict-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  min-width: 0;
}
.vo-verdict-grade {
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}
.vo-verdict-grade-top {
  background: var(--vo-ink);
  color: #fff;
}
.vo-verdict-grade-good {
  color: var(--vo-ember);
  border: 1px solid var(--vo-ember);
}
.vo-verdict-grade-mid {
  color: #8a6d1f;
  background: #faf3d9;
}
.vo-verdict-grade-low {
  color: var(--vo-ash);
  border: 1px solid var(--vo-steel);
}
.vo-verdict-caption {
  font-family: var(--vo-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-verdict-track {
  flex: 1 1 120px;
  max-width: 170px;
  height: 4px;
  border-radius: 999px;
  background: var(--vo-surface-2);
  overflow: hidden;
}
.vo-verdict-fill {
  display: block;
  height: 100%;
  background: var(--vo-ember);
  border-radius: 999px;
}
.vo-prod-verdict-link {
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--vo-ember);
  white-space: nowrap;
  margin-left: auto;
}
.vo-prod-verdict-link:hover { text-decoration: underline; }
.vo-verdict-note {
  flex: 1 0 100%;
  margin: 0.55rem 0 0;
  color: var(--vo-ash);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 640px;
}

/* Hub 模块标题：编号徽章 + 标题 + 贯穿分隔线（结构层级） */
.vo-hub-module {
  margin-top: 3rem;
}
.vo-hub-module > h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--vo-steel);
  font-family: var(--vo-font-body);
  font-size: 1.22rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--vo-ink);
}
.vo-mod-num {
  flex: none;
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--vo-ember);
  border-radius: 7px;
  padding: 0.3rem 0.55rem;
  line-height: 1;
}
.vo-hub-sub {
  font-size: 1.02rem;
  margin: 1.4rem 0 0.7rem;
}

/* 档案目录：本页结构索引 */
.vo-record-index {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1.9rem 0 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
}
.vo-record-index-label {
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vo-ash);
  flex: none;
}
.vo-record-index-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.5rem;
}
.vo-record-index-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--vo-ink);
  text-decoration: none;
}
.vo-record-index-links a span {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--vo-ember);
}
.vo-record-index-links a:hover { color: var(--vo-ember); }
[id^="vo-sec"] { scroll-margin-top: 104px; }

/* Coverage 互链列表 */
.vo-coverage-list {
  display: grid;
  gap: 0.2rem;
}
.vo-coverage-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--vo-steel);
  font-size: 0.96rem;
}
.vo-coverage-item a:hover { color: var(--vo-ember); }
.vo-coverage-meta {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ash);
  white-space: nowrap;
}

/* Deals & availability：安静的一行，不做买框 */
.vo-deals-strip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1rem 0 0.15rem;
  border-top: 1px solid var(--vo-steel);
}
.vo-deals-strip span {
  color: var(--vo-ash);
  font-size: 0.86rem;
  max-width: 520px;
}
.vo-deals-strip a {
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--vo-ember);
  text-decoration: none;
  white-space: nowrap;
}
.vo-deals-strip a:hover { text-decoration: underline; }

/* ==========================================================
   产品 Hub v2：大数字摘要 + 结构层次强化
   ========================================================== */

/* At a glance：大数字规格（替代旧 Quick specs 列表，避免与 02 重复） */
.vo-prod-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.4rem;
}
.vo-prod-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-prod-stat:nth-last-child(-n+2) { border-bottom: 0; }
.vo-prod-stat strong {
  font-family: var(--vo-font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  word-break: break-word;
}
.vo-prod-stat span {
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
}

/* 编号模块：更强的节奏与分隔 */
.vo-hub-module {
  margin-top: 3rem;
}
.vo-hub-module > h2 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.vo-hub-sub {
  font-size: 1.05rem;
  margin: 1.8rem 0 0.85rem;
}

/* 规格表分隔线：虚线改实线，更清晰 */
.vo-spec-row,
.vo-spec-full {
  border-bottom: 1px solid var(--vo-steel);
}

/* Overview 的功能列表：单列，避免两列孤项 */
.vo-hub-overview .vo-check-list {
  grid-template-columns: 1fr;
}

/* 补充区块（风味等）：明确区别于编号模块 */
.vo-prod-block {
  margin-top: 2.2rem;
}
.vo-prod-block.vo-hub-chips h2,
.vo-prod-block > h2 {
  font-family: var(--vo-font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin: 0 0 0.9rem;
}

/* 产品卡：类型感知规格行 */
.vo-product-card .vo-spec-row {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--vo-ash);
  line-height: 1.6;
  margin: 0.35rem 0 0;
}
.vo-product-card .vo-score-line {
  margin-top: 0.7rem;
}

/* ==========================================================
   对齐原型：安静编辑（2026-08 首页皮肤）
   ========================================================== */

/* 版块：更大留白、展示字号 */
.vo-section {
  margin-top: 3.4rem;
}
.vo-section .wp-block-heading,
.vo-section > .wp-block-group__inner-container > .wp-block-heading {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 1.3rem;
}
.vo-section .vo-kicker {
  margin-bottom: 0.5rem;
}
.vo-viewall {
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--vo-ember);
  display: inline-block;
  margin: -0.4rem 0 1rem;
}
.vo-viewall:hover { text-decoration: underline; }

/* 卡片：去边框去底色（内容卡 + 产品卡），保留图圆角 */
.vo-query-card,
.vo-product-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.vo-query-card:hover,
.vo-product-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
.vo-query-card .vo-thumb,
.vo-product-card .vo-thumb {
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--vo-steel);
}
/* 图片圆角统一：白底图自身也裁圆角，描边让圆角轮廓清晰可见 */
.vo-thumb,
.vo-thumb-empty { border-radius: 14px; }
.vo-thumb img { border-radius: 14px; }
.vo-query-card .vo-thumb img {
  object-fit: cover;
  background: transparent;
  transition: transform 0.35s ease;
}
.vo-product-card .vo-thumb img {
  object-fit: contain;
  background: #fff;
  transition: transform 0.35s ease;
}
.vo-query-card:hover .vo-thumb img,
.vo-product-card:hover .vo-thumb img {
  transform: scale(1.02);
}
/* 产品卡：单一"相框"处理，白底图有底色衬底但不再双重嵌套 */
.vo-product-card .vo-thumb {
  background: #f2f1ed;
  border: 1px solid #e7e4de;
  border-radius: 14px;
  padding: 0.55rem;
}
.vo-product-card .vo-thumb img {
  background: transparent;
  border-radius: 14px;
}
.vo-product-card:hover .vo-thumb {
  box-shadow: 0 8px 22px rgba(15, 26, 43, 0.08);
}
.vo-query-card .vo-card-body,
.vo-product-card .vo-card-body {
  padding: 0.9rem 0 0;
}
.vo-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vo-product-card .vo-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.vo-product-card .vo-spec-row { margin-top: auto; }
.vo-query-card h3,
.vo-product-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}
.vo-product-card h3 {
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vo-query-card .vo-card-body h3 a:hover,
.vo-product-card .vo-card-body h3 a:hover {
  color: var(--vo-ember);
}

/* 网格间距更松 */
.vo-grid {
  gap: 1.8rem;
}

/* 头条：安静编辑 */
.vo-hero-editorial {
  padding: 3rem 0 2.4rem;
}
.vo-hero-editorial-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 920px;
  margin: 1.1rem 0 1.3rem;
}
.vo-hero-editorial .vo-score-line {
  margin: 0 0 1.4rem;
  border-top: 0;
  padding-top: 0;
}
.vo-hero-editorial-photo {
  margin: 0 0 1.3rem;
  border-radius: 14px;
  overflow: hidden;
}
.vo-hero-editorial-photo img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
}
.vo-hero-editorial-meta {
  font-family: var(--vo-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--vo-ash);
  margin: 0 0 1.4rem;
}
@media (max-width: 720px) {
  .vo-hero-editorial-photo img { aspect-ratio: 4/3; }
}

/* 卡片分类：去胶囊，改小号 mono 文字 */
.vo-card-cat {
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #66665f;
  display: block;
  text-decoration: none;
  margin-bottom: 0.4rem;
}

/* Newsletter：去深色块，改浅色编辑样式 */
.vo-newsletter {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 14px;
}
.vo-newsletter .vo-newsletter-inner {
  color: var(--vo-ink);
}
.vo-newsletter h2 {
  color: var(--vo-ink);
}
.vo-newsletter p {
  color: var(--vo-ash);
}

/* 产品库顶部搜索 + 联想下拉 */
.vo-db-searchwrap {
  position: relative;
  max-width: 660px;
  margin: 1.3rem 0 0.4rem;
}
.vo-db-search {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 2px solid var(--vo-ink);
  padding: 0.5rem 0.2rem;
}
.vo-db-search svg { color: var(--vo-ash); flex: none; }
.vo-db-search input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.05rem;
  padding: 0.3rem 0;
  min-width: 0;
}
.vo-db-search input:focus { outline: none; }
.vo-db-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(18, 19, 22, 0.12);
  max-height: 420px;
  overflow: auto;
  z-index: 60;
}
.vo-db-group { padding: 0.7rem 0.9rem; }
.vo-db-head {
  font-family: var(--vo-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vo-ash);
  display: block;
  margin-bottom: 0.4rem;
}
.vo-db-item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.45rem 0.4rem;
  border-radius: 8px;
  color: var(--vo-ink);
  text-decoration: none;
}
.vo-db-item:hover { background: var(--vo-surface-2); }
.vo-db-thumb {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
  flex: none;
}
.vo-db-thumb-empty {
  display: grid;
  place-items: center;
  background: var(--vo-surface-2);
  color: var(--vo-ash);
  font-family: var(--vo-font-mono);
  font-size: 11px;
  flex: none;
}
.vo-db-info { display: flex; flex-direction: column; min-width: 0; }
.vo-db-type {
  font-family: var(--vo-font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-db-title { font-size: 0.95rem; font-weight: 600; line-height: 1.3; color: var(--vo-ink); }
.vo-db-meta { font-size: 0.75rem; color: var(--vo-ash); }
.vo-db-empty { padding: 1rem; font-size: 0.9rem; color: var(--vo-ash); }
.vo-db-foot {
  display: block;
  padding: 0.7rem 0.9rem;
  border-top: 1px solid var(--vo-steel);
  font-family: var(--vo-font-mono);
  font-size: 11px;
  color: var(--vo-ember);
}

/* ==========================================================
   设备对比（2026-08）
   ========================================================== */
.vo-compare-btn {
  align-self: flex-start;
  margin-top: 0.6rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--vo-steel);
  border-radius: 999px;
  background: transparent;
  color: var(--vo-ash);
  font-family: var(--vo-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
}
.vo-compare-btn:hover { color: var(--vo-ember); border-color: var(--vo-ember); }
.vo-compare-btn.is-on { background: var(--vo-ink); border-color: var(--vo-ink); color: #fff; }

.vo-compare-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  transform: translateY(110%);
  transition: transform 0.25s ease;
  background: var(--vo-ink);
  color: #fff;
}
.vo-compare-bar.is-visible { transform: translateY(0); }
.vo-compare-bar-in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.8rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.vo-compare-bar-label {
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b93a1;
}
.vo-compare-items { display: flex; gap: 0.5rem; flex-wrap: wrap; flex: 1; min-width: 0; }
.vo-compare-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  font-size: 12px;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vo-compare-chip button { border: 0; background: transparent; color: #fff; cursor: pointer; padding: 0 2px; }
.vo-compare-go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--vo-ember);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-family: var(--vo-font-mono);
  font-size: 12px;
  text-decoration: none;
}
.vo-compare-clear {
  border: 0;
  background: transparent;
  color: #8b93a1;
  cursor: pointer;
  font-family: var(--vo-font-mono);
  font-size: 11px;
}

.vo-compare { padding: 2.6rem 0 1rem; }
.vo-compare-head { margin-bottom: 2rem; }
.vo-compare-title { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.03em; margin: 0.8rem 0 0.6rem; }
.vo-compare-desc { color: var(--vo-ash); max-width: 620px; margin: 0; }
.vo-compare-table {
  border: 1px solid var(--vo-steel);
  border-radius: 14px;
  overflow: hidden;
  background: var(--vo-surface);
}
.vo-compare-row {
  display: grid;
  grid-template-columns: 150px repeat(var(--cols, 3), minmax(0, 1fr));
}
.vo-compare-head-row { background: var(--vo-paper); }
.vo-compare-label {
  padding: 0.8rem 1rem;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
  border-right: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
  background: var(--vo-surface-2);
}
.vo-compare-cell {
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
  font-size: 0.92rem;
  min-width: 0;
}
.vo-compare-row > .vo-compare-cell:last-child { border-right: 0; }
.vo-compare-row:last-child .vo-compare-cell,
.vo-compare-row:last-child .vo-compare-label { border-bottom: 0; }
.vo-compare-prod { position: relative; text-align: center; }
.vo-compare-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--vo-surface);
  margin-bottom: 0.5rem;
  border-radius: 8px;
}
.vo-compare-img-empty {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  background: var(--vo-surface-2);
  color: var(--vo-ash);
  font-family: var(--vo-font-mono);
  font-size: 12px;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}
.vo-compare-brand {
  display: block;
  font-family: var(--vo-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin-bottom: 0.25rem;
}
.vo-compare-name { display: block; font-weight: 600; font-size: 0.95rem; line-height: 1.3; margin-bottom: 0.6rem; }
.vo-compare-name:hover { color: var(--vo-ember); }
.vo-compare-score { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.vo-compare-score .vo-score-num { font-size: 1.1rem; }
.vo-compare-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  color: var(--vo-ash);
  font-size: 15px;
  text-decoration: none;
}
.vo-compare-remove:hover { color: var(--vo-ember); border-color: var(--vo-ember); }
@media (max-width: 720px) {
  .vo-compare-row { grid-template-columns: 90px repeat(var(--cols, 3), minmax(0, 1fr)); }
  .vo-compare-label { font-size: 10px; padding: 0.6rem 0.5rem; }
  .vo-compare-cell { padding: 0.6rem 0.5rem; font-size: 0.78rem; }
  .vo-compare-name { font-size: 0.78rem; }
  .vo-compare-chip { max-width: 140px; }
}

/* ==========================================================
   对比 v2：更美观（2026-08）
   ========================================================== */

/* 卡片对比按钮：图片右上角小圆点，hover 显现，不占卡片位 */
.vo-product-card .vo-thumb { position: relative; }
.vo-compare-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 3;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--vo-steel);
  background: rgba(255, 255, 255, 0.94);
  color: var(--vo-ink);
  font-size: 15px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.18s, background 0.18s, color 0.18s;
}
.vo-product-card:hover .vo-compare-btn,
.vo-compare-btn:focus-visible { opacity: 1; }
.vo-compare-btn.is-on {
  opacity: 1;
  background: var(--vo-ink);
  border-color: var(--vo-ink);
  color: #fff;
}
@media (hover: none) {
  .vo-compare-btn { opacity: 1; }
}

/* 对比页：更精致的表格 */
.vo-compare {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0 1rem;
}
.vo-compare--n2 { max-width: 720px; }
.vo-compare--n3 { max-width: 860px; }
.vo-compare--n4 { max-width: 1000px; }
.vo-compare-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.vo-compare-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  margin: 0.8rem 0 0.5rem;
}
.vo-compare-desc { color: var(--vo-ash); max-width: 560px; margin: 0; line-height: 1.7; }
.vo-compare-count {
  font-family: var(--vo-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--vo-ash);
  white-space: nowrap;
}
.vo-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--vo-steel);
  border-radius: 16px;
  background: var(--vo-surface);
}
.vo-compare-table {
  min-width: 620px;
  border: 0;
  border-radius: 0;
}
.vo-compare-row {
  grid-template-columns: 150px repeat(var(--cols, 3), minmax(0, 1fr));
}
.vo-compare-row:nth-child(even) { background: #fbfbfa; }
.vo-compare-label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--vo-surface-2);
  padding: 0.8rem 0.9rem;
  font-size: 11px;
}
.vo-compare-prod {
  padding: 1.2rem 0.9rem 1.1rem;
  vertical-align: top;
}
.vo-compare-img {
  background: var(--vo-surface-2);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 0.8rem;
  width: 132px;
  height: 132px;
  max-width: none;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.vo-compare-name { font-size: 0.95rem; margin-bottom: 0.7rem; }
.vo-compare-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-height: 2.4rem;
  justify-content: center;
}
.vo-compare-score-empty { min-height: 2.4rem; }
.vo-compare-cell.is-best { background: rgba(255, 77, 0, 0.055); }
.vo-compare-cell.is-best::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vo-ember);
}
.vo-compare-cell {
  position: relative;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
}
.vo-compare-best-mark {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--vo-ember);
  font-family: var(--vo-font-mono);
  font-size: 10px;
}
.vo-compare-note {
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--vo-ash);
  margin-top: 1.1rem;
  text-align: center;
}
@media (max-width: 720px) {
  .vo-compare-row { grid-template-columns: 88px repeat(var(--cols, 3), minmax(0, 1fr)); }
  .vo-compare-label { font-size: 10px; padding: 0.6rem 0.5rem; }
  .vo-compare-cell { padding: 0.6rem 0.5rem; font-size: 0.78rem; }
  .vo-compare-name { font-size: 0.78rem; }
  .vo-compare-img { max-width: 110px; }
}

/* ==========================================================
   对比 v3：居中框架 + 添加设备
   ========================================================== */
.vo-compare {
  max-width: 1290px;
  margin: 0 auto;
  padding: 3rem 28px 1rem;
  text-align: center;
}
.vo-compare--n2,
.vo-compare--n3,
.vo-compare--n4 {
  max-width: 1290px;
}
.vo-compare-head--center {
  display: block;
  text-align: center;
}
.vo-compare-head--center .vo-compare-desc {
  margin-left: auto;
  margin-right: auto;
}
.vo-compare-scroll,
.vo-compare-table {
  text-align: left;
}
.vo-compare-table {
  margin: 0 auto;
}

/* 添加设备 */
.vo-compare-addwrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto 2.2rem;
  text-align: left;
}
.vo-compare-add {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 2px solid var(--vo-ink);
  padding: 0.45rem 0.15rem;
}
.vo-compare-add svg { color: var(--vo-ash); flex: none; }
.vo-compare-add input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  min-width: 0;
}
.vo-compare-add input:focus { outline: none; }
.vo-compare-add-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(18, 19, 22, 0.12);
  max-height: 320px;
  overflow: auto;
  z-index: 60;
}
.vo-compare-add-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.7rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: var(--vo-ink);
}
.vo-compare-add-item:hover { background: var(--vo-surface-2); }
.vo-compare-add-item img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
  flex: none;
}
.vo-compare-add-thumb {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--vo-surface-2);
  flex: none;
}
.vo-compare-add-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.vo-compare-add-info b { font-size: 0.95rem; font-weight: 600; line-height: 1.25; color: var(--vo-ink); }
.vo-compare-add-info span { font-size: 0.75rem; color: var(--vo-ash); }
.vo-compare-add-empty { padding: 1rem; font-size: 0.9rem; color: var(--vo-ash); }

/* ==========================================================
   首页头条：不对称双栏（2026-08）
   ========================================================== */
.vo-top-split {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: stretch;
  padding: 1.2rem 0 2.6rem;
}
.vo-top-split > .wp-block-group__inner-container {
  display: contents;
}

/* 左：影院式头条（图片作全幅背景，内容叠加底部） */
.vo-top-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  height: 535px;
  min-height: 0;
  padding: clamp(1.35rem, 2.7vw, 2rem);
  border-radius: 20px;
  overflow: hidden;
  background: var(--vo-deep);
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(10, 13, 18, 0.28);
}
.vo-top-split .vo-top-featured.is-layout-flow { margin: 0; }
/* 照片：铺满整卡，取景居中，文字区叠压在下半部分 */
.vo-top-featured .vo-hero-editorial-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  overflow: hidden;
}
.vo-top-featured .vo-hero-editorial-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.95) brightness(0.95);
  transform: scale(1.08);
  animation: vo-kenburns 16s ease-in-out infinite alternate;
}
.vo-top-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 36%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(180deg, rgba(10, 13, 18, 0) 0%, rgba(10, 13, 18, 0.2) 38%, rgba(10, 13, 18, 0.58) 58%, rgba(10, 13, 18, 0.9) 76%, var(--vo-deep) 96%);
}
.vo-top-featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vo-ember) 0%, rgba(255, 77, 0, 0.25) 55%, transparent 100%);
}
.vo-top-featured .vo-kicker {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.55rem;
}
.vo-top-featured .vo-kicker::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vo-ember);
  margin-right: 0.55rem;
  vertical-align: middle;
  animation: vo-pulse 2.4s ease-out infinite;
}
.vo-top-featured .vo-hero-editorial-title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 0.6rem;
  max-width: 100%;
}
.vo-top-featured .vo-score-line { margin-bottom: 0.65rem; }
.vo-top-featured .vo-score-line .vo-score-num { color: #fff; font-size: 1.1rem; }
.vo-top-featured .vo-score-line .vo-score-num small { color: rgba(255, 255, 255, 0.65); }
.vo-top-featured .vo-score-line .vo-score-track { background: rgba(255, 255, 255, 0.25); }
.vo-top-featured .vo-score-line .vo-score-fill { background: var(--vo-ember); }
.vo-top-featured .vo-score-line .vo-score-tag {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}
.vo-top-featured .vo-hero-editorial-meta {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--vo-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.vo-top-featured .wp-block-buttons { margin-top: 0; }
.vo-top-featured .wp-block-button__link {
  background: var(--vo-ember);
  color: #fff;
  border: 0;
  box-shadow: 0 10px 26px rgba(255, 77, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.vo-top-featured .wp-block-button__link:hover {
  background: #ff6a2b;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 77, 0, 0.45);
}

/* 入场：交错上浮 */
.vo-top-featured > *:not(.vo-hero-editorial-photo) {
  animation: vo-fade-up 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.vo-top-featured .vo-hero-editorial-title { animation-delay: 0.12s; }
.vo-top-featured .vo-score-line { animation-delay: 0.22s; }
.vo-top-featured .vo-hero-editorial-meta { animation-delay: 0.32s; }
.vo-top-featured .wp-block-buttons { animation-delay: 0.42s; }

@keyframes vo-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vo-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1.18); }
}
@keyframes vo-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 77, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}

/* 右：副卡列表特效 */
.vo-top-side {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vo-top-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 1.05rem 0.4rem 1.05rem 0.2rem;
  border-bottom: 1px solid var(--vo-steel);
  text-decoration: none;
  color: var(--vo-ink);
  transition: transform 0.25s ease;
  animation: vo-fade-up 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.vo-top-card:nth-child(1) { animation-delay: 0.18s; }
.vo-top-card:nth-child(2) { animation-delay: 0.28s; }
.vo-top-card:nth-child(3) { animation-delay: 0.38s; }
.vo-top-card:nth-child(4) { animation-delay: 0.48s; }
.vo-top-card:nth-child(5) { animation-delay: 0.58s; }
.vo-top-card:nth-child(n+5) { display: none; }
.vo-top-card:last-child { border-bottom: 0; }
.vo-top-card:hover { transform: translateX(4px); }
.vo-top-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--vo-ember);
  transition: width 0.3s ease;
}
.vo-top-card:hover::after { width: 100%; }
.vo-top-card-img { border-radius: 14px; overflow: hidden; }
.vo-top-card-img img {
  width: 118px;
  height: 88px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.vo-top-card:hover .vo-top-card-img img { transform: scale(1.09); }
.vo-top-card-body { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.vo-top-card .vo-card-cat { margin-bottom: 0; transition: color 0.2s; }
.vo-top-card:hover .vo-card-cat { color: var(--vo-ember); }
.vo-top-card-title {
  font-family: var(--vo-font-d);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--vo-ink);
  transition: color 0.18s;
}
.vo-top-card:hover .vo-top-card-title { color: var(--vo-ember); }
.vo-top-card-meta {
  font-family: var(--vo-font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--vo-ash);
}

@media (prefers-reduced-motion: reduce) {
  .vo-top-featured .vo-hero-editorial-photo img,
  .vo-top-card-img img { animation: none; transform: none; }
  .vo-top-featured > *:not(.vo-hero-editorial-photo),
  .vo-top-card { animation: none; }
  .vo-top-featured .vo-kicker::before { animation: none; }
}
.vo-top-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid var(--vo-steel);
  border-radius: 12px;
  background: var(--vo-surface);
}
.vo-top-note .vo-card-cat { margin-bottom: 0.3rem; }
.vo-top-note p {
  margin: 0.3rem 0 0.6rem;
  font-size: 0.88rem;
  color: var(--vo-ash);
  line-height: 1.5;
}
.vo-top-note-btn {
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--vo-ember);
  text-decoration: none;
}
.vo-top-note-btn:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .vo-top-split { grid-template-columns: 1fr; gap: 1.6rem; }
  .vo-top-featured { height: auto; min-height: 480px; }
  .vo-top-featured .vo-hero-editorial-photo { min-height: 0; }
  .vo-top-card { grid-template-columns: 88px 1fr; }
  .vo-top-card-img img { width: 88px; height: 66px; }
}

/* 首页：压缩页眉到内容的留白 */
body.home .entry-hero { display: none; }
body.home .content-container {
  padding-top: 0;
}
body.home #primary {
  margin-top: 0;
}
body.home .entry-content-wrap {
  padding-top: 0;
}
/* Deals 页：内容里已有自己的大标题，隐藏 Kadence 页面标题避免重复 */
.page-id-9946 .entry-hero { display: none; }

/* ==========================================================
   榜单详情（Best Category）2026-08
   ========================================================== */
.vo-rank {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.6rem 0 1rem;
}
.vo-rank-hero { margin-bottom: 1.8rem; }
.vo-rank-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  margin: 0.8rem 0 0.6rem;
}
.vo-rank-desc {
  color: var(--vo-ash);
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
}
.vo-rank-meta {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--vo-ash);
  margin-top: 1.1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-rank-intro {
  color: var(--vo-ash);
  max-width: 720px;
  line-height: 1.8;
  margin: 1.4rem 0 0;
}
.vo-rank-1 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.8rem;
  align-items: center;
  margin: 2.4rem 0 2rem;
}
.vo-rank-no {
  font-family: var(--vo-font-d);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--vo-line);
}
.vo-rank-no em { font-style: normal; color: var(--vo-ember); }
.vo-rank-1 h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0.8rem 0 0.6rem;
}
.vo-rank-1 .vo-score-line { margin: 0.6rem 0 0.8rem; }
.vo-rank-1 .wp-block-button__link { margin-top: 1rem; }
.vo-rank-blurb { color: var(--vo-ash); line-height: 1.7; margin: 0; }
.vo-rank-1-img { border-radius: 14px; overflow: hidden; display: block; }
.vo-rank-1-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--vo-surface);
}
.vo-rank-list { border-top: 1px solid var(--vo-steel); }
.vo-rank-row {
  display: grid;
  grid-template-columns: 64px 112px 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-rank-num {
  font-family: var(--vo-font-mono);
  color: var(--vo-ash);
  font-size: 1rem;
}
.vo-rank-thumb { border-radius: 10px; overflow: hidden; display: block; background: var(--vo-surface); }
.vo-rank-thumb img {
  width: 112px;
  height: 84px;
  object-fit: contain;
  display: block;
}
.vo-rank-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--vo-ink);
}
.vo-rank-name:hover { color: var(--vo-ember); }
.vo-rank-row .vo-rank-blurb { margin: 0.3rem 0 0; font-size: 0.88rem; }
.vo-rank-score {
  font-family: var(--vo-font-mono);
  font-size: 1rem;
  color: var(--vo-ink);
}
.vo-rank-score small { color: var(--vo-ash); font-size: 0.7em; }
.vo-rank-honor {
  margin: 2.4rem 0;
  border-top: 1px solid var(--vo-steel);
  padding-top: 1.6rem;
}
.vo-rank-honor h2 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.vo-rank-honor > div { color: var(--vo-ash); line-height: 1.8; }
.vo-rank-tail { margin-top: 2.6rem; border-top: 1px solid var(--vo-steel); padding-top: 1.6rem; }
.vo-rank-tail h2 { font-size: 1.4rem; margin: 1.8rem 0 0.7rem; }
@media (max-width: 860px) {
  .vo-rank-1 { grid-template-columns: 1fr; gap: 1.4rem; }
  .vo-rank-row { grid-template-columns: 44px 88px 1fr; gap: 0.9rem; }
  .vo-rank-row .vo-rank-score { display: none; }
  .vo-rank-thumb img { width: 88px; height: 66px; }
}

/* ==========================================================
   新闻：观测日志流 + 日志头（2026-08）
   ========================================================== */
.vo-logstream { margin-top: 0.4rem; }
.vo-logrow {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-logrow:last-child { border-bottom: 0; }
.vo-logrow-stamp {
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--vo-ash);
  line-height: 1.7;
}
.vo-logrow-cat {
  display: block;
  margin-top: 0.4rem;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vo-ink);
}
.vo-logrow-title { font-size: 1.15rem; line-height: 1.3; margin: 0; }
.vo-logrow-title a:hover { color: var(--vo-ember); }
.vo-logrow-excerpt {
  color: var(--vo-ash);
  font-size: 0.92rem;
  margin: 0.5rem 0 0;
  max-width: 720px;
}
.vo-logrow-meta {
  display: flex;
  gap: 1rem;
  font-family: var(--vo-font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--vo-ash);
  margin-top: 0.6rem;
}
.vo-logstamp {
  display: inline-flex;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--vo-ash);
  margin-bottom: 0.9rem;
}
@media (max-width: 720px) {
  .vo-logrow { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ==========================================================
   品牌详情模块（2026-08）
   ========================================================== */
.vo-brand-modules { margin: 1.8rem 0 0; }
.vo-brand-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--vo-steel);
  border-radius: 14px;
  background: var(--vo-surface);
}
.vo-brand-name { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0; }
.vo-brand-count {
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--vo-ash);
  margin: 0.3rem 0 0;
}
.vo-brand-site {
  font-family: var(--vo-font-mono);
  font-size: 12px;
  color: var(--vo-ember);
  text-decoration: none;
  white-space: nowrap;
}
.vo-brand-site:hover { text-decoration: underline; }
.vo-brand-section { margin-top: 2.4rem; }
.vo-brand-section .vo-kicker { margin-bottom: 0.9rem; }
.vo-brand-news .vo-logstream { margin-top: 0.2rem; }
@media (max-width: 720px) {
  .vo-brand-hero { padding: 1.1rem 1.2rem; }
}

/* ==========================================================
   产品英雄区 v2：图与介绍贴一起（2026-08）
   ========================================================== */
.vo-prod-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 2.8rem;
  align-items: stretch;
  margin: 1.4rem 0 0;
}
.vo-prod-hero-media { min-width: 0; display: flex; flex-direction: column; }
.vo-prod-hero-media .vo-prod-photo {
  aspect-ratio: auto;
  flex: 1 1 auto;
  min-height: 300px;
}
.vo-prod-hero-media .vo-prod-gallery { margin-top: 0.65rem; }
.vo-prod-hero-info { min-width: 0; }
.vo-prod-hero-info .vo-prod-chips { margin-bottom: 0.9rem; }
.vo-prod-hero-info .vo-prod-title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}
.vo-prod-hero-info .vo-prod-verdict { margin: 0 0 1.2rem; }
.vo-prod-glance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.4rem;
  margin: 0.9rem 0 1.3rem;
}
.vo-prod-glance-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-prod-glance-item strong {
  font-family: var(--vo-font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
}
.vo-prod-glance-item span {
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-prod-hero-info .vo-prod-intro {
  color: var(--vo-ash);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0.4rem 0 1.2rem;
  max-width: 100%;
}
.vo-prod-hero-chips-title {
  font-family: var(--vo-font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin: 1.15rem 0 0.55rem;
}
.vo-prod-hero-chips { margin: 0 0 1.1rem; }
.vo-check-list-hero {
  grid-template-columns: 1fr;
  margin: 0 0 1.2rem;
}
.vo-check-list-hero li { font-size: 0.93rem; }
.vo-prod-buy { margin-top: 0.4rem; }

/* ==========================================================
   产品资料页 v3：档案式（指标条 + 照片板 + 通栏导语）
   ========================================================== */
.vo-record-head { margin: 1.7rem 0 0; }
.vo-record-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.vo-record-head .vo-prod-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  max-width: 900px;
}
.vo-record-facts {
  display: flex;
  align-items: center;
  gap: 0.4rem 1.5rem;
  flex-wrap: wrap;
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin: 0 0 0.9rem;
}
.vo-record-facts a {
  color: var(--vo-ember);
  text-decoration: none;
}
.vo-record-facts a:hover { text-decoration: underline; }
.vo-record-head .vo-prod-verdict { margin: 0.4rem 0 0; }

/* 关键指标条：横向 stat，hairline 分隔，无卡片框 */
.vo-record-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 0;
  margin: 1.7rem 0 2.6rem;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
}
.vo-record-stat { padding: 1.05rem 1.2rem 1.1rem 0; }
.vo-record-stat + .vo-record-stat {
  padding-left: 1.5rem;
}
.vo-record-stat span {
  display: block;
  font-family: var(--vo-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin-bottom: 0.4rem;
}
.vo-record-stat b {
  font-size: 1.1rem;
  font-weight: 650;
  word-break: break-word;
}

/* 档案主体：照片板 + 侧栏 */
.vo-record-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: stretch;
}
.vo-record-body .vo-prod-photo {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-color: #eceae5;
}
.vo-record-side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding-bottom: 0.2rem;
}
.vo-record-side .vo-prod-gallery { grid-template-columns: repeat(4, 1fr); }
.vo-record-side .vo-check-list-hero { margin-bottom: 0; }

/* 通栏导语 */
.vo-prod-lead {
  color: var(--vo-ash);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 820px;
  margin: 2.6rem 0 0;
}

@media (max-width: 900px) {
  .vo-spec-groups { grid-template-columns: 1fr; }
  .vo-hub-module > h2 { font-size: 1.05rem; }
  .vo-record-index { gap: 0.8rem; }
  .vo-record-index-links { gap: 0.4rem 1.1rem; }
  .vo-record-index-links a { font-size: 0.84rem; }
  .vo-db-stats {
    grid-template-columns: repeat(2, 1fr);
    margin: 1.4rem 0 1.8rem;
  }
  .vo-db-stat {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--vo-steel);
  }
  .vo-db-stat + .vo-db-stat { padding-left: 0; }
  .vo-db-stat:nth-child(odd) { padding-right: 1rem; }
  .vo-db-stat:nth-child(2n) { padding-left: 1rem; }
  .vo-db-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .vo-db-stat b { font-size: 1.35rem; }
  .vo-record-strip {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 0;
  }
  .vo-record-stat { padding: 0.9rem 0; }
  .vo-record-stat + .vo-record-stat { border-left: 0; padding-left: 0; }
  .vo-record-stat:nth-child(odd) { border-right: 1px solid var(--vo-steel); padding-right: 1rem; }
  .vo-record-stat:nth-child(2n) { padding-left: 1rem; }
  .vo-record-body { grid-template-columns: 1fr; gap: 1.8rem; }
  .vo-prod-lead { margin-top: 1.8rem; }
}
@media (max-width: 900px) {
  .vo-prod-hero { grid-template-columns: 1fr; gap: 1.6rem; }
  .vo-prod-hero-media .vo-prod-photo {
    aspect-ratio: 1 / 1;
    flex: none;
    min-height: 0;
  }
}

/* 产品资料页：数据记录感 */
.vo-prod-specimen {
  display: block;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
  margin-bottom: 0.85rem;
}
.vo-data-sheet { margin: 0.9rem 0 1.2rem; }
.vo-data-sheet-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-data-sheet-row:last-child { border-bottom: 0; }
.vo-data-sheet-row span {
  font-family: var(--vo-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-ash);
  flex: none;
}
.vo-data-sheet-row b {
  font-size: 0.98rem;
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}
.vo-prod-action {
  font-family: var(--vo-font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--vo-ember);
  text-decoration: none;
}
.vo-prod-action:hover { text-decoration: underline; }

/* ==========================================================
   Deals v2：安静编辑的优惠卡（2026-08）
   ========================================================== */
.vo-card.vo-deal {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--vo-surface);
  border: 1px solid #e6e3dc;
  border-radius: 14px;
  padding: 1.15rem 1.25rem 1.2rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(15, 26, 43, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.vo-card.vo-deal:hover {
  transform: translateY(-2px);
  border-color: #d9d5cc;
  box-shadow: 0 12px 26px rgba(15, 26, 43, 0.1);
}
.vo-card.vo-deal .vo-off {
  position: static;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--vo-ember);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.22rem 0.6rem;
  margin: 0 0 0.75rem;
}
.vo-card.vo-deal.vo-expired { filter: grayscale(1); opacity: 0.72; }
.vo-card.vo-deal.vo-expired .vo-off { color: var(--vo-ash); }
.vo-card.vo-deal h3 {
  padding-right: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}
.vo-card.vo-deal .vo-meta {
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  color: var(--vo-ash);
  margin: 0.55rem 0 0;
}
.vo-card.vo-deal .wp-block-buttons { margin-top: auto; padding-top: 1rem; }
.vo-card.vo-deal .wp-block-button__link {
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vo-card.vo-deal .wp-block-button__link {
  background: transparent;
  border: 1px solid var(--vo-steel);
  color: var(--vo-ink);
  padding: 0.5rem 0.95rem;
}
.vo-card.vo-deal .wp-block-button__link:hover {
  border-color: var(--vo-ember);
  color: var(--vo-ember);
  background: transparent;
}

/* Deals 页：说明与投稿区 */
.vo-page h2 { margin-top: 2.4rem; }
.vo-page h3 { margin-top: 1.5rem; font-size: 1.08rem; }
.vo-page p,
.vo-page ul {
  color: var(--vo-ash);
  line-height: 1.8;
  max-width: 720px;
}
.vo-page ul { padding-left: 1.2rem; }
.vo-page a { color: var(--vo-ember); }

/* ==========================================================
   About / Contact（2026-08）
   ========================================================== */
.vo-about,
.vo-contact {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.6rem 0 1rem;
}
.vo-about-hero,
.vo-contact-hero { margin-bottom: 2.2rem; }
.vo-about-title,
.vo-contact-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  margin: 0.8rem 0 0.7rem;
  max-width: 840px;
}
.vo-about-lead,
.vo-contact-lead {
  color: var(--vo-ash);
  max-width: 660px;
  line-height: 1.7;
  margin: 0;
}
.vo-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--vo-ink);
  border-bottom: 1px solid var(--vo-ink);
  padding: 1.6rem 0;
  margin: 1.8rem 0;
}
.vo-about-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.vo-about-stat b { font-family: var(--vo-font-mono); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.vo-about-stat span {
  font-family: var(--vo-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-about-section { margin-top: 2.8rem; }
.vo-about-section > h2,
.vo-contact-section h2 { font-size: 1.4rem; margin-bottom: 1.2rem; }
.vo-about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.vo-about-grid h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }
.vo-about-grid p { color: var(--vo-ash); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.vo-about-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.vo-step-no { font-family: var(--vo-font-mono); color: var(--vo-ember); font-size: 12px; }
.vo-about-steps h3 { font-size: 1.05rem; margin: 0.4rem 0; }
.vo-about-steps p { color: var(--vo-ash); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.vo-about-para { color: var(--vo-ash); max-width: 720px; line-height: 1.8; }
.vo-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-top: 1.4rem; }
.vo-team-card { padding: 1.4rem 1.3rem; border: 1px solid var(--vo-steel); border-radius: 14px; background: var(--vo-surface); }
.vo-team-avatar {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--vo-ink);
  color: #fff;
  font-family: var(--vo-font-mono);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.vo-team-card h3 { font-size: 1rem; margin: 0 0 0.4rem; }
.vo-team-card p { color: var(--vo-ash); font-size: 0.85rem; line-height: 1.55; margin: 0; }
.vo-contact-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.8rem 0;
}
.vo-contact-lane {
  display: block;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid var(--vo-steel);
  border-radius: 14px;
  background: var(--vo-surface);
  text-decoration: none;
  color: var(--vo-ink);
  transition: border-color 0.18s;
}
.vo-contact-lane:hover { border-color: var(--vo-ember); }
.vo-contact-lane h3 { font-size: 1.1rem; margin: 0 0 0.4rem; }
.vo-contact-lane p { color: var(--vo-ash); font-size: 0.88rem; line-height: 1.55; margin: 0 0 0.8rem; }
.vo-contact-mail { font-family: var(--vo-font-mono); font-size: 11px; color: var(--vo-ember); }
.vo-contact-social { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.vo-contact-social a {
  padding: 0.5rem 1rem;
  border: 1px solid var(--vo-steel);
  border-radius: 999px;
  color: var(--vo-ash);
  font-size: 0.9rem;
  text-decoration: none;
}
.vo-contact-social a:hover { border-color: var(--vo-ember); color: var(--vo-ember); }
@media (max-width: 900px) {
  .vo-about-stats, .vo-about-grid, .vo-about-steps, .vo-team-grid { grid-template-columns: 1fr 1fr; }
  .vo-contact-lanes { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .vo-about-stats, .vo-about-grid, .vo-about-steps, .vo-team-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   合规页（Privacy / Affiliate / Disclaimer）2026-08
   ========================================================== */
.vo-legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.6rem 0 1rem;
}
.vo-legal-hero { margin-bottom: 2.4rem; }
.vo-legal-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0.8rem 0 0.6rem;
}
.vo-legal-lead {
  color: var(--vo-ash);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}
.vo-legal-meta {
  color: var(--vo-ash);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  margin: 0.9rem 0 0;
  text-transform: uppercase;
}
.vo-legal-section {
  padding: 1.3rem 0;
  border-top: 1px solid var(--vo-steel);
}
.vo-legal-section h2 {
  font-size: 1.12rem;
  margin: 0 0 0.6rem;
}
.vo-legal-section p {
  color: var(--vo-ash);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0;
}
.vo-legal-section p + p { margin-top: 0.7rem; }
.vo-legal-section a { color: var(--vo-ember); }

/* ==========================================================
   新增：搜索页 / Deals / 榜单页组件（2026-08-10）
   ========================================================== */

/* 搜索结果页：搜索表单 */
.vo-search-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
  max-width: 620px;
}
.vo-search-form input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--vo-steel);
  border-radius: 8px;
  background: var(--vo-surface);
  color: var(--vo-ink);
  font: inherit;
}
.vo-search-form input[type="search"]:focus {
  outline: 2px solid var(--vo-ember-soft);
  outline-offset: 1px;
  border-color: var(--vo-ember);
}
.vo-search-form button {
  padding: 0.72rem 1.25rem;
  border: 0;
  border-radius: 8px;
  background: var(--vo-ink);
  color: var(--vo-surface);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease;
}
.vo-search-form button:hover { background: var(--vo-ember); }

/* 搜索结果分组 */
.vo-search-section { margin-top: 2.2rem; }
.vo-search-section .vo-kicker { display: inline-block; margin-bottom: 0.85rem; }

/* Deals 空状态 */
.vo-deal-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 2.6rem 1.5rem;
  border: 1px dashed var(--vo-steel);
  border-radius: 14px;
  background: var(--vo-surface);
  margin: 1.4rem 0 0.6rem;
}
.vo-deal-empty h3 { margin: 0.55rem 0 0; font-size: 1.15rem; }
.vo-deal-empty p { margin: 0; color: var(--vo-ash); max-width: 540px; line-height: 1.65; }

/* 优惠/榜单产品网格 */
.vo-deal-grid { margin-top: 1.2rem; }

/* Deals 页面头部 */
.vo-page-hero { padding: 1.6rem 0 0.4rem; }
.vo-page-title { margin: 0; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
.vo-page-lead { color: var(--vo-ash); font-size: 1.05rem; line-height: 1.7; max-width: 780px; margin: 0.6rem 0 0; }
.vo-page h2 { margin-top: 2.2rem; }
.vo-page h3 { margin-top: 1.4rem; }

/* 卡片等高：正文占满剩余高度，摘要/价格贴底 */
.vo-card { display: flex; flex-direction: column; }
.vo-card .vo-card-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.vo-card .vo-card-body .vo-excerpt { padding-top: 0.45rem; }
.vo-product-card .vo-card-body .vo-price { margin-top: auto; padding-top: 0.4rem; }

/* ==========================================================
   NEXT 修正层（必须位于文件末尾，覆盖文件中部旧规则）
   ========================================================== */
.vo-top-card-title { color: #fff; font-size: 0.96rem; }
.vo-top-card:hover .vo-top-card-title { color: #fff; }
.vo-top-card-meta { color: rgba(255, 255, 255, 0.45); }
.vo-top-featured .vo-hero-editorial-title {
  font-size: clamp(1.65rem, 3.4vw, 2.8rem);
  max-width: 620px;
}
.vo-top-featured .vo-kicker { color: #ffb28a; }

/* 卡片摘要里的链接：去掉 Kadence 默认蓝，统一深墨 */
.vo-card .vo-excerpt a,
.vo-query-card .vo-excerpt a,
.vo-card-body .wpil_keyword_link {
  color: var(--vo-ink);
  text-decoration: underline;
  text-decoration-color: var(--vo-line-2);
  text-underline-offset: 2px;
}
.vo-card .vo-excerpt a:hover,
.vo-query-card .vo-excerpt a:hover { color: var(--vo-ember); }

/* 首页 Deals 卡片按钮：统一炽橙实心 */
.vo-deal .wp-block-button__link {
  background: var(--vo-ember);
  border-color: var(--vo-ember);
  color: #fff;
}
.vo-deal .wp-block-button__link:hover { background: #e04300; border-color: #e04300; }

/* Compare 按钮：默认隐藏，悬停/键盘聚焦显示；触屏设备常显（沿用 4931 规则） */

/* Hero：头条 + 副卡合并为整块深色 Lab 面板（对齐原型） */
.vo-top-split {
  gap: 0;
  padding: 0;
  margin: 1.2rem 0 2.6rem;
  background: var(--vo-deep);
  border-radius: 18px;
  overflow: hidden;
}
.vo-top-featured {
  border-radius: 0;
  box-shadow: none;
  background: var(--vo-deep);
}
.vo-top-side {
  border-radius: 0;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 1.25rem;
}
@media (max-width: 1024px) {
  .vo-top-side { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
}

/* 产品卡图片：<a> 撑满、图片用 max 尺寸真居中，收窄四周留白 */
.vo-products-grid .vo-product-card .vo-thumb,
.vo-grid-4 .vo-product-card .vo-thumb,
.vo-product-card .vo-thumb { padding: 6px; }
.vo-product-card .vo-thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.vo-product-card .vo-thumb img {
  width: auto;
  height: auto;
  max-width: 96%;
  max-height: 96%;
  object-fit: contain;
}

/* ==========================================================
   第二波：测评 / 新闻 / 指南归档页 + 文章页（2026-08-12）
   ========================================================== */

/* 新闻列表：元数据移到标题下方，去掉列表上方的信息噪音 */
.vo-newsrow-body { display: flex; flex-direction: column; }
.vo-newsrow-title { order: 1; }
.vo-newsrow-excerpt { order: 2; }
.vo-newsrow-body > .vo-meta-line {
  order: 3;
  margin: 0.45rem 0 0;
}
.vo-newsrow .vo-meta-kicker { color: var(--vo-ember); font-weight: 700; }

/* 侧栏 HOT 评分：统一暖色系，去掉冷青色 */
.vo-side-hot-score-top { color: var(--vo-ember); }
.vo-side-hot-score-good { color: var(--vo-ember); }
.vo-side-hot-score-mid { color: var(--vo-ink-2); }
.vo-side-hot-score-low { color: var(--vo-ink-3); }
.vo-side-hot-num { color: var(--vo-ink-3); }

/* 归档标题区：三个频道统一暖纸底色，去掉冷色背景 */
.vo-archive-hero--reviews,
.vo-archive-hero--vape-news,
.vo-archive-hero--info-and-guides { background: #f3efe7; }
.vo-archive-title {
  font-family: var(--vo-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.vo-archive-desc { color: var(--vo-ink-2); }
.vo-archive-rail b { color: var(--vo-ember); }
.vo-archive-hero-panel { border-radius: 12px; }
.vo-archive-hero-panel-img img { border-radius: 12px; }
.vo-archive-hero-panel-cap { color: var(--vo-ink-2); }

/* 归档页侧栏：粘性跟随，消除底部左右高度差带来的空白感 */
.vo-side {
  position: sticky;
  top: 96px;
  align-self: start;
}

/* 首页产品库面板（[vo_database_panel] 深色 Lab 面板） */
.vo-db-panel {
  background: var(--vo-deep);
  border-radius: 18px;
  padding: 2.2rem 2.4rem 2.4rem;
  margin: 3rem 0;
  color: #fff;
  box-shadow: 0 16px 40px rgba(22, 20, 15, 0.16);
}
.vo-db-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.vo-db-head h2 {
  font-family: var(--vo-font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.vo-db-open {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.16s;
}
.vo-db-open:hover { color: var(--vo-ember); }
.vo-panel-search {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.1rem;
}
.vo-panel-search svg { color: rgba(255, 255, 255, 0.45); flex: none; }
.vo-panel-search input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 15px;
  font-family: var(--vo-font-body);
}
.vo-panel-search input::placeholder { color: rgba(255, 255, 255, 0.4); }
.vo-panel-search button {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--vo-ember);
  color: #fff;
  font-size: 15px;
  transition: background 0.16s;
}
.vo-panel-search button:hover { background: #e04300; }
.vo-db-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.7rem;
}
.vo-db-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  transition: all 0.16s ease;
}
.vo-db-chip:hover { border-color: rgba(255, 255, 255, 0.6); }
.vo-db-chip.is-on { background: #fff; border-color: #fff; color: var(--vo-ink); }
.vo-db-chip span { opacity: 0.55; font-size: 10px; }
.vo-db-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vo-db-grid .vo-product-card { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
@media (max-width: 1024px) {
  .vo-db-panel { padding: 1.8rem 1.4rem; }
  .vo-db-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vo-db-panel { border-radius: 14px; margin: 2.2rem 0; }
  .vo-db-head h2 { font-size: 1.4rem; }
  .vo-db-open { margin-left: 0; }
}

/* 恢复产品卡白底（旧规则把 .vo-product-card 强制透明无边框，覆盖它） */
.vo-grid .vo-card.vo-product-card,
.vo-db-grid .vo-card.vo-product-card,
.vo-products-grid .vo-card.vo-product-card,
.vo-related .vo-card.vo-product-card,
.vo-prod-related .vo-card.vo-product-card {
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 10px;
  box-shadow: var(--vo-shadow-1);
  padding: 0;
  overflow: hidden;
}
.vo-grid .vo-card.vo-product-card:hover,
.vo-db-grid .vo-card.vo-product-card:hover,
.vo-products-grid .vo-card.vo-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vo-shadow-2);
}

/* ==========================================================
   产品卡 v2：中性索引感（去促销标签、去相框感、加行动点）
   ========================================================== */
.vo-product-card .vo-thumb {
  background: #f6f5f1;
  border: 1px solid var(--vo-steel);
  border-radius: 10px 10px 0 0;
  padding: 10px;
}
.vo-product-card .vo-thumb img { max-width: 90%; max-height: 90%; }
.vo-product-card .vo-card-body { padding: 15px 17px 16px; }
.vo-product-card .vo-card-cat {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--vo-ink-2);
}
.vo-product-card h3 {
  font-size: 1rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
  min-height: 2.64em;
  margin: 0 0 6px;
}
.vo-product-card .vo-date {
  background: transparent;
  color: var(--vo-ink-3);
  border: 1px solid var(--vo-line-2);
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  align-self: flex-start;
}
.vo-product-card .vo-spec-row {
  font-size: 0.7rem;
  color: var(--vo-ink-2);
  line-height: 1.55;
  min-height: 1.55em;
  margin: 0 0 4px;
}
.vo-card-more {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--vo-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.16s ease;
}
.vo-card-more span { color: var(--vo-ember); transition: transform 0.16s ease; }
.vo-product-card:hover .vo-card-more { color: var(--vo-ember-ink); }
.vo-product-card:hover .vo-card-more span { transform: translateX(3px); }

/* ==========================================================
   页眉页脚统一 + 页面间距（2026-08-12）
   ========================================================== */

/* 页眉：暖纸半透明 + 模糊（桌面 + 移动端统一） */
#masthead.site-header,
#masthead .site-header-row-container-inner,
.site-mobile-header-wrap,
.site-mobile-header-inner-wrap {
  background: rgba(245, 243, 238, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
#masthead.site-header { border-bottom: 1px solid var(--vo-steel); }

/* 归档标题区：收紧顶部留白，左右基准对齐 */
.vo-archive-hero {
  padding: clamp(1.6rem, 3vw, 2.4rem) 0 1.8rem;
}
.vo-archive-hero-inner { align-items: center; }
.vo-archive-code { font-size: 0.68rem; }
.vo-archive-title { margin: 0.5rem 0 0.7rem; }
.vo-archive-desc { color: var(--vo-ink-2); }
.vo-archive-rail { color: var(--vo-ink-3); }
.vo-archive-rail b { color: var(--vo-ink); }

/* 产品库搜索框：细灰下划线，别抢标题 */
.vo-db-search { border-bottom: 1px solid var(--vo-line-2); }
.vo-db-search input { font-size: 1rem; }

/* 产品页标题区：增加呼吸感 */
.vo-prod-breadcrumb { margin-top: 2rem; }
.vo-record-head .vo-prod-title { margin: 0 0 0.9rem; }
.vo-record-facts { margin: 0 0 1.1rem; }

/* 文章页顶栏与正文衔接 */
.vo-single-hero { padding: 2rem 0 1.4rem; }

/* 页脚：列高平衡时链接行距一致 */
.vo-footer-col a { padding: 5px 0; }

/* ==========================================================
   页眉页脚 v2：实验室日志条 + 编号导航 + 数据页脚（2026-08-12）
   ========================================================== */

/* ---------- 顶部实验室日志条 ---------- */
.vo-benchbar {
  background: var(--vo-deep);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vo-benchbar-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.vo-benchbar-mark {
  color: #fff;
  font-weight: 700;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vo-benchbar-mark::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vo-ember);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.22);
}
.vo-benchbar-ticker {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.16s;
}
.vo-benchbar-ticker:hover { color: #fff; }
.vo-benchbar-meta {
  display: flex;
  gap: 14px;
  flex: none;
  color: rgba(255, 255, 255, 0.42);
}
.vo-benchbar-age {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 1px 9px;
  color: #fff;
}

/* ---------- 品牌区：紧凑字标 + mono 铭牌 ---------- */
.site-branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 14px;
  border-left: 2px solid var(--vo-ember);
}
.site-branding .brand img { height: 36px; width: auto; }
.site-branding::after {
  content: "Independent Vape Intelligence";
  font-family: var(--vo-font-mono);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vo-ink-3);
  margin-top: 3px;
}

/* ---------- 导航：干净排版 + 悬停下划线 ---------- */
.site-header-item-main-navigation {
  padding-left: 22px;
  border-left: 1px solid var(--vo-steel);
}
#primary-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--vo-font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--vo-ink);
  transition: color 0.18s ease;
}
#primary-menu > li > a::before {
  content: "→";
  position: absolute;
  left: -17px;
  top: 50%;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  color: var(--vo-ember);
  opacity: 0;
  transform: translateY(-50%) translateX(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
#primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--vo-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#primary-menu > li > a:hover { color: var(--vo-ember-ink); }
#primary-menu > li > a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
#primary-menu > li > a:hover::after,
#primary-menu > li.current-menu-item > a::after { transform: scaleX(1); }
#primary-menu > li.current-menu-item > a {
  color: var(--vo-ember-ink);
  font-weight: 700;
}
#primary-menu .dropdown-nav-toggle svg {
  color: var(--vo-ink-3);
  transition: color 0.18s ease, transform 0.18s ease;
}
#primary-menu > li:hover .dropdown-nav-toggle svg { color: var(--vo-ember); }

/* ---------- 搜索：胶囊 + 文字 ---------- */
.voskin-search-trigger {
  width: auto;
  height: 38px;
  padding: 0 14px;
  gap: 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--vo-line-2);
  background: var(--vo-surface);
}
.voskin-search-trigger::after {
  content: "Search";
  font-family: var(--vo-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--vo-ink-2);
  transition: color 0.16s;
}
.voskin-search-trigger:hover::after { color: var(--vo-ember); }

/* 页眉左下角：炽橙签名短线 */
#masthead.site-header { position: relative; }
#masthead.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 72px;
  height: 2px;
  background: var(--vo-ember);
  z-index: 6;
}

/* ---------- 页脚：数据面板 + 编号标题 + 箭头链接 + 返回顶部 ---------- */
.vo-footer-stats {
  display: flex;
  gap: 26px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vo-footer-stats div { display: flex; flex-direction: column; }
.vo-footer-stats b {
  font-family: var(--vo-font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.vo-footer-stats span {
  font-family: var(--vo-font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 5px;
}
.vo-footer-col h4 {
  position: relative;
  padding-bottom: 10px;
}
.vo-footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--vo-ember);
}
.vo-footer-col a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  transition: color 0.16s ease, transform 0.16s ease;
}
.vo-footer-col a::after {
  content: "→";
  color: var(--vo-ember);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.vo-footer-col a:hover { color: #fff; transform: translateX(3px); }
.vo-footer-col a:hover::after { opacity: 1; transform: none; }
.vo-footer-top {
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  transition: all 0.16s ease;
}
.vo-footer-top:hover { color: #fff; border-color: var(--vo-ember); }
.vo-footer-bottom { align-items: center; }
.vo-footer-brand-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.vo-footer-social-row .vo-footer-top { margin-left: auto; }
.vo-footer-brand .vo-footer-logo {
  display: inline-flex;
  align-items: center;
}
.vo-footer-brand .vo-footer-logo-img {
  height: 40px;
  width: auto;
  aspect-ratio: 1000 / 251;
  outline: 0;
  display: block;
}

@media (max-width: 900px) {
  .vo-benchbar-date { display: none; }
  .vo-benchbar-mark { font-size: 10px; }
  .site-branding::after { content: "VO · INTEL"; letter-spacing: 0.14em; }
}
@media (max-width: 680px) {
  .vo-benchbar-inner { padding: 0 18px; height: 32px; gap: 12px; }
  .vo-benchbar-ticker { font-size: 10px; }
  .vo-benchbar-age { display: none; }
  .voskin-search-trigger::after { content: ""; }
  .voskin-search-trigger { width: 40px; padding: 0; justify-content: center; }
  .site-branding .brand img { height: 30px; }
  .site-branding { padding-left: 10px; }
  .vo-footer-stats { gap: 18px; }
  .vo-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   自定义页眉（脱离 Kadence 框架）：文字标 + 导航 + 抽屉
   ========================================================== */
.site-header,
.site-mobile-header-wrap,
.site-mobile-header-inner-wrap { display: none !important; }

.vo-header-main {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245, 243, 238, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vo-steel);
}
body.admin-bar .vo-header-main { top: 32px; }
.vo-header-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* 文字标 */
.vo-header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  flex: none;
  text-decoration: none;
}
.vo-header-word {
  font-family: var(--vo-font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--vo-ink);
}
.vo-header-logo .vo-header-logo-img {
  height: 40px;
  width: auto;
  aspect-ratio: 1000 / 251;
  outline: 0;
  display: block;
}
.vo-header-word .vo-dot { color: var(--vo-ember); }
.vo-header-cap { margin-top: 4px; }
.vo-drawer-head .vo-header-logo-img { height: 36px; }
.vo-header-cap {
  font-family: var(--vo-font-mono);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vo-ink-2);
  margin-top: 5px;
}

/* 导航 */
.vo-header-nav { margin-left: 8px; }
.vo-menu {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vo-menu > li { position: relative; }
.vo-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--vo-font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.015em;
  color: var(--vo-ink);
  padding: 10px 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.vo-menu > li > a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 2px;
  background: var(--vo-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.vo-menu > li > a:hover,
.vo-menu > li.current-menu-item > a { color: var(--vo-ember-ink); }
.vo-menu > li > a:hover::after,
.vo-menu > li.current-menu-item > a::after { transform: scaleX(1); }
.vo-menu .nav-drop-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vo-menu .dropdown-nav-toggle svg {
  width: 10px;
  height: 10px;
  color: var(--vo-ink-3);
  transition: color 0.18s ease, transform 0.18s ease;
}
.vo-menu > li:hover > a .dropdown-nav-toggle svg,
.vo-menu > li:focus-within > a .dropdown-nav-toggle svg { color: var(--vo-ember); transform: rotate(180deg); }
.vo-menu .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 9px;
  background: var(--vo-surface);
  border: 1px solid var(--vo-steel);
  border-radius: 12px;
  box-shadow: var(--vo-shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 70;
}
.vo-menu li:hover > .sub-menu,
.vo-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.vo-menu .sub-menu a {
  display: block;
  padding: 9px 13px;
  font-family: var(--vo-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--vo-ink-2);
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.vo-menu .sub-menu a:hover { background: var(--vo-ember-soft); color: var(--vo-ember-ink); }

/* 右侧操作 */
.vo-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vo-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--vo-line-2);
  background: var(--vo-surface);
  color: var(--vo-ink-2);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.18s ease;
}
.vo-search::after { content: none; }
.vo-search:hover { border-color: var(--vo-ink); color: var(--vo-ink); }
.vo-search svg { width: 16px; height: 16px; }
.vo-burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vo-line-2);
  border-radius: 9px;
  background: var(--vo-surface);
  color: var(--vo-ink);
}
.vo-burger svg { width: 18px; height: 18px; }

/* 移动端抽屉 */
.vo-scrim {
  position: fixed;
  inset: 0;
  background: rgba(18, 20, 15, 0.45);
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.vo-scrim.show { opacity: 1; pointer-events: auto; }
.vo-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: var(--vo-surface);
  z-index: 90;
  transform: translateX(105%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 50px rgba(22, 20, 15, 0.18);
}
.vo-drawer.open { transform: none; }
.vo-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--vo-steel);
}
.vo-drawer-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--vo-line-2);
  border-radius: 8px;
  font-size: 14px;
  color: var(--vo-ink);
}
.vo-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  overflow-y: auto;
}
.vo-drawer-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 22px;
  font-family: var(--vo-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--vo-ink);
  border-bottom: 1px solid var(--vo-line);
  text-decoration: none;
}
.vo-drawer-menu > li > a:hover { color: var(--vo-ember-ink); }
.vo-drawer-foot {
  margin-top: auto;
  padding: 20px 22px;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-ink-3);
}

@media (max-width: 1024px) {
  .vo-header-nav { display: none; }
  .vo-header-inner { gap: 18px; }
  .vo-burger { display: inline-flex; }
  .vo-search span { display: none; }
  .vo-search { width: 40px; padding: 0; justify-content: center; }
}
@media (max-width: 680px) {
  .vo-header-inner { padding: 0 18px; height: 70px; }
  .vo-header-word { font-size: 18px; }
  .vo-header-cap { display: none; }
  .vo-header-logo .vo-header-logo-img { height: 34px; }
}

/* ==========================================================
   全站字体与配色校正（2026-08 审计）
   目标：清除 Kadence 残留冷色（蓝灰/冷白/链接蓝），
   统一到暖纸 + 深墨 + 炽橙体系；修正过小字号。
   ========================================================== */

/* 标题统一暖墨色（深色区块由各自高优先级规则覆盖为白色） */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.vo-article h1, .vo-article h2, .vo-article h3,
.vo-single h1, .vo-single h2, .vo-single h3,
.vo-card h3 { color: var(--vo-ink); }

/* 卡片分类标签：暖灰统一 */
.vo-card-cat { color: var(--vo-ink-3); }

/* 页眉 logo 链接：不继承链接蓝 */
.vo-header-logo { color: inherit; }

/* 正文统一暖墨次级色 */
.entry-content,
.vo-single-content { color: var(--vo-ink-2); }

/* 页脚冷蓝灰 → 暖白 */
.vo-footer,
.vo-footer-inner { color: #edebe4; }
.vo-footer-brand p { color: rgba(237, 235, 228, 0.66); }
.vo-footer-social-label { color: rgba(237, 235, 228, 0.52); }
.vo-footer-bottom { color: rgba(237, 235, 228, 0.48); }
.vo-footer-col h4 { color: rgba(237, 235, 228, 0.52); }
.vo-footer-col a { color: rgba(237, 235, 228, 0.78); }
.vo-footer-col a:hover { color: #fff; }

/* 残留冷色兜底：旧绿 → 信号绿，旧橙变体 → 品牌橙 */
.vo-deal-status-live,
.vo-chip-deal { background: var(--vo-deal-soft); color: var(--vo-deal); }
.vo-deal-status-live { color: var(--vo-deal); }

/* 过小字号修正（10px → 11px+，仍保持 mono 微标签语义） */
.vo-prod-breadcrumb,
.vo-prod-crumb-current { font-size: 12px; }
.vo-archive-code { font-size: 12px; }
.vo-archive-hero-panel-cap { font-size: 11.5px; }
.vo-chip { font-size: 11px; }
.entry-content .vo-chip,
.vo-chip-ember { font-size: 11px; }
.vo-top-card-meta { font-size: 11px; }
.vo-score-tag { font-size: 11px; }
.vo-benchbar { font-size: 11.5px; }
.vo-feature-index { font-size: 11px; }
.vo-newsrow-meta,
.vo-meta-line,
.vo-single-meta,
.vo-deals-spot-meta { font-size: 11px; }
.vo-kicker { font-size: 11px; }
.vo-card-cat { font-size: 10.5px; }

/* 触控目标与无障碍校正（critique P2 收尾） */
.vo-card-more {
  min-height: 40px;
  align-items: center;
}
.vo-compare-btn { width: 34px; height: 34px; }
.vo-drawer-close { width: 44px; height: 44px; }
.vo-footer-top {
  background: transparent;
  cursor: pointer;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 16px;
}
.vo-footer-top:hover { color: #fff; border-color: var(--vo-ember); }
.vo-kicker.ink { color: var(--vo-ink-2); }

/* 产品页细节校正（2026-08 critique 收尾） */
.vo-hub-buy .vo-deals-strip span { color: rgba(255, 255, 255, 0.72); }
.vo-footer-bottom { color: rgba(237, 235, 228, 0.6); }
.vo-prod-breadcrumb span { color: var(--vo-ink-3); }
.vo-spec-row { padding: 0.55rem 0; }
.vo-compare-btn { top: 12px; right: 12px; }
@media (max-width: 700px) {
  .vo-card-more { min-height: 44px; }
  .vo-compare-btn { width: 40px; height: 40px; }
  .vo-card h3 a { padding: 4px 0; display: inline-block; }
  .vo-footer-col a { padding: 9px 0; }
  .vo-pagination a,
  .vo-pagination span { min-height: 44px; }
  .vo-viewall { padding: 8px 10px; }
}

/* 产品页指标条移动端：修正第一列左内边距为 0 导致的文字贴边 */
@media (max-width: 700px) {
  .vo-record-strip .vo-record-stat { padding: 0.9rem 0.95rem; }
  .vo-record-strip .vo-record-stat:nth-child(odd) { border-right: 0; }
  .vo-record-strip .vo-record-stat:nth-child(even) { border-left: 1px solid var(--vo-steel); }
}

/* 产品页去框：指标条 / In this record / Kit contents / Key features
   从"白卡带框"回归"少框多线"（发丝线分隔，去掉每项边框与背景） */
.vo-record-strip {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
  border-radius: 0;
  padding: 0;
}
.vo-record-stat { padding: 1.05rem 1.2rem 1.1rem 0; }
.vo-record-stat + .vo-record-stat {
  border-left: 1px solid var(--vo-steel);
  padding-left: 1.5rem;
}
.vo-record-index {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.4rem;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding: 0.7rem 0;
  border-top: 1px solid var(--vo-steel);
  border-bottom: 1px solid var(--vo-steel);
}
.vo-record-index-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--vo-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vo-ink-2);
  flex: none;
}
.vo-record-index-label::before {
  content: "";
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: var(--vo-ember);
}
.vo-record-index-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.vo-record-index-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vo-ink-2);
  transition: background 0.16s ease, color 0.16s ease;
}
.vo-record-index-links a:hover {
  background: var(--vo-ember-soft);
  color: var(--vo-ember-ink);
}
.vo-record-index-links a span {
  font-family: var(--vo-font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--vo-ember);
}
.vo-check-list { gap: 0.4rem; }
.vo-check-list li,
.vo-check-list-hero li {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.3rem 0 0.3rem 1.5rem;
}

/* 普通 chip：浅色底 + 深字（黑底深灰字不可读；ember/deal 变体除外） */
.vo-chip:not(.vo-chip-ember):not(.vo-chip-deal) {
  background: transparent;
  color: var(--vo-ink-2);
  border: 1px solid var(--vo-line-2);
}

/* 评论表单：去掉 Kadence 蓝色按钮，统一暖墨 */
.vo-comments-area .submit,
.comment-form input[type="submit"],
#commentform input[type="submit"] {
  background: var(--vo-ink);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.18s ease;
}
.comment-form input[type="submit"]:hover { background: var(--vo-ember); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--vo-line-2);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--vo-surface);
  color: var(--vo-ink);
  font-family: var(--vo-font-body);
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--vo-ember);
  outline: none;
  box-shadow: 0 0 0 3px var(--vo-ember-soft);
}

/* 重点展示区：右侧副卡列拉开填满左卡高度，消除底部大片留白 */
.vo-feature-side {
  justify-content: space-between;
  gap: 0.9rem;
}
.vo-feature-media {
  border-radius: 12px;
  outline: 1px solid rgba(22, 20, 15, 0.07);
  outline-offset: -1px;
}
.vo-feature-head { margin-bottom: 1.4rem; }
.vo-feature-mini-thumb { border-radius: 8px; overflow: hidden; }

/* 文章页 */
.vo-single-hero {
  padding: 2.2rem 0 1.6rem;
  max-width: 900px;
}
.vo-single-hero-media {
  border-radius: 12px;
  overflow: hidden;
  outline: 1px solid rgba(22, 20, 15, 0.07);
  outline-offset: -1px;
}
.vo-single-title {
  font-family: var(--vo-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}
.vo-single-meta {
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vo-ink-3);
}
.vo-single-content {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--vo-ink-2);
  max-width: 760px;
}
.vo-single-content p { margin-bottom: 1.5rem; }
.vo-single-content a { color: var(--vo-ember-ink); text-decoration: underline; text-underline-offset: 2px; }

/* 测评面板：统一深色卡片（若未在文章模板中深色化则兜底） */
.vo-review-panel {
  background: var(--vo-deep);
  color: #fff;
  border-radius: 12px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 16px 40px rgba(22, 20, 15, 0.16);
}
.vo-review-panel .vo-score-big { color: var(--vo-ember); }
.vo-review-panel .vo-bar-track { background: rgba(255, 255, 255, 0.14); }
.vo-review-panel .vo-bar-fill { background: var(--vo-ember); }

/* 产品页 Deals 模块：关联优惠卡 */
.vo-prod-deals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 760px) {
  .vo-prod-deals { grid-template-columns: 1fr; }
}
.vo-prod-deal {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  border: 1px solid var(--vo-steel);
  border-radius: 12px;
  overflow: hidden;
  background: var(--vo-surface);
}
.vo-prod-deal-media {
  flex: 0 0 96px;
  background-size: cover;
  background-position: center;
  min-height: 112px;
}
.vo-prod-deal-body {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 1rem 1rem 1rem 0;
  min-width: 0;
}
.vo-prod-deal-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.vo-prod-deal-expiry {
  font-family: var(--vo-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vo-ash);
}
.vo-prod-deal-title {
  font-family: var(--vo-font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}
.vo-prod-deal-title a { color: var(--vo-ink); text-decoration: none; }
.vo-prod-deal-title a:hover { color: var(--vo-ember); }
.vo-prod-deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  font-family: var(--vo-font-mono);
  font-size: 0.68rem;
  color: var(--vo-ash);
  margin: 0;
}
.vo-prod-deal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: auto;
}
.vo-prod-deal-actions .vo-deal-single-btn { margin-top: 0; }
.vo-deal-status-soon { color: var(--vo-ember); border: 1px solid var(--vo-ember); }
