/* ===== 品牌日志 /journal/ ===== */
.page-news {
  --news-gap: 20px;
  --news-radius: 14px;
  display: block;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, rgba(227, 180, 90, 0) 100%);
  opacity: .75;
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 4px 34px;
}

.page-news .news-hero__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 7.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--text-strong);
}

.page-news .news-hero__lead {
  max-width: 62ch;
  margin-top: 18px;
  color: var(--text);
}

.page-news .news-hero__facts {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.page-news .news-hero__facts li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num unit"
    "desc desc";
  align-items: baseline;
  gap: 2px 10px;
  padding: 14px 16px 16px;
  border-left: 2px solid var(--line);
  background: linear-gradient(90deg, rgba(20, 22, 26, .95) 0%, rgba(20, 22, 26, .3) 100%);
}

.page-news .news-hero__num {
  grid-area: num;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--gold-light);
}

.page-news .news-hero__unit {
  grid-area: unit;
  font-size: 13px;
  color: var(--muted);
}

.page-news .news-hero__desc {
  grid-area: desc;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}

.page-news .news-hero__media {
  width: var(--shell);
  margin: 10px auto 0;
}

.page-news .news-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  opacity: .94;
}

@media (min-width: 900px) {
  .page-news .news-hero__facts {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }
  .page-news .news-hero__facts li:nth-child(1) { grid-column: span 5; }
  .page-news .news-hero__facts li:nth-child(2) { grid-column: span 4; margin-top: 24px; }
  .page-news .news-hero__facts li:nth-child(3) { grid-column: span 3; margin-top: 48px; }
}

/* ---------- 标签体系 ---------- */
.page-news .news-tags__head p {
  max-width: 58ch;
  color: var(--muted);
}

.page-news .news-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.page-news .news-legend__item {
  position: relative;
  padding: 22px 18px 20px;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}

.page-news .news-legend__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 42px;
  height: 2px;
  background: var(--gold-deep);
}

.page-news .news-legend__num {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--gold);
}

.page-news .news-legend__name {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-strong);
}

.page-news .news-legend__def {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}

.page-news .news-legend__media {
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 8px;
}

.page-news .news-legend__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  filter: saturate(.92);
}

.page-news .news-legend__item--tall .news-legend__media img {
  aspect-ratio: 12 / 7;
}

@media (min-width: 760px) {
  .page-news .news-legend { grid-template-columns: repeat(2, 1fr); }
  .page-news .news-legend__item--wide,
  .page-news .news-legend__item--tall { grid-column: span 2; }
}

@media (min-width: 1080px) {
  .page-news .news-legend { grid-template-columns: repeat(12, 1fr); }
  .page-news .news-legend__item { grid-column: span 3; }
  .page-news .news-legend__item--wide { grid-column: span 7; }
  .page-news .news-legend__item--tall { grid-column: span 5; }
}

/* ---------- 近期条目 ---------- */
.page-news .news-flow .wd-section-head p {
  max-width: 52ch;
  color: var(--muted);
}

.page-news .news-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.page-news .news-index a.wd-tag {
  text-decoration: none;
}

.page-news .news-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 1;
  column-gap: var(--news-gap);
}

@media (min-width: 880px) {
  .page-news .news-grid { column-count: 2; }
}

.page-news .news-card {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 var(--news-gap);
  padding: 22px 20px 20px;
  background: linear-gradient(160deg, var(--ink-soft) 0%, #101216 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--news-radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

@media (hover: hover) {
  .page-news .news-card:hover {
    border-color: var(--gold-deep);
    transform: translateY(-2px);
  }
}

.page-news .news-card__time {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--gold-light);
}

.page-news .news-card__time::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 180, 90, .16);
}

.page-news .news-card__time::after {
  content: "";
  flex: 1 1 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--line) 0%, rgba(107, 85, 44, 0) 100%);
}

.page-news .news-card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: var(--text-strong);
}

.page-news .news-card__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}

.page-news .news-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-soft);
}

.page-news .news-card__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-news .news-card__series {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.page-news .news-card__more {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(107, 85, 44, .26);
}

.page-news .news-card__more > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  letter-spacing: .01em;
  color: var(--gold);
}

.page-news .news-card__more > summary::-webkit-details-marker { display: none; }

.page-news .news-card__more > summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1;
  color: var(--gold-light);
  transition: transform .28s var(--ease);
}

.page-news .news-card__more[open] > summary::after {
  transform: rotate(45deg);
}

.page-news .news-card__more-body {
  padding-top: 12px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

.page-news .news-card__more-body p { margin: 0 0 10px; }
.page-news .news-card__more-body p:last-child { margin-bottom: 0; }

/* ---------- 专题系列 ---------- */
.page-news .news-series {
  overflow: hidden;
}

.page-news .news-series .wd-section-head p {
  max-width: 56ch;
  color: var(--paper-muted);
}

.page-news .news-series__banner {
  margin: 0 0 28px;
}

.page-news .news-series__banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  border-radius: 10px;
}

.page-news .news-series__rail {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 64px), transparent 100%);
}

.page-news .news-series__rail:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 4px;
}

.page-news .news-series__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  width: max-content;
}

.page-news .news-series__item {
  flex: 0 0 min(76vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 20px;
  background: var(--paper-soft);
  border: 1px solid rgba(20, 22, 26, .12);
  border-radius: 12px;
}

.page-news .news-series__num {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--gold-deep);
}

.page-news .news-series__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.01em;
  color: var(--paper-ink);
}

.page-news .news-series__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--paper-muted);
}

.page-news .news-series__tags {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 22, 26, .1);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--paper-muted);
}

.page-news .news-series__hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--paper-muted);
}

/* ---------- 长期追踪 ---------- */
.page-news .news-track .wd-section-head p {
  max-width: 54ch;
  color: var(--muted);
}

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

.page-news .news-track__panels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .news-track__panels .wd-panel {
  padding: 0 18px;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}

.page-news .news-track__panels summary.wd-panel__title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-strong);
}

.page-news .news-track__panels summary.wd-panel__title::-webkit-details-marker { display: none; }

.page-news .news-track__panels .wd-panel__num {
  flex: none;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--gold);
}

.page-news .news-track__panels .wd-panel__body {
  padding-bottom: 18px;
}

.page-news .news-track__panels .wd-panel__inner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}

.page-news .news-track__side {
  padding: 20px 18px;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold-deep);
  border-radius: 0 12px 12px 0;
  background: rgba(20, 22, 26, .62);
}

.page-news .news-track__side h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-strong);
}

.page-news .news-track__side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .news-track__side a {
  position: relative;
  display: block;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  text-decoration: none;
  transition: color .2s var(--ease);
}

.page-news .news-track__side a::before {
  content: "";
  position: absolute;
  left: 0;
  top: .74em;
  width: 6px;
  height: 1px;
  background: var(--gold-deep);
  transition: width .2s var(--ease);
}

@media (hover: hover) {
  .page-news .news-track__side a:hover { color: var(--gold-light); }
  .page-news .news-track__side a:hover::before { width: 11px; }
}

@media (min-width: 940px) {
  .page-news .news-track__cols {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 40px;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-card,
  .page-news .news-card__more > summary::after,
  .page-news .news-track__side a,
  .page-news .news-track__side a::before {
    transition: none;
  }
  .page-news .news-card:hover { transform: none; }
}
