﻿/* ============================================
   Sands China — Press Releases
   Header/Footer = sandchina3 (1440 chrome)
   Content = Desktop 1280 design
   ============================================ */

:root {
  /* Content design width */
  --dw: 1280;
  /* PC：固定 1px，不随视口放大；窄于设计稿时才等比缩小 */
  --px: min(1px, calc(100vw / var(--dw)));

  /* Header/Footer — sandschina3 Desktop 1440 */
  --chrome-dw: 1440;
  --chrome-px: min(1px, calc(100vw / 1440));
  --header-h: calc(124 * var(--chrome-px));
  --chrome-side-pad: calc(80 * var(--chrome-px));

  /* Press content (1280) — banner 宽 100%，高度随原图比例，不裁切 */
  --banner-aspect: 1280 / 470;
  --banner-h: auto;
  --side-pad: calc(80 * var(--px));
  --gutter: calc(32 * var(--px));
  --thumb-w: calc(563 * var(--px));
  --thumb-h: calc(382 * var(--px));
  --row-w: calc(1120 * var(--px));
  --text-w: calc(525 * var(--px));
  --content-max: calc(1120 * var(--px));

  /* Colors from Figma / sandchina3 */
  --color-dark: #211f20;
  --color-black: #0a0a0a;
  --color-gold: #c4a574;
  --color-gold-soft: #d4b896;
  --color-gold-line: #cbad6d;
  --color-gold-active: #b09556;
  --color-see-details: rgb(164, 138, 92);
  --color-cream: #f3e7d4;
  --color-cream-btn: #d0b486;
  --color-text: #000000;
  --color-text-muted: #414141;
  --color-text-light: #888888;
  --color-cta-text: #484848;
  --color-border: #e5e5e5;
  --color-white: #ffffff;

  --ease-out-cubic: cubic-bezier(0, 0, 0.58, 1);
  --dur: 0.6s;
  --max-w: 1440px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip 不会把 overflow-y 算成 auto，避免裁切 header 下拉菜单 */
  overflow-x: clip;
  max-width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,'Helvetica Neue', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Pingfang SC', sans-serif;
}

.site-root {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Placeholder ---------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #6b5b4a 0%, #3d3530 45%, #8a7355 100%);
  position: relative;
  overflow: hidden;
}

.img-placeholder span {
  position: relative;
  z-index: 1;
}

.img-placeholder--banner {
  min-height: 100%;
  background: linear-gradient(115deg, #1a1410 0%, #4a3828 35%, #2a2018 70%, #5c4632 100%);
}

/* ============================================
   HEADER — 124px @ 1440
   ============================================ */
.site-header {
  position: relative;
  z-index: 1000;
  /* 124 = 上12 + logo88 + 下24；菜单到 top banner = 24 */
  height: var(--header-h);
  box-sizing: border-box;
  background: var(--color-dark);
  /*
   * 底金线必须随 --px 缩放。
   * 三角 bottom:-20*px = -(pad 24*px - 金线 4*px)；金线若写死 4px，宽屏必出缝。
   */
  border-bottom: none;
  box-shadow: inset 0 calc(-4 * var(--chrome-px)) 0 var(--color-gold-line);
  overflow: visible;
}

.site-header__inner {
  height: 100%;
  width: 100%;
  margin: 0;
  /* PC: 上12 / 右80 / 下24 / 左80（logo 左边距） */
  padding: calc(12 * var(--chrome-px)) calc(80 * var(--chrome-px)) calc(24 * var(--chrome-px)) calc(80 * var(--chrome-px));
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: calc(24 * var(--chrome-px));
  overflow: visible;
  box-sizing: border-box;
}

.site-header__top {
  display: contents;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  align-self: center;
  transition: opacity var(--transition);
}

.site-logo:hover {
  opacity: 0.85;
}

.site-logo__img {
  display: block;
  width: calc(104 * var(--chrome-px)); /* PC 设计 104×88 */
  height: calc(88 * var(--chrome-px));
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}

.site-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  padding-top: 0;
  overflow: visible;
  position: relative;
}

.site-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Language — 图标与文字：gap 6；字体 Medium 12/18 */
.site-lang__btn {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
  font-weight: 500;
  font-size: calc(12 * var(--chrome-px));
  line-height: calc(18 * var(--chrome-px));
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  word-break: break-word;
  padding: 0;
  transition: color var(--transition);
}

.site-lang__btn:hover,
.site-lang.is-open .site-lang__btn {
  color: var(--color-gold);
}

/* Desktop: 国旗随语言切换（flag_us / flag_cn / flag_mo）；Tablet/Mobile: globe */
.site-lang__flag {
  display: block;
  width: calc(21 * var(--chrome-px));
  height: calc(11 * var(--chrome-px));
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}

.site-lang__globe {
  display: none;
  width: calc(28 * var(--chrome-px));
  height: calc(28 * var(--chrome-px));
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}

.site-lang__label {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

/* PC: English；平板/手机: EN */
.site-lang__label--short {
  display: none;
}

/* PC 语言栏三角：8×6 */
.site-lang__caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: calc(4 * var(--chrome-px)) solid transparent;
  border-right: calc(4 * var(--chrome-px)) solid transparent;
  border-top: calc(6 * var(--chrome-px)) solid currentColor;
  opacity: 0.9;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.site-lang.is-open .site-lang__caret {
  transform: rotate(180deg);
}

.site-lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  padding: 6px 0;
  background: #2a2626;
  border: 1px solid rgba(208, 180, 134, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease-out-cubic), transform 0.2s var(--ease-out-cubic), visibility 0.2s;
}

.site-lang.is-open .site-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-lang__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-align: left;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.site-lang__option:hover {
  background: rgba(208, 180, 134, 0.12);
  color: var(--color-gold);
}

.site-lang__option.is-active {
  color: var(--color-gold);
  background: rgba(208, 180, 134, 0.08);
}

.site-lang__option-flag {
  display: block;
  width: calc(21 * var(--chrome-px));
  height: calc(11 * var(--chrome-px));
  flex-shrink: 0;
  object-fit: contain;
}

.site-lang__option-label {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: calc(44 * var(--chrome-px));
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  position: relative;
}

.site-nav__item {
  position: relative;
  flex-shrink: 0;
}

.site-nav__link {
  font-style: normal;
  font-weight: 500;
  font-size: calc(14 * var(--chrome-px));
  line-height: calc(22 * var(--chrome-px));
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0;
  transition: color var(--dur) var(--ease-out-cubic);
}

.site-nav__item.is-open .site-nav__link,
.site-nav__item.has-children:hover .site-nav__link,
.site-nav__link:hover {
  color: #fff;
}

/* Hover 金线（有子菜单悬停/展开时改用贴底金三角，不再画字下划线） */
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-6 * var(--chrome-px));
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease-out-cubic);
}

.site-nav__item:hover:not(.is-open):not(.has-children) .site-nav__link::after {
  transform: scaleX(1);
}

.site-nav__item.is-open .site-nav__link::after,
.site-nav__item.has-children:hover .site-nav__link::after,
.site-nav__item.has-children:focus-within .site-nav__link::after {
  transform: scaleX(0);
}

.site-nav__dropdown {
  position: absolute;
  /* 紧贴菜单项底部；用 padding-top 做悬停热区，避免中间断层关菜单 */
  top: 100%;
  left: 0;
  min-width: 300px;
  width: max-content;
  max-width: 360px;
  padding-top: calc(24 * var(--chrome-px));
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 130;
  margin-top: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s var(--ease-out-cubic);
}

/* 右侧空间不足时改为靠右对齐，向左展开 */
.site-nav__item.is-dropdown-end > .site-nav__dropdown {
  left: auto;
  right: 0;
}

/* 中文菜单文案更长：收紧间距，避免 PC header 往右溢出 */
html[lang^="zh"] .site-nav {
  gap: calc(28 * var(--chrome-px));
}

html[lang^="zh"] .site-nav__link {
  font-size: calc(13 * var(--chrome-px));
}

/* 仅最外层下拉树保留边框/阴影（人为改过的现状） */
.site-nav__dropdown > .nav-tree {
  background: #fff;
  border: 1px solid #dedede;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* 展开的子菜单不投阴影、不加边框到下方项 */
.site-nav__dropdown .nav-tree .nav-tree {
  box-shadow: none;
  border: none;
}

/* PC header 二级菜单 — SF Pro Display Medium 14/20 #404040 */
.site-nav__dropdown .nav-tree__label,
.site-nav__dropdown .nav-tree--depth-1 .nav-tree__label,
.site-nav__dropdown .nav-tree--depth-2 .nav-tree__label,
.site-nav__dropdown .nav-tree--depth-3 .nav-tree__label,
.site-nav__dropdown .nav-tree--depth-4 .nav-tree__label {
  font-style: normal;
  font-weight: 500;
  font-size: calc(14 * var(--chrome-px));
  line-height: calc(20 * var(--chrome-px));
  color: #404040;
  letter-spacing: 0;
  text-transform: none;
}

/* JS is-open / CSS :hover / :focus-within 均可弹出（F12 coarse 也能用） */
.site-nav__item.is-open > .site-nav__dropdown,
.site-nav__item.has-children:hover > .site-nav__dropdown,
.site-nav__item.has-children:focus-within > .site-nav__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* 金色三角：尖角朝上（▲），底边约贴 header 底金线（还原） */
.site-nav__item.has-children.is-open::before,
.site-nav__item.has-children:hover::before,
.site-nav__item.has-children:focus-within::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(-20 * var(--chrome-px));
  width: 0;
  height: 0;
  border-left: calc(7 * var(--chrome-px)) solid transparent;
  border-right: calc(7 * var(--chrome-px)) solid transparent;
  border-bottom: calc(8 * var(--chrome-px)) solid var(--color-gold-line);
  transform: translateX(-50%);
  z-index: 132;
  pointer-events: none;
}

/* ---------- Infinite nav tree (desktop dropdown + mobile panel) ---------- */
.nav-tree {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.nav-tree__item {
  border-bottom: 1px solid #e5e5e5;
}

.nav-tree__item:last-child {
  border-bottom: none;
}

.nav-tree__row {
  display: flex;
  align-items: stretch;
  min-height: 54px;
}

.nav-tree__label {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #3a3a3a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.nav-tree--depth-1 .nav-tree__label,
.nav-tree--depth-2 .nav-tree__label,
.nav-tree--depth-3 .nav-tree__label,
.nav-tree--depth-4 .nav-tree__label {
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 13px;
  color: #6a6a6a;
  padding: 12px 20px 12px 32px;
}

.nav-tree--depth-2 .nav-tree__label {
  padding-left: 44px;
}

.nav-tree--depth-3 .nav-tree__label {
  padding-left: 56px;
}

.nav-tree--depth-4 .nav-tree__label {
  padding-left: 68px;
}

.nav-tree--depth-1 {
  background: #f6f6f6;
}

.nav-tree--depth-2 {
  background: #f1f1f1;
}

.nav-tree__label.is-active,
.nav-tree--depth-1 .nav-tree__label.is-active,
.nav-tree--depth-2 .nav-tree__label.is-active,
.nav-tree--depth-3 .nav-tree__label.is-active,
.nav-tree--depth-4 .nav-tree__label.is-active {
  color: var(--color-gold);
}

/* 金色悬停：不依赖 (hover:hover) and (pointer:fine)，F12 自适应 coarse 也能用 */
.nav-tree__row:hover .nav-tree__label,
.nav-tree__label:hover,
.nav-tree--depth-0 .nav-tree__row:hover .nav-tree__label,
.nav-tree--depth-1 .nav-tree__row:hover .nav-tree__label,
.nav-tree--depth-2 .nav-tree__row:hover .nav-tree__label,
.nav-tree--depth-3 .nav-tree__row:hover .nav-tree__label,
.nav-tree--depth-4 .nav-tree__row:hover .nav-tree__label,
.site-nav__dropdown .nav-tree__row:hover .nav-tree__label,
.site-nav__dropdown .nav-tree__label:hover {
  color: var(--color-gold);
  -webkit-text-fill-color: var(--color-gold);
}

.nav-tree__toggle:hover {
  background: rgba(208, 180, 134, 0.1);
}

.nav-tree__toggle {
  width: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e5e5e5;
  background: #fff;
  transition: background var(--transition);
}

.nav-tree__toggle-icon {
  display: block;
  width: calc(20 * var(--chrome-px));
  height: calc(20 * var(--chrome-px));
  object-fit: contain;
  pointer-events: none;
}

.nav-tree--depth-1 .nav-tree__toggle {
  background: #f6f6f6;
}

.nav-tree__children {
  border-top: 1px solid #e5e5e5;
}

.nav-tree__children .nav-tree {
  background: #f6f6f6;
}

/* 展开子项之间不要分隔线 */
.nav-tree__children .nav-tree__item {
  border-bottom: none;
}

/* ---------- Mobile / Tablet drawer ---------- */
.site-drawer {
  display: none;
}

body.nav-lock {
  overflow: hidden;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: calc(4 * var(--chrome-px));
  padding: 0;
  width: auto;
  min-width: calc(40 * var(--chrome-px));
  height: auto;
  color: #fff;
  line-height: 1;
}

.menu-toggle__icon {
  display: block;
  width: calc(28 * var(--chrome-px));
  height: calc(28 * var(--chrome-px));
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}

.menu-toggle__label {
  font-size: calc(10 * var(--chrome-px));
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
}

.site-search {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  min-width: 36px;
  padding: 0;
}

.site-search__icon {
  width: 22px;
  height: 22px;
  display: block;
}

.site-search__label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1;
}

/* ============================================
   HERO + overflowing news card
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: var(--hero-h);
  background: var(--color-black);
  overflow-x: clip;
  overflow-y: visible;
}

.hero__stage {
  position: relative;
  width: 100%;
  height: var(--banner-h);
  overflow: hidden;
  background: #1a1410;
}

.hero .swiper,
.hero .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 6s var(--ease-out-cubic);
}

.hero .swiper-slide-active .hero__bg-img {
  transform: scale(1);
}

.hero__bg .img-placeholder--banner {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

/* Cream news card — right aligned, hangs below banner */
.hero__card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--card-w);
  max-width: 100%;
  min-width: 0;
  height: var(--card-h);
  background: var(--color-cream);
  z-index: 20;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

/* PC：整块从右侧滑入（首次进入 / 切换新闻） */
.hero__card.is-sliding {
  animation: cardSlideIn 0.55s var(--ease-out-cubic) both;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__card-body {
  flex: 1;
  /* PC: 上40 / 左52 / 右54；卡片总高 375、底栏 70 不变 */
  padding: calc(40 * var(--chrome-px)) var(--card-pad-r) calc(16 * var(--chrome-px)) var(--card-pad-l);
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.hero__category-row {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--chrome-px));
  height: calc(30 * var(--chrome-px));
  margin-bottom: calc(20 * var(--chrome-px));
  min-width: 0;
  max-width: 100%;
}

/* NEWS — SF Pro Display Bold 20/30，#414141 */
.hero__category {
  font-style: normal;
  font-weight: 700;
  font-size: calc(20 * var(--chrome-px));
  line-height: calc(30 * var(--chrome-px));
  letter-spacing: 0;
  word-break: break-word;
  white-space: nowrap;
  color: #414141;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero__category-line {
  /* PC @1440：横线最大 681，窄屏随卡片收缩，避免撑破视口 */
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  max-width: calc(681 * var(--chrome-px));
  height: 1px;
  background: rgba(65, 65, 65, 0.25);
}

/* News card title — SF Pro Display Semibold 24/32 #000 */
.hero__title {
  font-style: normal;
  font-weight: 600;
  font-size: calc(24 * var(--chrome-px));
  line-height: calc(32 * var(--chrome-px));
  letter-spacing: 0;
  word-break: break-word;
  color: #000000;
  margin-bottom: calc(12 * var(--chrome-px));
  max-width: min(calc(764 * var(--chrome-px)), 100%);
}

/* News card date — SF Pro Display Regular 16/22 #414141 */
.hero__date {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 * var(--chrome-px));
  line-height: calc(22 * var(--chrome-px));
  letter-spacing: 0;
  word-break: break-word;
  color: #414141;
  margin-bottom: calc(20 * var(--chrome-px));
}

.cta-label {
  font-weight: 400;
}

/* Top Banner See Details — Figma: SF Pro Display Regular 18/26, #a48a5c */
.hero__more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-top: auto;
  color: var(--color-see-details);
  -webkit-text-fill-color: var(--color-see-details);
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 * var(--chrome-px));
  line-height: calc(26 * var(--chrome-px));
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
  word-break: break-word;
  transition: gap var(--dur) var(--ease-out-cubic), color var(--transition), -webkit-text-fill-color var(--transition);
}

.hero__more:hover {
  color: var(--color-gold-soft);
  -webkit-text-fill-color: var(--color-gold-soft);
  gap: 16px;
}

/* Design asset: cta_arrow.png 30×12 */
.cta-arrow {
  display: block;
  width: calc(30 * var(--chrome-px));
  height: calc(12 * var(--chrome-px));
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}

.hero__card-footer {
  display: flex;
  align-items: stretch;
  height: var(--btn-h);
  flex-shrink: 0;
}

.hero__nav-btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  /* 左箭头中心与 See Details 的 S 同一竖线（S 在 content left = card-pad-l） */
  padding-left: max(0px, calc(var(--card-pad-l) - var(--nav-btn) / 2));
  box-sizing: border-box;
}

.hero__nav-btn {
  width: var(--nav-btn);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  background: var(--color-cream);
}

.hero__nav-btn-icon {
  display: block;
  width: calc(31.86 * var(--chrome-px));
  height: calc(31.86 * var(--chrome-px));
  object-fit: contain;
}

/* GO TO NEWS PAGE — Figma: SF Pro Display Semibold 20/28, #484848 */
.hero__newsroom {
  margin-left: auto;
  width: var(--btn-w);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-cream-btn);
  color: rgb(72, 72, 72);
  -webkit-text-fill-color: rgb(72, 72, 72);
  font-style: normal;
  font-weight: 600;
  font-size: calc(20 * var(--chrome-px));
  line-height: calc(28 * var(--chrome-px));
  letter-spacing: 0;
  white-space: nowrap;
  word-break: break-word;
  text-transform: uppercase;
  border-radius: 0;
}

.hero__newsroom-chevron {
  display: block;
  width: calc(28 * var(--chrome-px));
  height: calc(28 * var(--chrome-px));
  flex-shrink: 0;
  object-fit: contain;
}

/* ============================================
   CONTENT SECTIONS — Grid List 384h @ 1440
   ============================================ */
.sections {
  /* PC: 新闻卡与下方内容间距 60 */
  padding: var(--news-gap) 0 calc(40 * var(--chrome-px));
  background: #fff;
}

.section-block {
  max-width: calc(1440 * var(--chrome-px));
  margin: 0 auto var(--margin-ud);
  padding: 0 var(--chrome-side-pad);
  display: flex;
  align-items: center; /* 图片与文字水平中线对齐 */
  gap: calc(80 * var(--chrome-px)); /* 图片 ↔ 文字 */
  min-height: calc(384 * var(--chrome-px));
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur) var(--ease-out-cubic), transform var(--dur) var(--ease-out-cubic);
}

.section-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-block--reverse {
  flex-direction: row-reverse;
}

.section-block__media {
  /* PC @1440：图片 640×384 */
  flex: 0 0 calc(640 * var(--chrome-px));
  width: calc(640 * var(--chrome-px));
  height: calc(384 * var(--chrome-px));
  max-width: calc(640 * var(--chrome-px));
  align-self: center;
  overflow: hidden;
  border-radius: 0 0 var(--img-radius) 0;
}

.section-block__media img,
.section-block__media .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-cubic);
}

.section-block:hover .section-block__media img,
.section-block:hover .section-block__media .img-placeholder {
  transform: scale(1.04);
}

.section-block__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: calc(32 * var(--chrome-px)); /* 标题 ↔ 描述 ↔ See Details 均为 32 */
}

/* Content section title — SF Pro Display Semibold 40/48 #3B3B3B */
.section-block__title {
  font-style: normal;
  font-weight: 600;
  font-size: calc(40 * var(--chrome-px));
  line-height: calc(48 * var(--chrome-px));
  letter-spacing: 0;
  color: #3b3b3b;
  margin: 0;
}

/* Content section description — SF Pro Display Regular 16/24 #414141 */
.section-block__desc {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 * var(--chrome-px));
  line-height: calc(24 * var(--chrome-px));
  letter-spacing: 0;
  color: #414141;
  margin: 0;
  max-width: 420px;
}

/* Content See Details — SF Pro Display Regular 18/26 #A48A5C */
.section-block__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: calc(18 * var(--chrome-px));
  line-height: calc(26 * var(--chrome-px));
  letter-spacing: 0;
  color: #a48a5c;
  -webkit-text-fill-color: #a48a5c;
}

/* ============================================
   FOOTER — match design: 3 left-aligned lines
   ============================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: calc(40 * var(--chrome-px)) 0 calc(48 * var(--chrome-px));
}

/* Same content column as .section-block above */
.site-footer__inner {
  /* 与 Press 列表图片左缘对齐：1280 内容区 + side-pad */
  max-width: calc(1280 * var(--px));
  margin: 0 auto;
  padding: 0 var(--side-pad);
  text-align: left;
}

.site-footer__line {
  font-style: normal;
  font-weight: 400;
  font-size: calc(12 * var(--chrome-px));
  line-height: calc(20 * var(--chrome-px));
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.site-footer__properties {
  /* 第一行：SF Pro Display Regular 13/20 #FFFFFF */
  font-style: normal;
  font-weight: 400;
  font-size: calc(13 * var(--chrome-px));
  line-height: calc(20 * var(--chrome-px));
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: calc(12 * var(--chrome-px)); /* 第一行 ↔ 第二行 12 */
}

.site-footer__properties-label {
  margin-right: 0.35em;
}

.site-footer__line a {
  color: inherit;
  transition: color var(--transition);
}

.site-footer__line a:hover {
  color: var(--color-gold);
}

.site-footer__sep {
  display: inline-block;
  margin: 0 0.55em;
  color: inherit;
  opacity: 0.85;
}

.site-footer__disclaimer {
  /* 第二行：SF Pro Display Regular 13/20 #FFFFFF */
  font-style: normal;
  font-weight: 400;
  font-size: calc(13 * var(--chrome-px));
  line-height: calc(20 * var(--chrome-px));
  letter-spacing: 0;
  color: #ffffff;
  max-width: none;
}

/* ============================================
   TABLET — Figma Tablet 800 (responsive)
   Frame 4950: 800×623 | Header 96 | Banner 266
   news_brief: 720×341 flush-right (pad-left 80), hang 261
   Grid: 216h, pad 40, gap 40 | image r=0/0/60/0
   Header: Logo + English + Menu (no Search)
   ============================================ */

/* ============================================
   PRESS PAGE - Hero / Filters / List / Pagination
   ============================================ */
.press {
  background: var(--color-white);
}

.press-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #1a1410;
}

.press-hero .swiper {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
}

.press-hero .swiper-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  box-sizing: content-box;
}

.press-hero .swiper-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
}

.press-hero__bg {
  position: relative;
  width: 100%;
  height: auto;
}

.press-hero__img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.press-hero .img-placeholder--banner,
.press-hero__bg .img-placeholder--banner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: calc(180 * var(--px));
  aspect-ratio: var(--banner-aspect);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Top banner — side arrows */
.hero__banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: calc(48 * var(--px));
  height: calc(48 * var(--px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

.hero__banner-nav:hover {
  opacity: 0.85;
}

.hero__banner-nav--prev {
  left: 0;
}

.hero__banner-nav--next {
  right: 0;
}

.hero__banner-nav-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

/* Top banner — pagination dots: 水平居中，距 banner 底边 12px */
.press-hero .hero__banner-dots.swiper-pagination-bullets,
.press-hero .hero__banner-dots.swiper-pagination-horizontal,
.hero__banner-dots {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 12px;
  width: auto;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transform: translateX(-50%);
}

.press-hero .hero__banner-dots .hero__banner-dot,
.hero__banner-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  margin: 0;
  border-radius: 50%;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.press-hero .hero__banner-dots .hero__banner-dot.is-active,
.hero__banner-dot.is-active {
  background: #ffffff;
}

.press-body {
  max-width: calc(1280 * var(--px));
  margin: 0 auto;
  padding: calc(40 * var(--px)) var(--side-pad) calc(64 * var(--px));
}

.press-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: calc(36 * var(--px));
}  /* Level 1 — sharp rectangle tabs (custom JSON primary) */ .press-l1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(32 * var(--px));
  align-items: center;
  width: 100%;
}

.press-l1--mobile {
  display: none;
}

.press-l1__btn {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: calc(40 * var(--px));
  padding: 0 calc(20 * var(--px));
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background: var(--color-white);
  color: #535662;
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 * var(--px));
  line-height: calc(22 * var(--px));
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.press-l1__btn.is-active {
  background: #191919;
  border-color: #191919;
  color: var(--color-white);
}

.press-l1__btn.is-all {
  font-style: normal;
  font-size: calc(15 * var(--px));
  line-height: calc(22 * var(--px));
}

.press-l1__btn.is-all.is-active {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.press-l1__btn:hover:not(.is-active) {
  border-color: #cfcfcf;
  color: #111111;
}

.press-l1__more {
  position: relative;
}

.press-l1__more-btn {
  display: inline-flex;
  align-items: center;
  gap: calc(6 * var(--px));
}

.press-l1__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.press-l1__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.press-l1__option {
  display: block;
  width: 100%;
  padding: 10px 14px;
  text-align: left;
  font-size: calc(14 * var(--px));
  color: var(--color-text);
  background: var(--color-white);
}

.press-l1__option:hover, .press-l1__option.is-active {
  background: rgba(176, 149, 86, 0.12);
  color: var(--color-gold-active);
}  /* Level 2 — pill buttons bound to selected L1 children */ .press-l2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--px));
  width: 100%;
  margin-top: calc(16 * var(--px));
}

.press-l2__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: calc(34 * var(--px));
  padding: calc(6 * var(--px)) calc(12 * var(--px));
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  background: var(--color-white);
  color: #535662;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 * var(--px));
  line-height: calc(22 * var(--px));
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.press-l2__btn.is-active {
  background: #fef6e8;
  border: 1px solid #cda96e;
  border-radius: calc(20 * var(--px));
  color: #cda96e;
  -webkit-text-fill-color: #cda96e;
  font-weight: 400;
}

.press-l2__btn.is-all.is-active {
  box-sizing: border-box;
  width: auto;
  min-width: 0;
  font-style: normal;
  font-weight: 400;
  font-size: calc(13 * var(--px));
  line-height: calc(20 * var(--px));
  text-align: center;
  color: #cda96e;
  -webkit-text-fill-color: #cda96e;
  background: #fef6e8;
  border: 1px solid #cda96e;
  border-radius: calc(20 * var(--px));
}

.press-l2__btn:hover:not(.is-active) {
  border-color: #cfcfcf;
  color: #333333;
}

.press-search {
  display: none;
  align-items: center;
  gap: calc(10 * var(--px));
  width: 100%;
  max-width: calc(480 * var(--px));
  margin: 0 auto;
  padding: calc(10 * var(--px)) calc(16 * var(--px));
  border: 1px solid #d0d0d0;
  background: var(--color-white);
}

.press-search__icon {
  width: calc(18 * var(--px));
  height: calc(18 * var(--px));
  color: var(--color-text-light);
  flex-shrink: 0;
}

.press-search__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.press-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: calc(14 * var(--px));
  color: var(--color-text);
}

.press-search__input::placeholder {
  color: var(--color-text-light);
}

.press-title {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--px));
  margin: calc(24 * var(--px)) 0 calc(32 * var(--px));
  color: var(--color-text);
}

.press-title__text {
  flex-shrink: 0;
  font-size: calc(28 * var(--px));
  font-weight: 700;
  line-height: 1.3;
}

.press-title__line {
  flex: 0 0 auto;
  width: calc(250 * var(--px));
  min-width: calc(250 * var(--px));
  height: 1px;
  background: #2b2b2a;
  align-self: center;
}

.press-title__tablet {
  display: none;
}

.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.press-item {
  border-bottom: none;
  margin: 0 0 calc(36 * var(--px));
}

.press-item:last-child {
  margin-bottom: 0;
}

.press-item__link {
  display: flex;
  align-items: center;
  gap: calc(32 * var(--px));
  width: var(--row-w);
  max-width: 100%;
  height: var(--thumb-h);
  padding: 0;
  box-sizing: border-box;
  transition: opacity var(--transition);
}

.press-item__link:hover {
  opacity: 0.9;
}

.press-item__media {
  flex: 0 0 var(--thumb-w);
  width: var(--thumb-w);
  height: var(--thumb-h);
  overflow: hidden;
  background: #eee;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.press-item__media img, .press-item__media .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-cubic);
  pointer-events: none;
}

.press-item__link:hover .press-item__media img {
  transform: scale(1.03);
}

.press-item__body {
  flex: 0 0 var(--text-w);
  width: var(--text-w);
  max-width: var(--text-w);
  min-width: 0;
  height: var(--thumb-h);
  min-height: var(--thumb-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 calc(24 * var(--px)) calc(24 * var(--px)) 0;
  box-sizing: border-box;
}

.press-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}

.press-item__title {
  font-style: normal;
  font-weight: 600;
  font-size: calc(24 * var(--px));
  line-height: calc(32 * var(--px));
  color: #3b3b3b;
  margin: 0 0 calc(20 * var(--px));
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-item__title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.press-item__title-link:hover {
  color: inherit;
}

.press-item__date {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 * var(--px));
  line-height: calc(22 * var(--px));
  color: #414141;
  margin: 0 0 calc(32 * var(--px));
}

.press-item__more {
  display: inline-flex;
  align-items: center;
  gap: calc(10 * var(--px));
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 * var(--px));
  line-height: calc(26 * var(--px));
  color: #a48a5c;
  -webkit-text-fill-color: #a48a5c;
  text-decoration: none;
  cursor: pointer;
}

.press-item__more-arrow {
  display: block;
  width: calc(32 * var(--px));
  height: calc(12 * var(--px));
  object-fit: contain;
}

.press-item__label {
  display: none;
  font-size: calc(13 * var(--px));
  color: var(--color-text-light);
  margin: calc(6 * var(--px)) 0 0;
}  /* PC: L-shaped corner at bottom-right of text block */ .press-item__corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(98 * var(--px));
  height: calc(98 * var(--px));
  border-right: 1px solid #2b2b2a;
  border-bottom: 1px solid #2b2b2a;
  pointer-events: none;
}

.press-item__arrow {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(28 * var(--px));
  height: calc(28 * var(--px));
  border: 1px solid #ddd;
  align-items: center;
  justify-content: center;
}

.press-item__arrow img {
  width: calc(14 * var(--px));
  height: calc(14 * var(--px));
  object-fit: contain;
}

.press-empty {
  padding: calc(48 * var(--px)) 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: calc(16 * var(--px));
}

.press-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 * var(--px));
  margin-top: calc(40 * var(--px));
  flex-wrap: wrap;
}  /* Page number — perfect circle */ .press-pagination__btn {
  width: calc(44 * var(--px));
  height: calc(44 * var(--px));
  min-width: calc(44 * var(--px));
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  font-size: calc(18 * var(--px));
  font-weight: 500;
  background: #e8e8e8;
  color: #333333;
  -webkit-text-fill-color: #333333;
  transition: background var(--transition), color var(--transition);
}

.press-pagination__btn.is-active {
  background: #bf9a5e;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.press-pagination__btn.is-ellipsis {
  width: auto;
  min-width: calc(24 * var(--px));
  background: transparent;
  color: #333333;
  -webkit-text-fill-color: #333333;
  letter-spacing: 0.12em;
  cursor: default;
}  /* Prev / next — chevron images */ .press-pagination__nav {
  width: calc(32 * var(--px));
  height: calc(32 * var(--px));
  min-width: calc(32 * var(--px));
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #555555;
  transition: opacity var(--transition);
}

.press-pagination__nav-icon {
  display: block;
  width: calc(32 * var(--px));
  height: calc(32 * var(--px));
  object-fit: contain;
}

.press-pagination__nav:hover:not(:disabled) {
  opacity: 0.75;
}

.press-pagination__nav:disabled {
  opacity: 0.3;
  cursor: default;
}  

/* ============================================
   TABLET chrome — sandschina3 @1439（仅 header/footer）
   ============================================ */
@media (max-width: 1439px) {
  :root {
    --chrome-px: min(1px, calc(100vw / 800));
    --header-h: calc(106 * var(--chrome-px));
    --chrome-side-pad: calc(40 * var(--chrome-px));
  }

  .site-header {
    height: var(--header-h);
    overflow: visible;
  }

  .site-header__inner {
    max-width: none;
    padding: calc(12 * var(--chrome-px)) calc(16 * var(--chrome-px)) calc(12 * var(--chrome-px)) calc(20 * var(--chrome-px));
    align-items: center;
  }

  .site-header__right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: calc(20 * var(--chrome-px));
    padding-top: 0;
    flex: 0 0 auto;
  }

  /* Tablet @800: logo fits 106 header */
  .site-logo__img {
    width: calc(80 * var(--chrome-px));
    height: calc(68 * var(--chrome-px));
  }

  /* Tablet: Language + Menu aligned (icon above label) */
  .site-search {
    display: none !important;
  }

  .site-lang {
    display: inline-flex;
    align-items: stretch;
  }

  .site-lang__btn {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(2 * var(--chrome-px)); /* 图标 ↔ 文字 */
    padding: 0;
    min-width: calc(40 * var(--chrome-px));
    color: #fff;
    /* 图标下文字：SF Pro Display Medium 14/20 */
    font-style: normal;
    font-weight: 500;
    font-size: calc(14 * var(--chrome-px));
    line-height: calc(20 * var(--chrome-px));
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    word-break: break-word;
  }

  .site-lang__flag {
    display: none;
  }

  .site-lang__globe {
    display: block;
    width: calc(28 * var(--chrome-px));
    height: calc(28 * var(--chrome-px));
    flex-shrink: 0;
  }

  .site-lang__label--full {
    display: none;
  }

  .site-lang__label--short {
    display: block;
  }

  .site-lang__label {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-align: center;
    white-space: nowrap;
  }

  .site-lang__caret {
    display: none;
  }

  .site-lang__menu {
    top: calc(100% + 8px);
    right: 0;
    min-width: 156px;
  }

  .site-nav--desktop {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
    z-index: 130;
    gap: calc(2 * var(--chrome-px)); /* 图标 ↔ 文字 */
  }

  .menu-toggle__icon {
    width: calc(28 * var(--chrome-px));
    height: calc(28 * var(--chrome-px));
  }

  .menu-toggle__label {
    font-style: normal;
    font-weight: 500;
    font-size: calc(14 * var(--chrome-px));
    line-height: calc(20 * var(--chrome-px));
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    word-break: break-word;
  }

  /* Full-screen menu panel under header (covers entire page) */
  .site-drawer {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-top: none;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out-cubic), transform 0.25s var(--ease-out-cubic), visibility 0.25s;
  }

  .site-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-drawer__back {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 56px;
    padding: 0 24px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .site-drawer__back-icon {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    align-self: center;
  }

  .site-drawer__back-label {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    letter-spacing: inherit;
    font-size: inherit;
    font-weight: inherit;
  }

  .site-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    min-height: 100%;
  }

  .site-drawer__item {
    border-bottom: 1px solid #e8e8e8;
  }

  .site-drawer__row {
    display: flex;
    align-items: stretch;
    min-height: 64px;
  }

  .site-drawer__label {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 18px 24px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-drawer__toggle {
    width: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e8e8e8;
    color: #444;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    background: transparent;
    border-top: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
  }

  .site-drawer__toggle-icon {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .site-drawer__tree {
    width: 100%;
    min-height: 100%;
  }

  .site-drawer__tree .nav-tree__row {
    min-height: 64px;
  }

  .site-drawer__tree .nav-tree__toggle {
    width: 64px;
  }

  .site-header.is-menu-open {
    z-index: 210;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body.nav-lock {
    overflow: hidden;
    touch-action: none;
  }

.site-footer {
    padding: calc(20 * var(--chrome-px)) 0 calc(40 * var(--chrome-px));
  }

.site-footer__inner {
    /* 平板 @800：左右 padding 40 */
    padding: 0 calc(40 * var(--chrome-px));
  }

.site-footer__properties {
    /* 第一行：SF Pro Display Regular 14/22 #FFFFFF；与第二行间距 12 */
    font-style: normal;
    font-weight: 400;
    font-size: calc(14 * var(--chrome-px));
    line-height: calc(22 * var(--chrome-px));
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: calc(12 * var(--chrome-px));
  }

.site-footer__disclaimer {
    /* 第二行：SF Pro Display Regular 14/22 #FFFFFF */
    font-style: normal;
    font-weight: 400;
    font-size: calc(14 * var(--chrome-px));
    line-height: calc(22 * var(--chrome-px));
    letter-spacing: 0;
    color: #ffffff;
  }
}

/* ============================================
   PRESS ≤1279 — 800 内容稿；≥1280 仍为 PC 左图右字
   ============================================ */
@media (max-width: 1279px) {
/* —— Press middle (do not edit header/footer above) —— */

:root {
    /* Press content — 800 (independent of header/footer) */
    --dw: 800;
    --px: min(1px, calc(100vw / 800));
    --banner-aspect: 800 / 280;
    --banner-h: auto;
    --side-pad: calc(40 * var(--px));
    --gutter: calc(24 * var(--px));
    --thumb-w: calc(720 * var(--px));
    --thumb-h: calc(320 * var(--px));
  }

/* —— Press middle (header/footer untouched) —— */

  .hero__banner-nav {
    width: 28px;
    height: 28px;
  }

  .hero__banner-nav-icon {
    width: 28px;
    height: 28px;
  }

  .hero__banner-nav--prev {
    left: 0;
  }

  .hero__banner-nav--next {
    right: 0;
  }

  .hero__banner-dots,
  .press-hero .hero__banner-dots.swiper-pagination-bullets,
  .press-hero .hero__banner-dots.swiper-pagination-horizontal {
    left: 50%;
    top: auto;
    bottom: 12px;
    transform: translateX(-50%);
    gap: 10px;
  }

.press-body {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: calc(28 * var(--px)) var(--side-pad) calc(48 * var(--px));
  }

.press-filters {
    align-items: stretch;
    margin-bottom: calc(20 * var(--px));
  }

.press-l1--desktop {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: calc(20 * var(--px));
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* top/right only — left flush so ALL sits 40 from viewport */
    padding: 1px 1px calc(2 * var(--px)) 0;
  }

.press-l1--desktop::-webkit-scrollbar {
    display: none;
  }

.press-l1--mobile {
    display: none !important;
  }

.press-l1__btn {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    height: calc(40 * var(--px));
    min-height: calc(40 * var(--px));
    padding: 0 calc(20 * var(--px));
    border: 1px solid #d0d0d0;
    border-radius: 0;
    background: var(--color-white);
    color: #333333;
    font-style: normal;
    font-weight: 400;
    font-size: calc(15 * var(--px));
    line-height: calc(22 * var(--px));
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

.press-l1__btn.is-all {
    font-style: normal;
    font-weight: 600;
    font-size: calc(16 * var(--px));
    line-height: calc(24 * var(--px));
  }

.press-l1__btn.is-active {
    background: #2b2b2a;
    border-color: #2b2b2a;
    color: #fff;
  }

.press-l1__btn.is-all.is-active {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: #191919;
    border-color: #191919;
  }

.press-l2 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: calc(12 * var(--px));
    width: 100%;
    margin-top: calc(20 * var(--px));
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: calc(2 * var(--px));
  }

.press-l2::-webkit-scrollbar {
    display: none;
  }

.press-l2__btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: calc(34 * var(--px));
    padding: calc(7 * var(--px)) calc(18 * var(--px));
    font-size: calc(14 * var(--px));
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    color: #666666;
    background: var(--color-white);
    white-space: nowrap;
  }

.press-l2__btn.is-active {
    font-style: normal;
    font-weight: 400;
    font-size: calc(14 * var(--px));
    line-height: calc(22 * var(--px));
    text-align: center;
    color: #cda96e;
    -webkit-text-fill-color: #cda96e;
    background: #fef6e8;
    border: 1px solid #cda96e;
    border-radius: calc(20 * var(--px));
  }

/* Design: no keyword search on tablet */

.press-search {
    display: none !important;
  }

.press-title__desktop {
    display: inline;
  }

.press-title__tablet {
    display: none;
  }

.press-title {
    display: flex;
    align-items: center;
    gap: calc(16 * var(--px));
    margin: 0 0 calc(24 * var(--px));
  }

.press-title__text {
    flex-shrink: 0;
    display: inline;
    font-size: calc(28 * var(--px));
    font-weight: 700;
    line-height: 1.3;
    color: #222222;
  }

.press-title__line {
    display: block;
    flex: 0 0 auto;
    width: calc(200 * var(--px));
    min-width: calc(200 * var(--px));
    height: 1px;
    background: #2b2b2a;
    align-self: center;
  }

.press-list {
    border-top: none;
  }

.press-item {
    margin: 0;
    border-bottom: none;
    padding: calc(24 * var(--px)) 0;
  }

.press-item:last-child {
    margin-bottom: 0;
  }

.press-item__link {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
    gap: calc(20 * var(--px));
    padding: 0;
  }

.press-item__media {
    flex: none;
    width: calc(720 * var(--px));
    max-width: 100%;
    height: auto;
  }

.press-item__media img,
  .press-item__media .img-placeholder {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

.press-item__body {
    box-sizing: border-box;
    flex: none;
    width: 100%;
    max-width: none;
    height: auto;
    /* Design 164; grows when title wraps */
    min-height: calc(164 * var(--px));
    padding: 0;
    padding-bottom: calc(20 * var(--px));
    position: relative;
  }

.press-item__content {
    max-width: none;
    width: 100%;
    padding-right: calc(56 * var(--px));
  }

.press-item__title {
    font-style: normal;
    font-weight: 600;
    font-size: calc(24 * var(--px));
    line-height: calc(32 * var(--px));
    color: #3b3b3b;
    -webkit-line-clamp: 3;
    margin: 0 0 calc(12 * var(--px));
  }

.press-item__date {
    margin: 0 0 calc(20 * var(--px));
    font-style: normal;
    font-weight: 400;
    font-size: calc(15 * var(--px));
    line-height: calc(22 * var(--px));
    color: #414141;
  }

.press-item__more {
    display: inline-flex !important;
    align-items: center;
    gap: calc(8 * var(--px));
    font-style: normal;
    font-weight: 400;
    font-size: calc(16 * var(--px));
    line-height: calc(26 * var(--px));
    color: #a48a5c;
    -webkit-text-fill-color: #a48a5c;
  }

.press-item__more-arrow {
    display: block;
    width: calc(32 * var(--px));
    height: calc(12 * var(--px));
    object-fit: contain;
  }

.press-item__label {
    display: none !important;
  }

.press-item__corner {
    display: block !important;
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(48 * var(--px));
    height: calc(48 * var(--px));
    border-right: 1px solid #2b2b2a;
    border-bottom: 1px solid #2b2b2a;
    pointer-events: none;
  }

.press-item__arrow {
    display: none !important;
  }

.press-pagination {
    margin-top: calc(32 * var(--px));
    gap: calc(8 * var(--px));
  }

.press-pagination__btn {
    width: calc(44 * var(--px));
    height: calc(44 * var(--px));
    min-width: calc(44 * var(--px));
    background: #f2f2f2;
    border-radius: calc(30 * var(--px));
    font-style: normal;
    font-weight: 600;
    font-size: calc(18 * var(--px));
    line-height: calc(24 * var(--px));
    color: #333333;
    -webkit-text-fill-color: #333333;
  }

.press-pagination__btn.is-active {
    background: #bf9a5e;
    border-radius: calc(30 * var(--px));
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
  }
}

/* ============================================
   MOBILE — header/footer = sandschina3 @799; press = 375
   ============================================ */
@media (max-width: 799px) {
  :root {
    --chrome-px: min(1px, calc(100vw / 375));
    --header-h: calc(106 * var(--chrome-px));
    --chrome-side-pad: calc(20 * var(--chrome-px));
  }

  .site-header {
    height: var(--header-h);
    overflow: visible;
  }

  .site-header__inner {
    max-width: none;
    padding: calc(12 * var(--chrome-px)) var(--chrome-side-pad) calc(16 * var(--chrome-px));
    align-items: center;
  }

  .site-header__right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: calc(18 * var(--chrome-px));
    padding-top: 0;
    flex: 0 0 auto;
  }

  /* Mobile @375: logo ~86×73（贴近设计稿，适配 header 106） */
  .site-logo__img {
    width: calc(86 * var(--chrome-px));
    height: calc(73 * var(--chrome-px));
  }

  /* Mobile: Language + Menu horizontally aligned */
  .site-lang {
    display: inline-flex;
    align-items: stretch;
  }

  .site-lang__btn {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(2 * var(--chrome-px)); /* 图标 ↔ 文字 */
    padding: 0;
    min-width: calc(40 * var(--chrome-px));
    color: #fff;
    /* 图标下文字：SF Pro Display Medium 14/20 */
    font-style: normal;
    font-weight: 500;
    font-size: calc(14 * var(--chrome-px));
    line-height: calc(20 * var(--chrome-px));
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    word-break: break-word;
  }

  .site-lang__flag {
    display: none;
  }

  .site-lang__globe {
    display: block;
    width: calc(28 * var(--chrome-px));
    height: calc(28 * var(--chrome-px));
    flex-shrink: 0;
  }

  /* 移动端语言栏：显示 English（设计稿），不用 EN */
  .site-lang__label--full {
    display: block;
  }

  .site-lang__label--short {
    display: none;
  }

  .site-lang__label {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-align: center;
    white-space: nowrap;
  }

  .site-lang__caret {
    display: none;
  }

  .site-search {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
    gap: calc(2 * var(--chrome-px)); /* 图标 ↔ 文字 */
  }

  .menu-toggle__icon {
    width: calc(28 * var(--chrome-px));
    height: calc(28 * var(--chrome-px));
  }

  .menu-toggle__label {
    font-style: normal;
    font-weight: 500;
    font-size: calc(14 * var(--chrome-px));
    line-height: calc(20 * var(--chrome-px));
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    word-break: break-word;
  }

  .site-nav--desktop {
    display: none !important;
  }

  /* Drawer nav-tree: override desktop dropdown styles */
  .site-drawer__tree .nav-tree__row {
    min-height: calc(64 * var(--chrome-px));
  }

  .site-drawer__tree .nav-tree__label,
  .site-drawer__tree .nav-tree--depth-1 .nav-tree__label,
  .site-drawer__tree .nav-tree--depth-2 .nav-tree__label,
  .site-drawer__tree .nav-tree--depth-3 .nav-tree__label,
  .site-drawer__tree .nav-tree--depth-4 .nav-tree__label {
    padding: calc(18 * var(--chrome-px)) calc(24 * var(--chrome-px));
    font-size: calc(14 * var(--chrome-px));
    line-height: calc(20 * var(--chrome-px));
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
  }

  .site-drawer__tree .nav-tree--depth-1 .nav-tree__label {
    padding-left: calc(36 * var(--chrome-px));
    text-transform: none;
    letter-spacing: 0.01em;
    color: #6a6a6a;
  }

  .site-drawer__tree .nav-tree--depth-2 .nav-tree__label {
    padding-left: calc(48 * var(--chrome-px));
  }

  .site-drawer__tree .nav-tree--depth-3 .nav-tree__label {
    padding-left: calc(60 * var(--chrome-px));
  }

  .site-drawer__tree .nav-tree--depth-4 .nav-tree__label {
    padding-left: calc(72 * var(--chrome-px));
  }

  .site-drawer__tree .nav-tree__toggle {
    width: calc(64 * var(--chrome-px));
    border-left-color: #e8e8e8;
  }

  .site-drawer__tree .nav-tree__toggle-icon {
    width: calc(20 * var(--chrome-px));
    height: calc(20 * var(--chrome-px));
  }

.site-footer {
    /* 第一行距上 24，第二行距下 40 */
    padding: calc(24 * var(--chrome-px)) 0 calc(40 * var(--chrome-px));
  }

.site-footer__inner {
    padding: 0 var(--chrome-side-pad);
  }

.site-footer__line {
    font-size: calc(11 * var(--chrome-px));
    line-height: calc(18 * var(--chrome-px));
  }

/* 第一行：SF Pro Display Regular 13/20 #FFFFFF */

.site-footer__properties {
    font-style: normal;
    font-weight: 400;
    font-size: calc(13 * var(--chrome-px));
    line-height: calc(20 * var(--chrome-px));
    letter-spacing: 0;
    color: #ffffff;
  }

/* 第二行：SF Pro Display Regular 13/20 #FFFFFF */

.site-footer__disclaimer {
    font-style: normal;
    font-weight: 400;
    font-size: calc(13 * var(--chrome-px));
    line-height: calc(20 * var(--chrome-px));
    letter-spacing: 0;
    color: #ffffff;
  }

/* —— Press middle (do not edit header/footer above) —— */

:root {
    /* Press content — 375 (independent of header/footer) */
    --dw: 375;
    --px: min(1px, calc(100vw / 375));
    --banner-aspect: 375 / 180;
    --banner-h: auto;
    --side-pad: calc(20 * var(--px));
    --gutter: calc(12 * var(--px));
    --thumb-w: 100%;
    --thumb-h: auto;
  }

  .hero__banner-nav {
    width: 28px;
    height: 28px;
  }

  .hero__banner-nav-icon {
    width: 28px;
    height: 28px;
  }

  .hero__banner-nav--prev {
    left: 0;
  }

  .hero__banner-nav--next {
    right: 0;
  }

  .hero__banner-dots,
  .press-hero .hero__banner-dots.swiper-pagination-bullets,
  .press-hero .hero__banner-dots.swiper-pagination-horizontal {
    left: 50%;
    top: auto;
    bottom: 12px;
    transform: translateX(-50%);
    gap: 8px;
  }

  .press-hero .hero__banner-dots .hero__banner-dot,
  .hero__banner-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
  }

.press-body {
  padding: calc(20 * var(--px)) var(--side-pad) calc(40 * var(--px));
}

.press-filters {
  align-items: stretch;
  margin-bottom: calc(20 * var(--px));
}

.press-l1--desktop {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: calc(8 * var(--px));
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* keep first/last square borders from being clipped */
  padding: 1px 1px calc(2 * var(--px));
}

.press-l1--desktop::-webkit-scrollbar {
  display: none;
}

.press-l1--mobile {
  display: none !important;
}

.press-l1__btn {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: calc(36 * var(--px));
  min-height: calc(36 * var(--px));
  padding: 0 calc(16 * var(--px));
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background: var(--color-white);
  color: #535662;
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 * var(--px));
  line-height: calc(22 * var(--px));
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.press-l1__btn.is-all {
  font-style: normal;
  font-weight: 600;
  font-size: calc(15 * var(--px));
  line-height: calc(22 * var(--px));
}

.press-l1__btn.is-all.is-active {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.press-l2 {
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: calc(8 * var(--px));
  margin-top: calc(10 * var(--px));
  padding-bottom: calc(2 * var(--px));
}

.press-l2::-webkit-scrollbar {
  display: none;
}

.press-l2__btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: calc(30 * var(--px));
  padding: calc(6 * var(--px)) calc(14 * var(--px));
  font-size: calc(13 * var(--px));
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  color: #333333;
  background: var(--color-white);
  white-space: nowrap;
}

.press-search {
  display: none;
}

.press-title__desktop {
  display: inline;
}

.press-title__tablet {
  display: none;
}

.press-title {
  display: block;
  margin: 0 0 calc(16 * var(--px));
  gap: 0;
}

.press-title__text {
  display: block;
  font-size: calc(20 * var(--px));
  font-weight: 700;
  line-height: 1.35;
  color: #222222;
}

.press-title__line {
  display: none !important;
}

.press-list {
  border-top: none;
}

.press-item {
  margin: 0;
  border-bottom: none;
  padding: calc(20 * var(--px)) 0;
}

.press-item:last-child {
  margin-bottom: 0;
}

.press-item__link {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: auto;
  gap: calc(12 * var(--px));
  padding: 0;
}

.press-item__media {
  flex: none;
  width: 100%;
  height: auto;
}

.press-item__body {
  box-sizing: border-box;
  flex: none;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  padding: 0;
  padding-bottom: calc(20 * var(--px));
  position: relative;
}

.press-item__content {
  max-width: none;
  width: 100%;
  padding-right: 0;
}

.press-item__title {
  font-style: normal;
  font-weight: 600;
  font-size: calc(20 * var(--px));
  line-height: calc(28 * var(--px));
  color: #3b3b3b;
  -webkit-line-clamp: 4;
  margin: 0 0 calc(12 * var(--px));
  /* Fill line width; keep English words whole */
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.press-item__date {
  margin: 0 0 calc(16 * var(--px));
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 * var(--px));
  line-height: calc(22 * var(--px));
  color: #414141;
}

.press-item__more {
  display: inline-flex !important;
  align-items: center;
  gap: calc(8 * var(--px));
  max-width: 100%;
  padding-right: calc(56 * var(--px));
  box-sizing: border-box;
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 * var(--px));
  line-height: calc(26 * var(--px));
  color: #a48a5c;
  -webkit-text-fill-color: #a48a5c;
}

.press-item__more-arrow {
  display: block;
  width: calc(32 * var(--px));
  height: calc(12 * var(--px));
  object-fit: contain;
}

.press-item__label {
  display: none !important;
}

.press-item__corner {
  display: block !important;
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(48 * var(--px));
  height: calc(48 * var(--px));
  border-right: 1px solid #2b2b2a;
  border-bottom: 1px solid #2b2b2a;
  pointer-events: none;
}

.press-item__arrow {
  display: none !important;
}

.press-pagination {
  margin-top: calc(28 * var(--px));
  gap: calc(6 * var(--px));
}

.press-pagination__btn {
  box-sizing: border-box;
  width: calc(32 * var(--px));
  height: calc(32 * var(--px));
  min-width: calc(32 * var(--px));
  padding: 0;
  background: #f2f2f2;
  border-radius: calc(30 * var(--px));
  font-size: calc(16 * var(--px));
  color: #333333;
  -webkit-text-fill-color: #333333;
}

.press-pagination__btn.is-active {
  box-sizing: border-box;
  width: calc(32 * var(--px));
  height: calc(32 * var(--px));
  min-width: calc(32 * var(--px));
  padding: 0;
  background: #bf9a5e;
  border-radius: calc(30 * var(--px));
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.press-pagination__nav {
  width: calc(28 * var(--px));
  height: calc(28 * var(--px));
  min-width: calc(28 * var(--px));
}

.press-pagination__nav-icon {
  width: calc(24 * var(--px));
  height: calc(24 * var(--px));
}
}
