:root {
  --news-shell: 85.4167vw;
  --news-brand: #f2c81e;
  --news-text: #333333;
  --news-subtext: #666666;
  --news-muted: #dddddd;
  --news-soft: #f5f5f7;
  --news-soft-2: #f9f8f8;
}

.news-body {
  min-width: 320px;
  color: var(--news-text);
  font-family: var(--family);
  background: #ffffff;
}

.news-page {
  position: relative;
  overflow: clip;
}

@media (min-width: 769px) {
  :root {
    --news-focus-module-scale: 0.92;
    --news-focus-safe-pad: clamp(140px, 9vw, 180px);
  }

  .news-body {
    overflow-x: hidden;
  }

  .news-page {
    width: 100vw;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    transform-origin: top center;
  }

  .news-shell {
    width: min(calc(var(--news-shell) * var(--news-focus-module-scale)),
        calc(100% - (2 * var(--news-focus-safe-pad))));
  }
}

.news-shell {
  width: min(var(--news-shell), calc(100% - 2.083vw));
  margin: 0 auto;
}

.news-hero {
  padding: 9.271vw 0 0;
  background: #ffffff;
}

.news-hero--motion .news-hero__title,
.news-hero--motion .news-feature__media,
.news-hero--motion .news-feature__copy {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
}

.news-hero--motion .news-hero__title {
  transform: translate3d(0, 34px, 0);
}

.news-hero--motion .news-feature__media,
.news-hero--motion .news-feature__copy {
  transform: translate3d(0, 52px, 0);
}

.news-hero--motion.news-hero--in .news-hero__title,
.news-hero--motion.news-hero--in .news-feature__media,
.news-hero--motion.news-hero--in .news-feature__copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.news-hero--motion.news-hero--in .news-feature__media {
  transition-delay: 0.12s;
}

.news-hero--motion.news-hero--in .news-feature__copy {
  transition-delay: 0.24s;
}

.news-hero__title {
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

.news-feature {
  display: grid;
  grid-template-columns: 43.229vw 34.635vw;
  gap: 7.552vw;
  align-items: start;
  margin-top: 4.583vw;
}

.news-feature__media {
  position: relative;
  display: block;
  height: 26.042vw;
  overflow: hidden;
  border-radius: 2.083vw;
  background: var(--news-soft);
}

.news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 焦点轮播左右切换箭头（包住媒体，定位随媒体，各宽度稳） */
.news-feature__media-wrap {
  position: relative;
}

.news-feature__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.125vw;
  height: 3.125vw;
  min-width: 36px;
  min-height: 36px;
  border-radius: 999px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0.7;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.news-feature__nav:hover {
  background: rgba(0, 0, 0, 0.16);
  opacity: 1;
}

/* 透明无底，仅白色箭头 + 柔和投影：任意配图上可见但不扎眼 */
.news-feature__nav img {
  width: 1.25vw;
  height: 1.25vw;
  min-width: 18px;
  min-height: 18px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.news-feature__nav--prev {
  left: 1.042vw;
}

.news-feature__nav--next {
  right: 1.042vw;
}

.news-feature__arrow {
  position: absolute;
  right: 1.563vw;
  bottom: 1.563vw;
  width: 4.167vw;
  height: 4.167vw;
  border-radius: 999px;
  background: var(--news-brand);
  box-shadow: 0 0.521vw 1.563vw rgba(242, 200, 30, 0.25);
}

.news-feature__arrow::before,
.news-feature__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #333333;
  transform-origin: center;
}

.news-feature__arrow::before {
  width: 1.25vw;
  height: 0.104vw;
  margin-left: -0.469vw;
  margin-top: -0.052vw;
}

.news-feature__arrow::after {
  width: 0.521vw;
  height: 0.521vw;
  margin-left: 0.104vw;
  margin-top: -0.26vw;
  border-top: 0.104vw solid #333333;
  border-right: 0.104vw solid #333333;
  background: transparent;
  transform: rotate(45deg);
}

.news-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin-top: 1.51vw;
}

.news-feature__meta,
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25vw;
  width: 100%;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.208vw;
  height: 1.875vw;
  padding: 0 0.885vw;
  border-radius: 999px;
  white-space: nowrap;
}

.news-pill--accent {
  color: #ffb800;
  background: rgba(255, 184, 0, 0.1);
}

.news-feature__date,
.news-card__date {
  color: var(--news-muted);
  line-height: 14px;
  white-space: nowrap;
}

.news-feature__date {
  letter-spacing: 0.055vw;
}

.news-feature__text {
  display: flex;
  flex-direction: column;
  gap: 1.771vw;
  margin-top: 1.563vw;
  width: 34.635vw;
  max-width: 100%;
}

.news-feature__text h2 {
  margin: 0;
  line-height: 1.2;
  white-space: normal;
}

.news-feature__text p {
  width: 100%;
  margin: 0;
  color: var(--news-subtext);
  line-height: normal;
}

.news-feature__dots {
  display: flex;
  align-items: center;
  gap: 0.521vw;
  margin-top: 11.458vw;
}

.news-feature__dot {
  width: 0.417vw;
  height: 0.417vw;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--news-muted);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.news-feature__dot--active {
  width: 4.688vw;
  background: var(--news-brand);
}

.news-filter {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.667vw;
  margin-top: 5.781vw;
}

.news-filter__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.563vw;
}

.news-filter__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.604vw;
  padding: 0 1.458vw;
  border: 0;
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.4);
  background: var(--news-soft-2);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.news-filter__tab--active {
  color: #ffffff;
  background: var(--news-brand);
}

.news-filter__tools {
  display: flex;
  align-items: flex-start;
  gap: 2.135vw;
}

.news-select {
  position: relative;
  width: 14.583vw;
}

.news-select__trigger {
  width: 100%;
  height: 2.708vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.99vw;
  border: 0.052vw solid var(--news-brand);
  border-radius: 999px;
  color: var(--news-text);
  background: #ffffff;
  cursor: pointer;
}

.news-select__chevron {
  position: relative;
  width: 0.938vw;
  height: 0.938vw;
  flex: 0 0 0.938vw;
}

.news-select__chevron::before {
  content: "";
  position: absolute;
  top: 0.208vw;
  left: 0.208vw;
  width: 0.417vw;
  height: 0.417vw;
  border-right: 0.078vw solid #999999;
  border-bottom: 0.078vw solid #999999;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.news-select--open .news-select__chevron::before {
  transform: rotate(-135deg);
  top: 0.365vw;
}

.news-select__menu {
  position: absolute;
  top: 2.917vw;
  left: 0;
  right: 0;
  z-index: 5;
  display: none;
  overflow: hidden;
  border-radius: 0.625vw;
  background: #ffffff;
  box-shadow: 0 0.938vw 2.083vw rgba(0, 0, 0, 0.08);
}

.news-select--open .news-select__menu {
  display: block;
}

.news-select__option {
  width: 100%;
  height: 2.083vw;
  padding: 0 0.833vw;
  border: 0;
  text-align: left;
  color: var(--news-text);
  background: #ffffff;
  cursor: pointer;
}

.news-select__option--active {
  color: #ffffff;
  background: var(--news-brand);
}

.news-search {
  width: 19.583vw;
  height: 2.708vw;
  display: flex;
  align-items: center;
  gap: 0.729vw;
  padding: 0 1.042vw;
  border: 0.052vw solid var(--news-muted);
  border-radius: 5.156vw;
  background: #ffffff;
}

.news-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  color: #999999;
  background: transparent;
}

.news-search__input::placeholder {
  color: #999999;
}

.news-search__input:focus {
  outline: none;
}

.news-search__icon {
  position: relative;
  width: 1.146vw;
  height: 1.146vw;
  flex: 0 0 1.146vw;
}

.news-search__icon::before,
.news-search__icon::after {
  content: "";
  position: absolute;
}

.news-search__icon::before {
  top: 0.104vw;
  left: 0.104vw;
  width: 0.573vw;
  height: 0.573vw;
  border: 0.104vw solid #999999;
  border-radius: 50%;
}

.news-search__icon::after {
  right: 0.104vw;
  bottom: 0.208vw;
  width: 0.365vw;
  height: 0.104vw;
  background: #999999;
  transform: rotate(45deg);
  transform-origin: center;
}

.news-list {
  padding: 2.083vw 0 7.5vw;
  background: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.646vw;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 31.25vw;
  cursor: pointer;
  outline: none;
}

.news-card:focus-visible .news-card__media {
  box-shadow: 0 0 0 0.104vw var(--news-brand);
}

.news-card__media {
  display: block;
  overflow: hidden;
  border-radius: 1.563vw;
  background: var(--news-soft);
}

.news-card__media img {
  width: 100%;
  height: 16.302vw;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.02);
}

.news-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1.042vw;
  padding-top: 1.771vw;
}

.news-card__copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.833vw;
}

.news-card__copy h3 {
  margin: 0;
  line-height: 1.23;
}

.news-card__copy p {
  margin: 0;
  color: var(--news-subtext);
  line-height: 1.54;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.469vw;
  margin-top: 1.042vw;
  color: var(--news-text);
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.news-card__link::after {
  content: "";
  width: 1.042vw;
  height: 1.042vw;
  background: url("/img/arrow-right.svg") center / 12px 12px no-repeat;
  flex: 0 0 1.042vw;
  transition: filter 0.25s ease;
}

.news-card__link:hover,
.news-card__link:focus-visible {
  color: var(--news-brand);
}

.news-card__link:hover::after,
.news-card__link:focus-visible::after {
  filter: brightness(0) saturate(100%) invert(84%) sepia(63%) saturate(1047%) hue-rotate(357deg) brightness(97%) contrast(95%);
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.563vw;
  margin-top: 4.063vw;
}

.news-pagination__item {
  width: 2.917vw;
  height: 2.917vw;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--news-text);
  background: var(--news-soft);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.news-pagination__item:hover,
.news-pagination__item:focus-visible {
  background: var(--news-brand);
  color: #ffffff;
}

.news-pagination__item--active {
  color: #ffffff;
  background: var(--news-brand);
}

@media (max-width: 1440px) {
  .news-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.333vw;
  }

  .news-feature__copy {
    gap: 0;
  }

  .news-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .news-filter__tools {
    justify-content: flex-end;
  }

  .news-grid {
    gap: 2.5vw 1.667vw;
  }
}

@media (max-width: 1024px) {
  .news-hero {
    padding-top: 7.813vw;
  }

  .news-feature {
    grid-template-columns: 1fr;
    gap: 2.292vw;
  }

  .news-feature__media {
    height: 21.875vw;
  }

  .news-feature__copy {
    gap: 0;
    padding-top: 0;
  }

  .news-feature__dots {
    margin-top: 2.917vw;
  }

  .news-filter__tools {
    width: 100%;
    justify-content: space-between;
  }

  .news-select,
  .news-search {
    width: calc(50% - 0.625vw);
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .news-hero {
    padding-top: 120px;
  }

  .news-feature__media {
    height: 280px;
  }

  .news-feature__copy {
    gap: 0;
  }

  .news-feature__dots {
    gap: 8px;
    margin-top: 36px;
  }

  .news-feature__dot--active {
    width: 72px;
  }

  .news-filter__tab {
    width: calc(50% - 7px);
    padding: 0 12px;
  }

  .news-card__media {
    border-radius: 24px;
  }

  .news-card__media img {
    height: 240px;
  }

  .news-pagination__item {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 560px) {
  .news-filter__tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-shell {
    width: min(var(--news-shell), calc(100% - 32px));
  }

  .news-hero {
    padding-top: 132px;
  }

  .news-feature {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: 100%;
    max-width: 100%;
    margin-top: 64px;
    min-width: 0;
  }

  .news-feature>* {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .news-feature__media {
    width: 100%;
    min-width: 0;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
  }

  .news-feature__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .news-feature__arrow {
    right: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
  }

  .news-feature__text {
    gap: 22px;
  }

  .news-filter {
    margin-top: 72px;
  }

  .news-filter__tabs {
    gap: 14px;
  }

  .news-filter__tab {
    height: 46px;
    padding: 0 22px;
  }

  .news-filter__tools {
    flex-direction: column;
    gap: 16px;
  }

  .news-select,
  .news-search {
    width: 100%;
  }

  .news-list {
    padding-top: 32px;
    padding-bottom: 120px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news-card {
    min-height: auto;
  }

  .news-card__media img {
    height: 280px;
  }

  .news-card__body {
    padding-top: 24px;
  }

  .news-pagination {
    gap: 16px;
    margin-top: 56px;
  }

  .news-body {
    overflow-x: hidden;
  }

  .news-page {
    width: 100%;
    max-width: 100%;
  }

  .news-hero__title {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.2;
  }

  .news-feature__text h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .news-feature__text p,
  .news-card__copy p {
    line-height: 1.7;
  }

  .news-filter__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .news-filter__tab {
    width: 100%;
    justify-content: center;
  }

  .news-pagination {
    flex-wrap: wrap;
  }

  .news-feature__text {
    width: 100%;
  }

  .news-feature__dot {
    width: 6px;
    height: 6px;
  }

  .news-card__link::after {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
  }

  .news-select__trigger {
    height: 52px;
    padding: 0 20px;
    border: 1px solid var(--news-brand);
    border-radius: 999px;
  }

  .news-select__chevron {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .news-select__chevron::before {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #999999;
    border-bottom: 1px solid #999999;
  }

  .news-search {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    border: 1px solid var(--news-muted);
    border-radius: 99px;
    background: #ffffff;
  }

  .news-search__icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .news-search__icon::before {
    top: 2px;
    left: 2px;
    width: 15px;
    height: 15px;
    border: 2px solid #999999;
    border-radius: 50%;
  }

  .news-search__icon::after {
    right: 2px;
    bottom: 4px;
    width: 7px;
    height: 2px;
    background: #999999;
    transform: rotate(45deg);
    transform-origin: center;
  }
}