.page-news {
  --news-border: #A8AEB0;
  --news-moss-soft: #DDE5D5;
  --news-sand-soft: #F2E3C6;
  --news-default-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --news-serif-font: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  --news-data-font: "DIN Alternate", "Roboto Mono", "SFMono-Regular", monospace;
  --news-card-shadow: 0 18px 40px -32px rgba(31, 61, 46, 0.5);
  --news-transition: 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  background: #F5F0E6;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 140px 24px 0;
  max-width: 1440px;
  margin: 0 auto;
  font-family: var(--news-default-font);
  font-size: 0.875rem;
  color: #6B7280;
  position: relative;
  z-index: 2;
}

.page-news .breadcrumb::before {
  content: "";
  position: absolute;
  top: 116px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3D7A58 0%, #A8AEB0 40%, #C4573A 100%);
  opacity: 0.5;
  z-index: 0;
}

.page-news .breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-news .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: #A8AEB0;
}

.page-news .breadcrumb__link {
  color: #3D7A58;
  text-decoration: none;
  transition: color var(--news-transition);
}

.page-news .breadcrumb__link:hover {
  color: #C4573A;
}

.page-news .news-hero {
  position: relative;
  padding: 40px 24px 56px;
  max-width: 1440px;
  margin: 0 auto;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(135deg, rgba(221, 229, 213, 0) 0%, rgba(221, 229, 213, 0.8) 100%);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 31%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C4573A);
  z-index: 1;
  pointer-events: none;
}

.page-news .news-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.page-news .news-hero__aside {
  max-width: 760px;
}

.page-news .news-hero .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: #1F3D2E;
  color: #F5F0E6;
  font-family: var(--news-data-font);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-news .news-hero__title {
  margin: 0 0 20px;
  font-family: var(--news-serif-font);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.2;
  color: #1F3D2E;
  letter-spacing: -0.01em;
  border-left: 4px solid #C4573A;
  padding-left: 16px;
}

.page-news .news-hero__lead {
  margin: 0 0 24px;
  font-family: var(--news-default-font);
  font-size: 1rem;
  line-height: 1.75;
  color: #6B7280;
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #DDE5D5;
  color: #1F3D2E;
  font-family: var(--news-default-font);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(61, 122, 88, 0.3);
}

.page-news .chip--hot {
  background: rgba(232, 114, 69, 0.12);
  border-color: rgba(232, 114, 69, 0.4);
  color: #C4573A;
  position: relative;
  padding-left: 20px;
}

.page-news .chip--hot::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E87245;
  transform: translateY(-50%);
  animation: pulse-dot 2s ease-in-out infinite;
}

.page-news .masthead-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #A8AEB0;
  padding: 16px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px -32px rgba(31, 61, 46, 0.5);
  position: relative;
  overflow: hidden;
}

.page-news .masthead-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #3D7A58, #A8AEB0 50%, #C4573A);
}

.page-news .masthead-panel__label {
  font-family: var(--news-data-font);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6B7280;
}

.page-news .masthead-panel__value {
  font-family: var(--news-data-font);
  font-size: 1.125rem;
  font-weight: 500;
  color: #1F3D2E;
}

.page-news .masthead-panel__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E87245;
  margin-left: auto;
  box-shadow: 0 0 0 0 rgba(232, 114, 69, 0.5);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(232, 114, 69, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(232, 114, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 114, 69, 0); }
}

.page-news .section {
  padding: 48px 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.page-news .section--sand {
  background: #F2E3C6;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-news .section--sand .split {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-news .section--glass {
  background: rgba(255, 255, 255, 0.82);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 64px;
  padding-bottom: 64px;
  backdrop-filter: blur(8px);
  border-top: 1px solid #A8AEB0;
  border-bottom: 1px solid #A8AEB0;
}

.page-news .section--glass .split {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-news .section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.page-news .section-title {
  margin: 0;
  font-family: var(--news-serif-font);
  font-size: 1.5rem;
  font-weight: 900;
  color: #1F3D2E;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.page-news .section-title__num {
  font-family: var(--news-data-font);
  font-size: 2.3rem;
  font-weight: 500;
  color: #C4573A;
  line-height: 1;
}

.page-news .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--news-data-font);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3D7A58;
  font-weight: 500;
}

.page-news .brief {
  margin: 0 0 24px;
  font-family: var(--news-default-font);
  font-size: 1rem;
  line-height: 1.7;
  color: #6B7280;
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-filter__btn {
  appearance: none;
  border: 1px solid #A8AEB0;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--news-default-font);
  font-size: 0.8125rem;
  color: #1F3D2E;
  cursor: pointer;
  transition: all var(--news-transition);
}

.page-news .news-filter__btn:hover {
  border-color: #3D7A58;
  background: #DDE5D5;
}

.page-news .news-filter__btn.is-active {
  background: #1F3D2E;
  color: #F5F0E6;
  border-color: #1F3D2E;
}

.page-news .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .news-card {
  background: #F5F0E6;
  border: 1px solid #A8AEB0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
  transition: transform var(--news-transition), box-shadow var(--news-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.page-news .news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0%;
  background: #C4573A;
  transition: height var(--news-transition);
  z-index: 2;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -32px rgba(31, 61, 46, 0.5);
}

.page-news .news-card:hover::before {
  height: 100%;
}

.page-news .news-card__media {
  margin: 0;
  overflow: hidden;
}

.page-news .news-card__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-news .news-card:hover .news-card__img {
  transform: scale(1.03);
}

.page-news .news-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.page-news .news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-news .news-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--news-default-font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.page-news .news-tag::before {
  content: "●";
  margin-right: 4px;
  font-size: 0.5rem;
  vertical-align: 1px;
}

.page-news .news-tag--moss {
  background: #DDE5D5;
  color: #3D7A58;
}

.page-news .news-tag--clay {
  background: rgba(196, 87, 58, 0.1);
  color: #C4573A;
}

.page-news .news-tag--orange {
  background: rgba(232, 114, 69, 0.1);
  color: #E87245;
}

.page-news .news-card__title {
  margin: 0;
  font-family: var(--news-serif-font);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #1F3D2E;
}

.page-news .news-card__excerpt {
  margin: 0;
  font-family: var(--news-default-font);
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6B7280;
}

.page-news .news-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(168, 174, 176, 0.5);
  padding-top: 12px;
}

.page-news .news-card__read {
  font-family: var(--news-data-font);
  font-size: 0.75rem;
  color: #6B7280;
  margin-left: auto;
}

.page-news .news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--news-default-font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #C4573A;
  text-decoration: none;
  transition: color var(--news-transition);
}

.page-news .news-card__more::after {
  content: "→";
  transition: transform var(--news-transition);
}

.page-news .news-card__more:hover {
  color: #1F3D2E;
}

.page-news .news-card__more:hover::after {
  transform: translateX(4px);
}

.page-news .news-card--large {
  grid-row: span 1;
  background: linear-gradient(135deg, #1F3D2E 0%, #3D7A58 100%);
  border-color: #1F3D2E;
}

.page-news .news-card--large .news-card__title {
  color: #F5F0E6;
  font-size: 1.25rem;
}

.page-news .news-card--large .news-card__excerpt {
  color: rgba(245, 240, 230, 0.85);
}

.page-news .news-card--large .news-card__meta .chip {
  background: rgba(245, 240, 230, 0.18);
  border-color: transparent;
  color: #F5F0E6;
}

.page-news .news-card--large .news-card__read {
  color: rgba(245, 240, 230, 0.7);
}

.page-news .news-card--large .news-card__more {
  color: #F2E3C6;
}

.page-news .news-card--large .news-card__meta {
  border-top-color: rgba(245, 240, 230, 0.2);
}

.page-news .news-card--large .news-card__tags .news-tag--moss {
  background: rgba(245, 240, 230, 0.18);
  color: #F5F0E6;
}

.page-news .news-card--large .news-card__tags .news-tag--clay {
  background: rgba(232, 114, 69, 0.35);
  color: #F5F0E6;
}

.page-news .news-card--large::before {
  background: #E87245;
}

.page-news .split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .split__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-news .split__main {
  min-width: 0;
}

.page-news .news-results__stat {
  margin: 8px 0 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-news .stat__num {
  font-family: var(--news-data-font);
  font-size: 2.6rem;
  font-weight: 500;
  color: #1F3D2E;
  line-height: 1;
}

.page-news .stat__num span {
  color: #C4573A;
  font-size: 1.4rem;
}

.page-news .stat__label {
  font-family: var(--news-default-font);
  font-size: 0.875rem;
  color: #6B7280;
}

.page-news .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: var(--news-default-font);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--news-transition);
}

.page-news .button--primary {
  background: #3D7A58;
  color: #F5F0E6;
}

.page-news .button--primary:hover {
  background: #1F3D2E;
  transform: translateY(-2px);
}

.page-news .button--ghost {
  background: transparent;
  border-color: #3D7A58;
  color: #3D7A58;
}

.page-news .button--ghost:hover {
  background: #3D7A58;
  color: #F5F0E6;
}

.page-news .button--clay {
  background: #C4573A;
  color: #F5F0E6;
}

.page-news .button--clay:hover {
  background: #E87245;
  transform: translateY(-2px);
}

.page-news .result-table-wrap {
  overflow-x: auto;
  border: 1px solid #A8AEB0;
  border-radius: 6px;
  background: #F5F0E6;
}

.page-news .result-table {
  display: flex;
  flex-direction: column;
  min-width: 520px;
}

.page-news .result-table__row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 8px;
  padding: 12px 16px;
  align-items: center;
}

.page-news .result-table__row:not(:last-child) {
  border-bottom: 1px solid rgba(168, 174, 176, 0.4);
}

.page-news .result-table__row--head {
  background: #1F3D2E;
  color: #F5F0E6;
}

.page-news .result-table__cell {
  font-family: var(--news-default-font);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #1F3D2E;
}

.page-news .result-table__row--head .result-table__cell {
  color: #F5F0E6;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.page-news .news-results__chart {
  margin-top: 20px;
  background: #F5F0E6;
  border: 1px solid #A8AEB0;
  border-radius: 6px;
  padding: 16px;
}

.page-news .news-results__chart-title {
  margin-bottom: 12px;
}

.page-news .news-results__chart-label {
  margin: 0;
  font-family: var(--news-serif-font);
  font-weight: 700;
  font-size: 1rem;
  color: #1F3D2E;
}

.page-news .news-results__chart-desc {
  margin: 4px 0 0;
  font-family: var(--news-default-font);
  font-size: 0.75rem;
  color: #6B7280;
}

.page-news .news-results__chart-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.page-news .news-transfer {
  position: relative;
}

.page-news .news-transfer::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #3D7A58 0 12px, transparent 12px 18px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.page-news .transfer-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.page-news .transfer-timeline__visual {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #A8AEB0;
  position: relative;
}

.page-news .transfer-timeline__visual::after {
  content: "TRANSFER WINDOW · 02";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(31, 61, 46, 0.85);
  color: #F5F0E6;
  font-family: var(--news-data-font);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.page-news .transfer-timeline__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .transfer-timeline__list {
  display: flex;
  flex-direction: column;
}

.page-news .transfer-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(168, 174, 176, 0.4);
  position: relative;
}

.page-news .transfer-item:last-child {
  border-bottom: none;
}

.page-news .transfer-item::before {
  content: "";
  position: absolute;
  left: 84px;
  top: 0;
  width: 8px;
  height: 8px;
  background: #C4573A;
  border-radius: 50%;
  transform: translateX(-50%);
  top: 26px;
}

.page-news .transfer-item__date {
  font-family: var(--news-data-font);
  font-size: 0.75rem;
  font-weight: 500;
  color: #C4573A;
  padding-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.page-news .transfer-item__date::after {
  content: "";
  width: 1px;
  height: 20px;
  background: #A8AEB0;
  display: none;
}

.page-news .transfer-item__title {
  margin: 0 0 6px;
  font-family: var(--news-serif-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1F3D2E;
}

.page-news .transfer-item__desc {
  margin: 0;
  font-family: var(--news-default-font);
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6B7280;
}

.page-news .version-log {
  display: flex;
  flex-direction: column;
}

.page-news .version-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(168, 174, 176, 0.5);
}

.page-news .version-item:last-child {
  border-bottom: none;
}

.page-news .version-item__flag {
  display: inline-block;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 4px;
  background: #DDE5D5;
  color: #3D7A58;
  font-family: var(--news-data-font);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-news .version-item__title {
  margin: 0 0 6px;
  font-family: var(--news-serif-font);
  font-size: 1rem;
  font-weight: 700;
  color: #1F3D2E;
  line-height: 1.5;
}

.page-news .version-item__desc {
  margin: 0;
  font-family: var(--news-default-font);
  font-size: 0.875rem;
  line-height: 1.7;
  color: #6B7280;
}

.page-news .version-visual {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #A8AEB0;
  orientation: landscape;
}

.page-news .version-visual__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .version-visual__caption {
  margin: 14px 0 0;
  font-family: var(--news-default-font);
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.page-news .version-visual__caption::before {
  content: "";
  width: 4px;
  height: 100%;
  min-height: 20px;
  background: #C4573A;
  display: inline-block;
  flex-shrink: 0;
}

.page-news .version-visual {
  margin-bottom: 16px;
}

.page-news .news-note {
  padding-bottom: 72px;
}

.page-news .index-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #A8AEB0;
}

.page-news .index-list__link {
  display: block;
  padding: 16px 4px;
  font-family: var(--news-default-font);
  font-size: 0.9375rem;
  color: #1F3D2E;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 174, 176, 0.4);
  transition: all var(--news-transition);
  position: relative;
  padding-left: 0;
}

.page-news .index-list__link::before {
  content: "→";
  color: #C4573A;
  margin-right: 12px;
  display: inline-block;
  transition: transform var(--news-transition);
}

.page-news .index-list__link:hover {
  color: #C4573A;
  padding-left: 12px;
}

.page-news .index-list__link:hover::before {
  transform: translateX(4px);
}

@media (min-width: 640px) {
  .page-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .news-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .page-news .news-card--tall {
    grid-row: span 1;
  }

  .page-news .transfer-item__date::after {
    display: block;
  }
}

@media (min-width: 960px) {
  .page-news .breadcrumb {
    padding-top: 160px;
  }

  .page-news .breadcrumb::before {
    top: 132px;
  }

  .page-news .news-hero {
    padding: 48px 40px 64px;
  }

  .page-news .news-hero__inner {
    grid-template-columns: 1fr 360px;
    align-items: end;
  }

  .page-news .news-hero__title {
    font-size: 2.5rem;
  }

  .page-news .section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-news .section--sand .split,
  .page-news .section--glass .split {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-news .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-card--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .page-news .news-card--tall {
    grid-row: span 1;
  }

  .page-news .split {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }

  .page-news .split__aside {
    position: sticky;
    top: 120px;
  }

  .page-news .section--glass .split {
    grid-template-columns: 1fr 360px;
  }

  .page-news .section--glass .split__main {
    order: 1;
  }

  .page-news .section--glass .split__aside {
    order: 2;
  }

  .page-news .transfer-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .page-news .news-hero__title {
    font-size: 2.7rem;
    max-width: 720px;
  }

  .page-news .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .news-card--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .page-news .news-card--tall {
    grid-row: span 2;
  }
}
