/* ============================================================
   detail.css — 新闻/展会/评测/职位 详情页样式
   从 news.css 拆分 (2026-07-16): news.html 列表页用 news.css,
   4 个详情页(brand-news/exhibition/media-review/job-position)用本文件。
   ============================================================ */

/* ===== DETAIL PAGES ===== */
.news-detail-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  background: #080809;
  padding-top: 128px;
  padding-bottom: 64px;
  overflow: hidden;
}

.news-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.025) 0%, transparent 55%);
  pointer-events: none;
}

.news-detail-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #080809);
  pointer-events: none;
}

.news-detail-hero--brand {
  background:
    radial-gradient(ellipse at 50% -40%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
    #080809;
}

.news-detail-hero--exhibition {
  background:
    radial-gradient(ellipse at 50% -40%, rgba(41, 151, 255, 0.10) 0%, transparent 50%),
    #080809;
}

.news-detail-hero--review {
  background:
    radial-gradient(ellipse at 50% -40%, rgba(201, 169, 110, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 0%, rgba(41, 151, 255, 0.06) 0%, transparent 45%),
    #080809;
}

.news-detail-hero .container {
  position: relative;
}

.news-detail-hero-number {
  position: absolute;
  top: -0.35em;
  right: -0.05em;
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-link:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.08);
  color: var(--color-gold);
}

.back-link:active {
  transform: translateY(1px) scale(0.98);
}

.back-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.news-detail-label {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.10);
  border: 1px solid rgba(201, 169, 110, 0.22);
  color: var(--color-gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.news-detail-hero--exhibition .news-detail-label {
  background: rgba(41, 151, 255, 0.10);
  border-color: rgba(41, 151, 255, 0.22);
  color: #7ab8ff;
}

.news-detail-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 820px;
}

.news-detail-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-gray-400);
  font-size: 0.9375rem;
  flex-wrap: wrap;
}

.news-detail-hero-meta .date::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gray-600);
  margin-right: 16px;
  vertical-align: middle;
}

.news-detail-section {
  background: #080809;
  padding-bottom: 120px;
  position: relative;
}

.news-detail-section.section-padding {
  padding-top: 24px;
}

@media (min-width: 768px) {
  .news-detail-section.section-padding {
    padding-top: 34px;
  }
}

@media (min-width: 1280px) {
  .news-detail-section.section-padding {
    padding-top: 43px;
  }
}

.news-detail-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(201, 169, 110, 0.035) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 90%, rgba(41, 151, 255, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.news-detail-section .container {
  position: relative;
}

.news-detail-content {
  max-width: 946px;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
}

/* Two-column layout: content + sticky sidebar */
.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  column-gap: 54px;
  align-items: start;
}

.news-detail-sidebar {
  position: sticky;
  top: 96px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
}

.news-detail-sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--color-gold);
  letter-spacing: -0.01em;
}

.news-detail-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.news-detail-sidebar .news-detail-related-card-title {
  font-size: 1rem;
}

.news-detail-sidebar .news-detail-related-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-detail-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.news-detail-image:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.news-detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-detail-image:hover img {
  transform: scale(1.02);
}

.news-detail-image--review {
  margin-bottom: 0;
}

/* ===== PRODUCT DETAIL GALLERY =====
   左侧垂直缩略图 + 右侧大图预览，参考 1.png */
.product-gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
}

.product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 92px;
  flex-shrink: 0;
  max-height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.product-gallery-thumbs::-webkit-scrollbar {
  width: 4px;
}

.product-gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.product-gallery-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.product-gallery-thumb:hover {
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.product-gallery-thumb.is-active {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.1);
}

.product-gallery-thumb.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--color-gold);
  pointer-events: none;
}

.product-gallery-stage {
  flex: 0 0 calc((100% - 92px - 20px) * 0.9);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-gallery-stage img.is-loading {
  opacity: 0.6;
  transform: scale(0.98);
}

@media (max-width: 767px) {
  .product-gallery {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
  }

  .product-gallery-thumbs {
    flex-direction: row;
    order: 2;
    width: 100%;
    max-height: none;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 4px;
    gap: 10px;
    scrollbar-width: none;
  }

  .product-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-gallery-thumb {
    width: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    padding: 5px;
  }

  .product-gallery-thumb.is-active::after {
    border-radius: 12px;
  }

  .product-gallery-stage {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
    height: 360px;
    border-radius: 18px;
  }

  .product-gallery-stage img {
    width: 100%;
    height: 100%;
  }
}

/* ===== PRODUCT GALLERY LIGHTBOX ===== */
.product-gallery-stage {
  cursor: zoom-in;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.product-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.product-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-lightbox-stage {
  position: relative;
  z-index: 1;
  width: calc(100% - 160px);
  height: calc(100% - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.product-lightbox.active .product-lightbox-stage img {
  transform: scale(1);
  opacity: 1;
}

.product-lightbox-close,
.product-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-lightbox-close:hover,
.product-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.product-lightbox-close:active,
.product-lightbox-nav:active {
  transform: scale(0.97);
}

.product-lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
}

.product-lightbox-nav {
  top: 50%;
  width: 56px;
  height: 56px;
  margin-top: -28px;
}

.product-lightbox-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.product-lightbox-prev {
  left: 24px;
}

.product-lightbox-next {
  right: 24px;
}

.product-lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .product-lightbox-stage {
    width: calc(100% - 48px);
    height: calc(100% - 140px);
  }

  .product-lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .product-lightbox-nav {
    top: auto;
    bottom: 76px;
    width: 48px;
    height: 48px;
    margin-top: 0;
  }

  .product-lightbox-prev {
    left: 16px;
  }

  .product-lightbox-next {
    right: 16px;
  }

  .product-lightbox-counter {
    bottom: 24px;
  }
}

.news-detail-video-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.news-detail-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.news-detail-lead {
  color: var(--color-gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 48px 0 40px;
}

.news-detail-lead p {
  margin: 0;
}

.news-detail-body {
  color: var(--color-gray-300);
  font-size: 1.0625rem;
  line-height: 1.9;
}

.news-detail-body h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 48px 0 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.news-detail-body h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 32px 0 14px;
  line-height: 1.4;
}

.news-detail-body p {
  margin-bottom: 24px;
}

.news-detail-body ul,
.news-detail-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.news-detail-body ul {
  list-style: disc;
}

.news-detail-body ol {
  list-style: decimal;
}

.news-detail-body li {
  margin-bottom: 12px;
}

.news-detail-body li::marker {
  color: var(--color-gold);
}

.news-detail-body strong {
  color: var(--color-white);
  font-weight: 600;
}

.news-detail-body img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: 16px;
  margin: 24px 0;
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== RICH TEXT（详情页 API 富文本：覆盖编辑器内联深色字/底，保留字号粗细对齐） ===== */
.news-detail-section .news-detail-content .news-detail-body,
.news-detail-section .news-detail-content .news-detail-body p,
.news-detail-section .news-detail-content .news-detail-body span,
.news-detail-section .news-detail-content .news-detail-body div,
.news-detail-section .news-detail-content .news-detail-body li,
.news-detail-section .news-detail-content .news-detail-body em,
.news-detail-section .news-detail-content .news-detail-body i,
.news-detail-section .news-detail-content .news-detail-body u,
.news-detail-section .news-detail-content .news-detail-body s,
.news-detail-section .news-detail-content .news-detail-body font,
.news-detail-section .news-detail-content .news-detail-body blockquote,
.news-detail-section .news-detail-content .news-detail-body td,
.news-detail-section .news-detail-content .news-detail-body th {
  color: rgba(255, 255, 255, 0.72) !important;
}

.news-detail-section .news-detail-content .news-detail-body strong,
.news-detail-section .news-detail-content .news-detail-body b,
.news-detail-section .news-detail-content .news-detail-body h1,
.news-detail-section .news-detail-content .news-detail-body h2,
.news-detail-section .news-detail-content .news-detail-body h3,
.news-detail-section .news-detail-content .news-detail-body h4,
.news-detail-section .news-detail-content .news-detail-body h5,
.news-detail-section .news-detail-content .news-detail-body h6 {
  color: var(--color-white) !important;
}

.news-detail-section .news-detail-content .news-detail-body a {
  color: var(--color-gold) !important;
}

.news-detail-section .news-detail-content .news-detail-body div,
.news-detail-section .news-detail-content .news-detail-body span,
.news-detail-section .news-detail-content .news-detail-body p,
.news-detail-section .news-detail-content .news-detail-body li,
.news-detail-section .news-detail-content .news-detail-body td,
.news-detail-section .news-detail-content .news-detail-body th {
  background-color: transparent !important;
}

/* 飞书/Word 粘贴常带 white-space:pre，长句不换行会撑破容器 */
.news-detail-section .news-detail-content .news-detail-body {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

.news-detail-section .news-detail-content .news-detail-body .ace-line,
.news-detail-section .news-detail-content .news-detail-body [style*="white-space:pre"],
.news-detail-section .news-detail-content .news-detail-body [style*="white-space: pre"] {
  white-space: pre-wrap !important;
  max-width: 100%;
}

@media (max-width: 767px) {
  .news-detail-body img {
    max-height: 360px;
    border-radius: 12px;
    margin: 20px 0;
  }
}

.news-detail-quote {
  position: relative;
  margin: 48px 0;
  padding: 32px 36px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  border-left: 3px solid var(--color-gold);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-detail-quote:hover {
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.news-detail-quote p {
  color: var(--color-white);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 16px;
}

.news-detail-quote cite {
  color: var(--color-gray-400);
  font-size: 0.9375rem;
  font-style: normal;
}

/* Highlights bento grid */
.news-detail-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.news-detail-highlight {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.news-detail-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.news-detail-highlight-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.news-detail-highlight-label {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  line-height: 1.5;
}

/* Exhibition timeline */
.exhibition-timeline {
  margin: 48px 0;
}

.exhibition-timeline-title {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.exhibition-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exhibition-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 24px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.exhibition-timeline-item:hover {
  transform: translateX(4px);
  border-color: rgba(41, 151, 255, 0.25);
}

.exhibition-timeline-time {
  color: #7ab8ff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
}

.exhibition-timeline-content {
  color: var(--color-gray-300);
  font-size: 1rem;
  line-height: 1.6;
}

.exhibition-timeline-content strong {
  color: var(--color-white);
  font-weight: 600;
}

/* Review meta card — 支持「5/5」与「推荐购买」等长短不一的 rating */
.review-score-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin: 36px 0;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.review-score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.35);
  flex-shrink: 0;
}

.review-score-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1.3;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.review-score-max {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-left: 4px;
}

.review-score-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.review-score-publication {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
}

.review-score-product {
  font-size: 0.8125rem;
  color: var(--color-gray-400);
  line-height: 1.4;
}

.review-score-summary {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-300);
  margin-top: 4px;
}

/* Review verdict */
.review-verdict {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.review-verdict-block {
  padding: 26px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.review-verdict-block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 18px;
}

.review-verdict-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.review-verdict-block li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--color-gray-300);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.review-verdict-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.review-verdict--pros li::before {
  background: #4ade80;
}

.review-verdict--cons li::before {
  background: #f87171;
}

/* Related (sidebar) */
.news-detail-related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  color: var(--color-gold);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease, gap 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.news-detail-related-link:hover {
  color: var(--color-gold-light);
  gap: 10px;
}

.news-detail-related-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.news-detail-related-card {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease;
}

.news-detail-related-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-detail-related-card:first-child {
  padding-top: 0;
}

.news-detail-related-card:hover {
  border-bottom-color: rgba(201, 169, 110, 0.35);
}

.news-detail-related-card:hover .news-detail-related-card-title {
  color: var(--color-gold);
}

.news-detail-related-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.10);
  border: 1px solid rgba(201, 169, 110, 0.20);
  color: var(--color-gold-light);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.news-detail-related-card-title {
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.news-detail-related-card-desc {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-top: auto;
}

/* ===== PRODUCT RELATED CARDS (sidebar) =====
   商品推荐侧边栏：水平列表项 + 圆角缩略图
   仅作用于 product-detail.js 渲染的 .news-detail-related-card--product */
.news-detail-related-card--product {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  margin: 0 -18px;
  border-bottom: none;
  border-radius: 18px;
  transition: background 0.35s ease;
}

.news-detail-related-card--product:first-child {
  padding-top: 0;
}

.news-detail-related-card--product:last-child {
  padding-bottom: 0;
}

.news-detail-related-card--product:hover {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: transparent;
}

.news-detail-related-card--product .news-detail-related-card-title {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.news-detail-related-card--product:hover .news-detail-related-card-title {
  color: var(--color-gold);
}

.news-detail-related-thumb {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-detail-related-card--product:hover .news-detail-related-thumb {
  border-color: rgba(201, 169, 110, 0.25);
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.04);
}

/* Banner 详情侧栏：横图缩略 + 真实标题/摘要 */
.news-detail-related-card--banner {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}

.news-detail-related-card--banner .news-detail-related-thumb {
  width: 96px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-detail-related-card--banner .news-detail-related-card-body {
  min-width: 0;
  flex: 1;
}

.news-detail-related-card--banner .news-detail-related-card-title {
  margin-bottom: 4px;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.news-detail-related-card--banner .news-detail-related-card-desc {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .news-detail-related-thumb {
    width: 88px;
    height: 88px;
    border-radius: 14px;
  }

  .news-detail-related-card--product {
    padding: 14px 16px;
    margin: 0 -16px;
    gap: 14px;
  }
}

.news-detail-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-back:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.08);
  color: var(--color-gold);
}

.btn-back:active {
  transform: translateY(1px) scale(0.98);
}

/* Responsive detail */
@media (max-width: 991px) {
  .news-detail-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    position: static;
    margin-top: 64px;
  }

  .news-detail-sidebar-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
  }

  .news-detail-sidebar-list .news-detail-related-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
  }

  .review-score-card {
    gap: 14px 16px;
  }
}

@media (max-width: 767px) {
  .news-detail-hero {
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .news-detail-hero-number {
    top: -0.1em;
    right: 0;
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .news-detail-hero-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .news-detail-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .news-detail-hero-meta .date::before {
    display: none;
  }

  .news-detail-image {
    margin-bottom: 40px;
    border-radius: 18px;
  }

  .news-detail-video-wrap {
    margin-bottom: 40px;
    border-radius: 18px;
  }

  .news-detail-content {
    padding: 24px;
    border-radius: 18px;
  }

  .news-detail-sidebar {
    padding: 24px;
    border-radius: 18px;
  }

  .news-detail-lead {
    font-size: 1rem;
    margin: 36px 0 32px;
  }

  .news-detail-body {
    font-size: 1rem;
  }

  .news-detail-body h2,
  .exhibition-timeline-title {
    font-size: 1.375rem;
    margin-top: 40px;
  }

  .news-detail-body h3 {
    font-size: 1.125rem;
  }

  .news-detail-quote {
    padding: 24px;
    margin: 40px 0;
  }

  .news-detail-quote p {
    font-size: 1.0625rem;
  }

  .news-detail-highlights {
    grid-template-columns: 1fr;
    margin: 40px 0;
  }

  .exhibition-timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .review-verdict {
    grid-template-columns: 1fr;
  }

  .review-score-card {
    padding: 14px 16px;
    gap: 10px 12px;
  }

  .review-score-value {
    font-size: 0.8125rem;
  }

  .review-score-publication {
    font-size: 0.875rem;
  }

  .review-score-product {
    font-size: 0.75rem;
  }

  .news-detail-sidebar {
    margin-top: 48px;
  }

  .news-detail-sidebar-list {
    grid-template-columns: 1fr;
  }
}

/* ===== DISTRIBUTOR DETAIL ===== */
.news-detail-hero--distributor {
  background:
    radial-gradient(ellipse at 50% -40%, rgba(201, 169, 110, 0.10) 0%, transparent 50%),
    #080809;
}

.news-detail-hero--distributor .news-detail-hero-number {
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.025);
}

.distributor-info-highlights .news-detail-highlight-value {
  font-size: 1.25rem;
  font-weight: 600;
  word-break: break-all;
}

.distributor-detail-video,
.distributor-detail-gallery {
  margin: 48px 0;
}

.distributor-detail-video h2,
.distributor-detail-gallery h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.distributor-video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.distributor-video-container video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.distributor-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.distributor-gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111111;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.distributor-gallery-item:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.distributor-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.distributor-gallery-item:hover img {
  transform: scale(1.04);
}

.distributor-detail-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.distributor-detail-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.distributor-detail-actions .btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.distributor-detail-actions .btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .news-detail-hero--distributor .news-detail-hero-number {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .distributor-gallery-grid {
    grid-template-columns: 1fr;
  }

  .distributor-gallery-item img {
    height: 140px;
  }

  .distributor-detail-video h2,
  .distributor-detail-gallery h2 {
    font-size: 1.375rem;
  }

  .distributor-detail-actions {
    flex-direction: column;
  }

  .distributor-detail-actions .btn-primary,
  .distributor-detail-actions .btn-back {
    width: 100%;
  }
}

/* ===== LEGAL DOCUMENT（单栏，宽度与 container 一致） ===== */
.legal-document-layout {
  max-width: none;
  margin: 0;
}

.legal-document-layout .news-detail-content {
  max-width: none;
  width: 100%;
}

.legal-document-empty {
  margin: 0 0 1.5rem;
  color: #888;
  font-size: 0.9375rem;
}

/* ===== BANNER DETAIL ===== */
.news-detail-hero--banner {
  background:
    radial-gradient(ellipse at 50% -40%, rgba(201, 169, 110, 0.10) 0%, transparent 50%),
    #080809;
}

.news-detail-hero--banner .news-detail-hero-number {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.025);
}

@media (max-width: 767px) {
  .news-detail-hero--banner .news-detail-hero-number {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }
}
