/* ============================================================
   core.css - Boat World 全站核心样式
   风格锚点：深海蓝 #0A2E4D | 甲板白 #F8F6F2 | 导航橙 #E8734A
   字体：Inter / Source Sans Pro / JetBrains Mono（系统字体回退）
   ============================================================ */

:root {
  /* 品牌色板 */
  --c-deep: #0A2E4D;
  --c-deep-2: #0D3B63;
  --c-deep-3: #164A78;
  --c-deck: #F8F6F2;
  --c-deck-2: #F1EDE6;
  --c-orange: #E8734A;
  --c-orange-2: #C95F3B;
  --c-sand: #D9CBB8;
  --c-sea-glass: #7FA8B8;
  --c-text: #1F2A33;
  --c-text-soft: #4A5965;
  --c-text-muted: #6E7B86;
  --c-white: #FFFFFF;

  /* 语义色 */
  --c-success: #2E7D5B;
  --c-warning: #C98A2D;
  --c-danger: #B8423C;
  --c-info: #3B6E8F;

  /* 字体系统 */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', 'Monaco', monospace;

  /* 间距系统（4px 基础单位） */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* 圆角系统 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(10, 46, 77, 0.08), 0 1px 2px rgba(10, 46, 77, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 46, 77, 0.10), 0 2px 4px rgba(10, 46, 77, 0.06);
  --shadow-lg: 0 12px 32px rgba(10, 46, 77, 0.16), 0 4px 12px rgba(10, 46, 77, 0.08);
  --shadow-xl: 0 24px 64px rgba(10, 46, 77, 0.22), 0 8px 24px rgba(10, 46, 77, 0.10);
  --shadow-orange: 0 4px 16px rgba(232, 115, 74, 0.32);

  /* 过渡 */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 120ms;
  --duration-base: 240ms;
  --duration-slow: 480ms;

  /* 布局 */
  --container-max: 1200px;
  --content-max: 780px;
  --sidebar-width: 320px;
}

/* ============================================================
   基础重置
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
  background-color: var(--c-deck);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--c-deep-3);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--c-orange-2);
}

ul,
ol {
  list-style-position: inside;
  margin: var(--space-4) 0;
}

li {
  margin-bottom: var(--space-2);
}

::selection {
  background: var(--c-orange);
  color: var(--c-white);
}

/* ============================================================
   排版
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-deep);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-5);
}

h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.875rem);
  margin: var(--space-7) 0 var(--space-4);
  padding-top: var(--space-5);
  border-top: 3px solid var(--c-sand);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin: var(--space-5) 0 var(--space-3);
}

h4 {
  font-size: 1.1rem;
  margin: var(--space-4) 0 var(--space-2);
}

p {
  margin-bottom: var(--space-4);
}

strong {
  font-weight: 700;
  color: var(--c-deep);
}

blockquote {
  border-left: 4px solid var(--c-orange);
  background: var(--c-white);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-5) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  font-style: italic;
  color: var(--c-text-soft);
}

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--c-deck-2);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  color: var(--c-deep);
}

pre {
  background: var(--c-deep);
  color: var(--c-deck);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: var(--space-5) 0;
}

pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

/* ============================================================
   布局容器
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.content-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* ============================================================
   导航栏
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 46, 77, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--c-deep);
}

.site-logo:hover {
  color: var(--c-orange);
}

.site-logo svg {
  width: 32px;
  height: 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--c-text-soft);
  position: relative;
  padding: var(--space-2) 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-orange);
  transition: width var(--duration-base) var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--c-deep);
}

/* 汉堡菜单按钮 */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-deep);
  transition: all var(--duration-base) var(--ease-out);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   页脚
   ============================================================ */
.site-footer {
  margin-top: auto;
  background: var(--c-deep);
  color: var(--c-deck);
  padding: var(--space-7) 0 var(--space-5);
}

.site-footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-7);
}

.footer-brand h3 {
  color: var(--c-white);
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
}

.footer-brand p {
  color: var(--c-sand);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--c-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.footer-col a {
  display: block;
  color: var(--c-sea-glass);
  font-size: 0.9rem;
  margin-bottom: var(--space-2);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-col a:hover {
  color: var(--c-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* ============================================================
   按钮
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  text-align: center;
  line-height: 1.4;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--c-deep);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--c-deep-2);
  color: var(--c-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--c-orange);
  color: var(--c-white);
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background: var(--c-orange-2);
  color: var(--c-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-deep);
  border-color: var(--c-deep);
}

.btn-outline:hover {
  background: var(--c-deep);
  color: var(--c-white);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text-soft);
}

.btn-ghost:hover {
  color: var(--c-deep);
  background: var(--c-deck-2);
}

/* CTA 按钮（联盟链接专用） */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: var(--space-3) var(--space-5);
  background: var(--c-orange);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-orange);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  text-align: center;
  line-height: 1.4;
}

.btn-cta:hover {
  background: var(--c-orange-2);
  color: var(--c-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: scale(0.98);
}

/* ============================================================
   卡片
   ============================================================ */
.card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-base) var(--ease-out);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-body {
  padding: var(--space-5);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-deep);
  margin-bottom: var(--space-2);
}

.card-title a {
  color: inherit;
}

.card-title a:hover {
  color: var(--c-orange);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.8rem;
  color: var(--c-text-muted);
  flex-wrap: wrap;
}

/* 文章卡片 */
.article-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-base) var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card .card-summary {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin-bottom: var(--space-3);
  flex: 1;
}

/* ============================================================
   面包屑导航
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--c-text-muted);
  padding: var(--space-3) 0;
}

.breadcrumb a {
  color: var(--c-text-soft);
  transition: color var(--duration-fast) var(--ease-out);
}

.breadcrumb a:hover {
  color: var(--c-orange);
}

.breadcrumb .separator {
  color: var(--c-sand);
  user-select: none;
}

.breadcrumb .current {
  color: var(--c-deep);
  font-weight: 600;
}

/* ============================================================
   FAQ 折叠区
   ============================================================ */
.faq-section {
  margin: var(--space-6) 0;
}

.faq-item {
  background: var(--c-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-deep);
  text-align: left;
  min-height: 48px;
  gap: var(--space-3);
  transition: background var(--duration-fast) var(--ease-out);
}

.faq-question:hover {
  background: var(--c-deck-2);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--duration-base) var(--ease-out);
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--c-orange);
  border-radius: 2px;
}

.faq-question .faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-question .faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform var(--duration-base) var(--ease-out);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-in-out);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-content {
  padding: 0 var(--space-5) var(--space-4);
  color: var(--c-text-soft);
  font-size: 0.92rem;
}

/* ============================================================
   对比表格
   ============================================================ */
.comparison-table-wrap {
  overflow-x: auto;
  margin: var(--space-5) 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: var(--c-white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}

.comparison-table thead {
  background: var(--c-deep);
  color: var(--c-white);
}

.comparison-table th {
  padding: var(--space-4) var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--c-deck-2);
  transition: background var(--duration-fast) var(--ease-out);
}

.comparison-table tbody tr:hover {
  background: var(--c-deck-2);
}

.comparison-table td {
  padding: var(--space-3) var(--space-4);
  vertical-align: top;
  color: var(--c-text-soft);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--c-deep);
}

/* ============================================================
   用户评论区块
   ============================================================ */
.user-reviews-section {
  margin: var(--space-6) 0;
}

.user-review-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  margin-bottom: var(--space-3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-deep-3);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  display: block;
  font-weight: 700;
  color: var(--c-deep);
  font-size: 0.9rem;
}

.review-date {
  display: block;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.review-stars {
  color: var(--c-warning);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.review-body {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.6;
}

.review-helpful {
  margin-top: var(--space-3);
}

.review-helpful button {
  background: none;
  border: 1px solid var(--c-sand);
  color: var(--c-text-soft);
  font-size: 0.78rem;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  min-height: 32px;
}

.review-helpful button:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
}

/* ============================================================
   相关内链区块
   ============================================================ */
.related-links-section {
  margin: var(--space-6) 0;
}

.related-link-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
  border-left: 4px solid var(--c-sea-glass);
}

.related-link-card p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: var(--space-2);
}

.related-link-card a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-deep);
  font-size: 0.95rem;
}

.related-link-card a:hover {
  color: var(--c-orange);
}

/* ============================================================
   评分徽章
   ============================================================ */
.dpscore-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--c-deep);
  color: var(--c-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--duration-base) var(--ease-out);
}

.dpscore-badge:hover {
  background: var(--c-orange);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

/* ============================================================
   时效三件套
   ============================================================ */
.article-timestamps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: var(--space-4);
}

.article-timestamps span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--c-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   作者签名区
   ============================================================ */
.author-signature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  border-top: 4px solid var(--c-orange);
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-white);
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-deep);
  font-size: 1rem;
  margin-bottom: var(--space-1);
}

.author-bio {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  margin-bottom: var(--space-2);
}

.author-conflict {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-style: italic;
}

/* 作者头像专属渐变 */
.avatar-jake-morrison { background: linear-gradient(135deg, #1A5276, #154360); }
.avatar-elena-rodriguez { background: linear-gradient(135deg, #0B5345, #0E6655); }
.avatar-sarah-chen { background: linear-gradient(135deg, #6C3483, #7D3C98); }

/* ============================================================
   信任条
   ============================================================ */
.trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  background: var(--c-deep);
  color: var(--c-deck);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  font-size: 0.82rem;
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-bar-item .trust-icon {
  font-size: 1rem;
}

/* ============================================================
   状态与标记
   ============================================================ */
.under-review {
  display: inline-flex;
  align-items: center;
  background: var(--c-warning);
  color: var(--c-white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-date {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.empty-state {
  text-align: center;
  color: var(--c-text-muted);
  padding: var(--space-7);
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--c-sand);
}

/* ============================================================
   侧边栏
   ============================================================ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.sidebar-widget {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
}

.sidebar-widget h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--c-deck-2);
}

.quick-pick-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--c-deck-2);
  font-size: 0.88rem;
  color: var(--c-text-soft);
  transition: color var(--duration-fast) var(--ease-out);
}

.quick-pick-card:hover {
  color: var(--c-orange);
}

.quick-pick-card:last-child {
  border-bottom: none;
}

.quick-pick-score {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-deep);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.editors-pick-card {
  display: block;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--c-deck-2);
  font-size: 0.88rem;
  color: var(--c-text-soft);
}

.editors-pick-card:last-child {
  border-bottom: none;
}

.editors-pick-card:hover {
  color: var(--c-orange);
}

/* ============================================================
   favicon 内联 SVG
   ============================================================ */
.favicon-svg {
  display: none;
}

/* ============================================================
   响应式 · 移动端
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-7: 32px;
    --space-8: 48px;
    --space-9: 64px;
  }

  body {
    font-size: 16px;
    line-height: 1.75;
  }

  .site-header .container {
    height: 56px;
  }

  .main-nav {
    position: fixed;
    top: 56px;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: calc(100vh - 56px);
    background: var(--c-deck);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-5);
    transition: right var(--duration-slow) var(--ease-out);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: var(--space-4) 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--c-deck-2);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .site-footer .container {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .breadcrumb {
    font-size: 0.78rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table-wrap {
    margin: var(--space-4) calc(var(--space-5) * -1);
    border-radius: 0;
  }

  .comparison-table {
    min-width: 480px;
  }

  .author-signature {
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .btn-cta {
    width: 100%;
    min-height: 48px;
    padding: var(--space-3) var(--space-4);
    font-size: 0.95rem;
  }

  .trust-bar {
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    font-size: 0.75rem;
  }

  .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  h2 {
    margin-top: var(--space-6);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .content-container {
    padding: 0 var(--space-4);
  }

  .article-timestamps {
    gap: var(--space-2);
    font-size: 0.75rem;
  }

  .article-timestamps span {
    padding: var(--space-1) var(--space-2);
  }
}