.page-news {
  display: block;
}

/* ---------- 顶部导航与章节通用 ---------- */

.page-news .crumbs {
  margin: 0 0 18px;
}

.page-news .intel-section {
  padding: 34px 0 6px;
}

.page-news .intel-section > .section-head {
  margin-bottom: 18px;
}

.page-news .intel-section .figure-frame {
  margin: 0 0 20px;
}

/* ---------- 情报索引头 ---------- */

.page-news .intel-mast {
  display: grid;
  gap: 24px;
  padding: 26px 20px 30px;
  border-radius: var(--r-lg);
  background-color: var(--green-deep);
  background-image:
    radial-gradient(circle at 88% 8%, rgba(242, 194, 48, 0.2), transparent 46%),
    linear-gradient(152deg, #06452A 0%, #0C6B3F 58%, #123A47 100%);
  color: var(--white);
}

.page-news .intel-mast__kicker {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.page-news .intel-mast h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--white);
  max-width: 17ch;
}

.page-news .intel-mast__lede {
  margin: 0;
  max-width: 46ch;
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(245, 247, 244, 0.84);
}

.page-news .intel-mast__figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-news .intel-mast__figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-news .intel-mast__figure .figure-frame__caption {
  color: rgba(245, 247, 244, 0.68);
  font-size: 12px;
}

/* ---------- 栏目统计条 ---------- */

.page-news .intel-index {
  margin: 26px 0 4px;
}

.page-news .intel-index__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green-deep);
}

.page-news .intel-index__note {
  margin: 0 0 16px;
  max-width: 68ch;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--muted);
}

.page-news .intel-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-news .intel-stat {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 18px 14px 16px;
  background: var(--white);
}

.page-news .intel-stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
}

.page-news .intel-stat--green::before { background: var(--green); }
.page-news .intel-stat--indigo::before { background: var(--indigo); }
.page-news .intel-stat--ink::before { background: var(--yellow); }
.page-news .intel-stat--wine::before { background: var(--wine); }

.page-news .intel-stat__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-news .intel-stat__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

.page-news .intel-stat__desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- 条目标签配色 ---------- */

.page-news .tag--field-green {
  background: rgba(12, 107, 63, 0.12);
  color: var(--green-deep);
  border: 1px solid rgba(12, 107, 63, 0.34);
}

.page-news .tag--field-indigo {
  background: rgba(18, 58, 71, 0.12);
  color: var(--indigo);
  border: 1px solid rgba(18, 58, 71, 0.34);
}

.page-news .tag--field-ink {
  background: var(--ink);
  color: var(--yellow);
  border: 1px solid var(--ink);
}

.page-news .tag--field-wine {
  background: rgba(123, 34, 51, 0.1);
  color: var(--wine);
  border: 1px solid rgba(123, 34, 51, 0.34);
}

/* ---------- 条目列表 ---------- */

.page-news .entry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-news .entry {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 10px;
  padding: 13px 10px 14px 12px;
  border-bottom: 1px solid var(--line);
  outline: none;
}

.page-news .entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--green);
  border-radius: 0 2px 2px 0;
  transition: width 0.16s ease;
}

.page-news .entry:hover::before,
.page-news .entry:focus::before {
  width: 4px;
}

.page-news .entry:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.page-news .entry--transfer::before { background: var(--indigo); }
.page-news .entry--draw::before { background: var(--yellow); }

.page-news .entry__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.page-news .entry__body {
  min-width: 0;
  max-width: 74ch;
}

.page-news .entry__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.page-news .entry__stamp {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.page-news .entry__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 700;
  color: var(--ink);
}

.page-news .entry__meta {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.62;
  color: var(--muted);
}

.page-news .entry__conclusion {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

/* ---------- 疏密交替的专栏说明 ---------- */

.page-news .intel-aside {
  margin: 20px 0 8px;
  padding: 18px 16px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--mint);
}

.page-news .intel-aside p {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.82;
  color: #14301F;
}

.page-news .intel-aside--dark {
  border-left-color: var(--yellow);
  background: rgba(242, 194, 48, 0.1);
}

.page-news .intel-aside--dark p {
  color: rgba(245, 247, 244, 0.86);
}

/* ---------- 开奖观察：深色大屏分区 ---------- */

.page-news .intel-section--draw {
  margin: 34px 0;
  padding: 30px 20px 32px;
  border-radius: var(--r-lg);
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 14% 4%, rgba(242, 194, 48, 0.16), transparent 44%),
    linear-gradient(165deg, #0A0D10 0%, #0E1A1E 62%, #123A47 100%);
  color: var(--white);
}

.page-news .intel-section--draw .section-title,
.page-news .intel-section--draw .section-num {
  color: var(--white);
}

.page-news .intel-section--draw .section-num {
  color: var(--yellow);
}

.page-news .intel-section--draw .lede {
  color: rgba(245, 247, 244, 0.8);
}

.page-news .intel-section--draw .figure-frame__caption {
  color: rgba(245, 247, 244, 0.62);
}

.page-news .intel-section--draw .entry-list {
  border-top-color: var(--line-invert);
}

.page-news .intel-section--draw .entry {
  border-bottom-color: var(--line-invert);
}

.page-news .intel-section--draw .entry__title {
  color: var(--white);
}

.page-news .intel-section--draw .entry__num,
.page-news .intel-section--draw .entry__stamp,
.page-news .intel-section--draw .entry__meta {
  color: rgba(245, 247, 244, 0.66);
}

.page-news .intel-section--draw .entry__conclusion {
  border-top-color: var(--line-invert);
  color: rgba(245, 247, 244, 0.88);
}

.page-news .intel-section--draw .tag--field-ink {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

/* ---------- 校对日志 ---------- */

.page-news .log-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-news .log-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  padding: 13px 4px 14px 12px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: border-left-color 0.16s ease;
}

.page-news .log-item:hover,
.page-news .log-item:focus-within {
  border-left-color: var(--wine);
}

.page-news .log-item__when {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--wine);
}

.page-news .log-item__text {
  margin: 0;
  max-width: 68ch;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink);
}

.page-news .log-item__kind {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 8px;
  border-radius: 999px;
  background: rgba(123, 34, 51, 0.1);
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- 专题瀑布式聚合 ---------- */

.page-news .topic-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-news .topic-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--r-md);
  background: var(--white);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-news .topic-card:hover,
.page-news .topic-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(10, 13, 16, 0.09);
  outline: none;
}

.page-news .topic-card:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.page-news .topic-card--tall {
  border-top-color: var(--indigo);
  padding-bottom: 30px;
}

.page-news .topic-card--short {
  border-top-color: var(--yellow-deep);
}

.page-news .topic-card:nth-child(2) {
  border-top-color: var(--wine);
}

.page-news .topic-card__kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.page-news .topic-card__title {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.page-news .topic-card__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

.page-news .topic-card--tall .topic-card__title {
  font-size: 21px;
  line-height: 1.32;
}

.page-news .topic-card__go {
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green);
}

/* ---------- 响应式 ---------- */

@media (min-width: 760px) {
  .page-news .intel-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-news .intel-stat {
    padding: 20px 16px 18px;
  }

  .page-news .intel-stat__num {
    font-size: 40px;
  }

  .page-news .log-item {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
  }

  .page-news .topic-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 900px) {
  .page-news .intel-mast {
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
    align-items: end;
    gap: 38px;
    padding: 34px 30px 38px;
  }

  .page-news .entry {
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 16px;
    padding: 16px 14px 17px 18px;
  }

  .page-news .entry__num {
    line-height: 1.85;
    font-size: 13.5px;
  }

  .page-news .entry__title {
    font-size: 18px;
  }
}

@media (min-width: 1040px) {
  .page-news .topic-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-news .intel-section--draw {
    padding: 38px 32px 40px;
  }
}

/* 桌面端悬停 / 聚焦展开结论，移动端与触屏始终可见 */
@media (min-width: 900px) and (hover: hover) {
  .page-news .entry__conclusion {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    border-top-color: transparent;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.24s ease, opacity 0.2s ease, margin-top 0.24s ease,
      padding-top 0.24s ease, border-top-color 0.24s ease;
  }

  .page-news .entry:hover .entry__conclusion,
  .page-news .entry:focus .entry__conclusion,
  .page-news .entry:focus-within .entry__conclusion {
    max-height: 9em;
    margin-top: 8px;
    padding-top: 8px;
    border-top-color: var(--line);
    opacity: 1;
  }

  .page-news .intel-section--draw .entry:hover .entry__conclusion,
  .page-news .intel-section--draw .entry:focus .entry__conclusion,
  .page-news .intel-section--draw .entry:focus-within .entry__conclusion {
    border-top-color: var(--line-invert);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .entry::before,
  .page-news .entry__conclusion,
  .page-news .log-item,
  .page-news .topic-card {
    transition: none;
  }

  .page-news .topic-card:hover,
  .page-news .topic-card:focus-visible {
    transform: none;
  }
}
