/* =============================================
   三亿体育 · 品牌日志页（page-news）
   杂志式排版：封面头图、分类筛选条、
   滚动文章列表、阿森纳深色专区、专题分析、
   平台公告时间线
   移动端优先，桌面端 768/1024 两档增强
   ============================================= */
.page-news {
  --jnl-gold: var(--gold);
  --jnl-red: var(--red-orange);
  --jnl-sage: var(--sage);
  background: var(--cream);
  color: var(--dark-gray);
}

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

.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- 面包屑 ---------- */
.page-news .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 20px 20px 0;
  font-size: 13px;
  color: var(--forest);
  letter-spacing: .02em;
}

.page-news .breadcrumbs a {
  color: var(--forest);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.page-news .breadcrumbs a:hover,
.page-news .breadcrumbs a:focus-visible {
  border-color: var(--gold);
}

.page-news .breadcrumbs [aria-current="page"] {
  color: var(--dark-gray);
  font-weight: 700;
}

/* ---------- 杂志封面式页头 ---------- */
.page-news .journal-cover {
  margin: 18px 0 0;
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 168, 67, .18), transparent 42%),
    linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 55%, var(--dark-green) 100%);
  color: var(--white);
}

.page-news .journal-cover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(212, 168, 67, .06) 0 2px,
    transparent 2px 10px
  );
  pointer-events: none;
}

.page-news .journal-cover::after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: -30px;
  width: 160%;
  height: 30px;
  background: var(--gold);
  opacity: .85;
  transform: rotate(-3deg);
  transform-origin: left center;
  pointer-events: none;
}

.page-news .cover-inner {
  position: relative;
  z-index: 1;
}

.page-news .cover-kicker {
  display: inline-block;
  margin: 0 0 26px;
  padding: 6px 14px;
  border: 1px solid rgba(212, 168, 67, .65);
  border-radius: var(--radius-pill);
  background: rgba(212, 168, 67, .12);
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.page-news .cover-title-row {
  display: grid;
  gap: 14px;
  align-items: end;
}

.page-news h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(32px, 6.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
}

.page-news .cover-lead {
  margin: 0;
  font-family: var(--accent-font);
  font-size: 20px;
  font-style: italic;
  color: var(--gold-soft);
  line-height: 1.4;
}

.page-news .cover-desc {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 243, 232, .82);
}

.page-news .cover-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 243, 232, .18);
}

.page-news .cover-stat {
  display: flex;
  flex-direction: column;
}

.page-news .cover-stat .stat-num {
  font-family: var(--accent-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.page-news .cover-stat .stat-label {
  font-size: 12px;
  color: rgba(247, 243, 232, .68);
  letter-spacing: .08em;
  margin-top: 4px;
}

/* ---------- 分类筛选条 ---------- */
.page-news .journal-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -18px;
  position: relative;
  z-index: 3;
}

.page-news .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--dark-gray);
  border: 1px solid var(--light-gray);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.page-news .filter-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.page-news .filter-chip:hover,
.page-news .filter-chip:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.page-news .chip-match { color: var(--gold); }
.page-news .chip-arsenal { color: var(--red-orange); }
.page-news .chip-analysis { color: var(--sage); }
.page-news .chip-update { color: var(--forest); }

/* ---------- 通用版块标题 ---------- */
.page-news .section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 26px;
}

.page-news .section-head-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-news .section-index {
  font-family: var(--heading-font);
  font-size: 44px;
  line-height: 1;
  color: rgba(212, 168, 67, .55);
  letter-spacing: -.05em;
}

.page-news .section-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-orange);
}

.page-news .section-head h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 30px;
  line-height: 1.2;
  color: var(--dark-gray);
}

.page-news .section-desc {
  margin: 0;
  font-size: 14px;
  color: #6B746C;
}

/* ---------- 文章通用 meta 行 ---------- */
.page-news .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  font-size: 12px;
}

.page-news .cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: .04em;
}

.page-news .cat-match {
  background: rgba(212, 168, 67, .15);
  color: #8a6d1f;
  border: 1px solid rgba(212, 168, 67, .35);
}

.page-news .cat-arsenal {
  background: rgba(224, 122, 47, .12);
  color: #a35418;
  border: 1px solid rgba(224, 122, 47, .3);
}

.page-news .cat-analysis {
  background: rgba(168, 198, 134, .18);
  color: #4c6a2c;
  border: 1px solid rgba(168, 198, 134, .4);
}

.page-news .cat-update {
  background: rgba(27, 67, 50, .1);
  color: var(--forest);
  border: 1px solid rgba(27, 67, 50, .22);
}

.page-news .time-label {
  color: #8B867E;
  font-size: 12px;
  letter-spacing: .03em;
}

.page-news .read-time {
  position: relative;
  font-size: 12px;
  color: var(--forest);
  border-bottom: 1px dashed rgba(27, 67, 50, .3);
  cursor: help;
  transition: color var(--transition), background var(--transition);
}

@media (hover: hover) {
  .page-news .read-time:hover {
    color: var(--dark-green);
    background: rgba(212, 168, 67, .25);
  }

  .page-news .read-time::after {
    content: "预计阅读时间";
    position: absolute;
    bottom: 140%;
    left: 0;
    white-space: nowrap;
    background: var(--dark-green);
    color: var(--white);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 4;
  }

  .page-news .read-time:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 01 最新动态 ---------- */
.page-news .latest-section {
  padding-top: 42px;
}

.page-news .feature-article {
  display: grid;
  gap: 0;
  margin: 0 0 42px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.page-news .feature-article:hover {
  box-shadow: var(--shadow-md);
}

.page-news .feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-news .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.page-news .feature-article:hover .feature-media img {
  transform: scale(1.02);
}

.page-news .feature-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-news .feature-body h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 22px;
  line-height: 1.3;
  color: var(--dark-gray);
}

.page-news .feature-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5C5A53;
}

.page-news .article-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), gap var(--transition);
}

.page-news .article-link:hover,
.page-news .article-link:focus-visible {
  color: var(--red-orange);
  gap: 10px;
}

/* ---------- 文章滚动列表 ---------- */
.page-news .article-stack {
  display: grid;
  gap: 12px;
}

.page-news .article-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-left: 4px solid var(--light-gray);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.page-news .article-row:hover,
.page-news .article-row:focus-within {
  border-left-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.page-news .row-index {
  font-family: var(--heading-font);
  font-size: 18px;
  color: rgba(27, 67, 50, .35);
  line-height: 1.4;
  transition: color var(--transition);
}

.page-news .article-row:hover .row-index {
  color: var(--gold);
}

.page-news .row-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .row-body h3 {
  margin: 4px 0 0;
  font-family: var(--heading-font);
  font-size: 17px;
  line-height: 1.4;
  color: var(--dark-gray);
  transition: color var(--transition);
}

.page-news .article-row:hover h3 {
  color: var(--forest);
}

.page-news .row-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #6B6B63;
}

/* ---------- 02 阿森纳专区 ---------- */
.page-news .arsenal-section {
  margin: 46px 0 0;
  padding: 46px 0;
  background:
    radial-gradient(circle at 8% 86%, rgba(212, 168, 67, .18), transparent 40%),
    linear-gradient(150deg, var(--dark-green) 0%, var(--forest-deep) 60%, var(--forest) 100%);
  color: var(--white);
}

.page-news .arsenal-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.page-news .arsenal-head .section-index {
  color: rgba(212, 168, 67, .6);
}

.page-news .arsenal-head h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 30px;
  line-height: 1.2;
  color: var(--white);
}

.page-news .arsenal-head .section-kicker {
  color: var(--gold-soft);
}

.page-news .arsenal-sub {
  margin: 4px 0 0;
  font-family: var(--accent-font);
  font-style: italic;
  color: rgba(247, 243, 232, .72);
  font-size: 15px;
}

.page-news .arsenal-content {
  display: grid;
  gap: 24px;
}

.page-news .arsenal-feature {
  display: grid;
  gap: 18px;
  background: rgba(247, 243, 232, .07);
  border: 1px solid rgba(212, 168, 67, .25);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.page-news .arsenal-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.page-news .arsenal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .arsenal-text h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.4;
  color: var(--white);
}

.page-news .arsenal-text > p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 243, 232, .78);
}

.page-news .match-strip {
  display: grid;
  gap: 8px;
}

.page-news .match-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  padding: 12px 14px;
  background: rgba(13, 31, 23, .45);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red-orange);
}

.page-news .match-round {
  font-family: var(--heading-font);
  font-size: 14px;
  color: var(--gold-soft);
}

.page-news .match-venue {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.page-news .match-desc {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247, 243, 232, .7);
}

.page-news .arsenal-aside {
  display: flex;
  flex-direction: column;
}

.page-news .aside-card {
  background: rgba(247, 243, 232, .08);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(247, 243, 232, .12);
}

.page-news .aside-title {
  margin: 0 0 12px;
  font-family: var(--heading-font);
  font-size: 16px;
  color: var(--gold-soft);
}

.page-news .aside-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-news .aside-card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(247, 243, 232, .82);
}

.page-news .aside-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.page-news .arsenal-aside .btn-gold {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--dark-green);
  font-weight: 800;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.page-news .arsenal-aside .btn-gold:hover,
.page-news .arsenal-aside .btn-gold:focus-visible {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- 03 专题分析 ---------- */
.page-news .analysis-section {
  padding-top: 46px;
}

.page-news .analysis-grid {
  display: grid;
  gap: 18px;
}

.page-news .analysis-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.page-news .analysis-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.page-news .analysis-num {
  font-family: var(--heading-font);
  font-size: 30px;
  line-height: 1;
  color: var(--sage);
  transition: color var(--transition);
}

.page-news .analysis-card:hover .analysis-num {
  color: var(--gold);
}

.page-news .analysis-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .analysis-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .analysis-body h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.35;
  color: var(--dark-gray);
}

.page-news .analysis-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #5C5A53;
}

.page-news .analysis-quote {
  margin-top: 4px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 168, 67, .1);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--accent-font);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--forest-deep);
}

.page-news .analysis-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.page-news .analysis-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 04 平台公告 ---------- */
.page-news .update-section {
  margin: 46px 0 0;
  padding: 46px 0 64px;
  background: var(--light-gray);
}

.page-news .update-head {
  margin-bottom: 0;
}

.page-news .update-layout {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.page-news .update-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 20px;
}

.page-news .update-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--sage) 100%);
  border-radius: 2px;
}

.page-news .update-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 18px 18px 34px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.page-news .update-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.page-news .update-badge {
  position: absolute;
  left: -26px;
  top: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--gold);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--light-gray);
}

.page-news .update-body h3 {
  margin: 6px 0 8px;
  font-family: var(--heading-font);
  font-size: 17px;
  line-height: 1.4;
  color: var(--dark-gray);
}

.page-news .update-body p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
  color: #5C5A53;
}

.page-news .update-body .article-link {
  font-size: 13px;
}

.page-news .update-aside .aside-card {
  background: var(--white);
  border-color: var(--light-gray);
}

.page-news .update-aside .aside-title {
  color: var(--forest);
  margin-top: 14px;
}

.page-news .update-aside p {
  font-size: 13px;
  line-height: 1.7;
  color: #5C5A53;
  margin: 0 0 10px;
}

.page-news .aside-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.page-news .aside-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 平板端：768px ↑ ---------- */
@media (min-width: 768px) {
  .page-news .breadcrumbs {
    padding: 26px 24px 0;
  }

  .page-news .journal-cover {
    padding: 64px 0 56px;
  }

  .page-news .cover-title-row {
    display: flex;
    align-items: flex-end;
    gap: 28px;
  }

  .page-news .cover-desc {
    max-width: 680px;
    font-size: 16px;
  }

  .page-news .cover-stats {
    gap: 40px;
  }

  .page-news .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-news .section-desc {
    max-width: 360px;
    text-align: right;
  }

  .page-news .article-stack {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .page-news .article-row {
    height: 100%;
  }

  .page-news .arsenal-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news .arsenal-sub {
    text-align: right;
  }

  .page-news .arsenal-content {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .page-news .analysis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .analysis-card {
    gap: 20px;
    padding: 28px;
  }

  .page-news .analysis-num {
    font-size: 40px;
  }

  .page-news .update-layout {
    gap: 30px;
  }

  .page-news .update-timeline {
    padding-left: 26px;
  }

  .page-news .update-timeline::before {
    left: 10px;
  }

  .page-news .update-badge {
    left: -30px;
    width: 28px;
    height: 28px;
  }
}

/* ---------- 桌面端：1024px ↑ ---------- */
@media (min-width: 1024px) {
  .page-news .journal-cover {
    padding: 80px 0 68px;
  }

  .page-news .journal-cover::after {
    bottom: 40px;
    width: 70%;
    height: 34px;
  }

  .page-news .cover-lead {
    font-size: 28px;
    max-width: 400px;
  }

  .page-news .cover-desc {
    font-size: 17px;
    max-width: 720px;
  }

  .page-news .cover-stats {
    gap: 56px;
  }

  .page-news .section-index {
    font-size: 56px;
  }

  .page-news .section-head h2 {
    font-size: 38px;
  }

  .page-news .journal-filter {
    gap: 12px;
  }

  .page-news .filter-chip {
    padding: 10px 26px;
    font-size: 15px;
  }

  .page-news .latest-section {
    padding-top: 56px;
  }

  .page-news .feature-article {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .feature-body {
    padding: 32px;
    justify-content: center;
  }

  .page-news .feature-body h3 {
    font-size: 27px;
  }

  .page-news .feature-body p {
    font-size: 15px;
  }

  .page-news .article-stack {
    gap: 16px;
  }

  .page-news .arsenal-section {
    padding: 60px 0;
  }

  .page-news .arsenal-head h2 {
    font-size: 38px;
  }

  .page-news .arsenal-content {
    gap: 32px;
  }

  .page-news .arsenal-feature {
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    padding: 24px;
  }

  .page-news .arsenal-media {
    align-self: center;
  }

  .page-news .analysis-section {
    padding-top: 56px;
  }

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

  .page-news .analysis-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-news .analysis-num {
    font-size: 48px;
  }

  .page-news .analysis-wide {
    grid-column: 1 / -1;
    grid-template-columns: 70px 0.9fr 1.3fr;
    align-items: center;
    gap: 24px;
  }

  .page-news .update-section {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .page-news .update-layout {
    grid-template-columns: 1fr 360px;
  }

  .page-news .update-item {
    padding: 22px 22px 22px 42px;
  }

  .page-news .update-timeline {
    padding-left: 30px;
  }

  .page-news .update-badge {
    left: -34px;
    width: 30px;
    height: 30px;
  }
}
