.page-news {
  --news-bg: #0a1e3f;
  --news-card: #1a2d4a;
  --news-board: #222a38;
  --news-accent: #39ff14;
  --news-alert: #ff4500;
  --news-line: rgba(230, 232, 238, 0.14);
  --news-muted: #a0aabf;
  background: var(--news-bg);
  color: #e6e8ee;
  overflow-x: hidden;
}
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-news .rel-time {
  color: var(--news-muted);
  font-size: 13px;
  white-space: nowrap;
}
.page-news .news-intro {
  padding-top: 32px;
}
.page-news .breadcrumb {
  margin-bottom: 20px;
}
.page-news .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.page-news .breadcrumb a {
  color: var(--news-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-news .breadcrumb a:hover {
  color: var(--news-accent);
}
.page-news .page-header {
  padding: 0 0 30px;
  border-bottom: 2px solid var(--news-line);
}
.page-news .page-kicker {
  color: var(--news-accent);
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.page-news .page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--white);
  max-width: 18em;
  letter-spacing: 0.03em;
}
.page-news .lead {
  color: var(--news-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 56em;
}
.page-news .news-feature {
  padding: 36px 0 0;
}
.page-news .feature-card {
  display: grid;
  gap: 0;
  background: var(--news-card);
  border: 2px solid var(--news-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.page-news .feature-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 6px;
  background: var(--news-accent);
  opacity: 0.7;
}
.page-news .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.page-news .feature-copy {
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.page-news .feature-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.page-news .feature-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.page-news .feature-copy p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 22px;
}
.page-news .news-cats {
  background: rgba(57, 255, 20, 0.06);
  border-top: 1px solid var(--news-line);
  border-bottom: 1px solid var(--news-line);
  padding: 30px 0;
  margin-top: 36px;
}
.page-news .news-cats .section-head {
  margin-bottom: 18px;
}
.page-news .section-head {
  margin-bottom: 28px;
}
.page-news .section-kicker {
  color: var(--news-accent);
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.page-news .section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  color: var(--white);
  margin: 0;
  letter-spacing: 0.04em;
}
.page-news .cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-news .cat-tab {
  display: inline-block;
  padding: 9px 18px;
  background: rgba(57, 255, 20, 0.12);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: var(--radius);
  color: var(--news-accent);
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.page-news .cat-tab:hover {
  background: var(--news-accent);
  color: var(--news-bg);
  transform: translateY(-2px);
}
.page-news .news-latest {
  padding: 48px 0 40px;
}
.page-news .section-note {
  color: var(--news-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0 0;
  max-width: 52em;
}
.page-news .featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.page-news .article-card {
  background: var(--news-card);
  border: 1px solid var(--news-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.page-news .article-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 5px;
  background: var(--news-accent);
  opacity: 0.55;
}
.page-news .article-card:hover {
  box-shadow: var(--shadow-green);
  transform: rotate(-0.4deg);
}
.page-news .article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}
.page-news .article-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.page-news .article-index {
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1;
  color: rgba(57, 255, 20, 0.32);
  margin: 0;
}
.page-news .article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-news .article-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}
.page-news .article-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
}
.page-news .more-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-news .more-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  row-gap: 6px;
  padding: 18px 20px;
  background: rgba(26, 45, 74, 0.55);
  border-left: 3px solid var(--news-accent);
  border-radius: var(--radius);
  transition: background 0.25s ease;
}
.page-news .more-item:hover {
  background: rgba(26, 45, 74, 0.9);
}
.page-news .more-num {
  grid-row: 1 / span 3;
  grid-column: 1;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1;
  color: rgba(230, 232, 238, 0.22);
}
.page-news .more-meta {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-news .more-item h3 {
  grid-row: 2;
  grid-column: 2;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
}
.page-news .more-item p {
  grid-row: 3;
  grid-column: 2;
  font-size: 13px;
  line-height: 1.6;
  color: var(--news-muted);
  margin: 0;
}
.page-news .v4-special {
  position: relative;
  background: linear-gradient(120deg, #0a1e3f 0%, #1a2d4a 100%);
  border-top: 3px solid var(--news-accent);
  border-bottom: 3px solid var(--news-accent);
  padding: 46px 0;
  overflow: hidden;
}
.page-news .v4-special::before {
  content: "04";
  position: absolute;
  right: -20px;
  top: -34px;
  font-family: var(--font-head);
  font-size: 190px;
  line-height: 1;
  color: rgba(57, 255, 20, 0.09);
  pointer-events: none;
}
.page-news .v4-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}
.page-news .v4-copy .section-kicker {
  color: var(--news-accent);
}
.page-news .v4-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.page-news .v4-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 34em;
  margin: 0 0 24px;
}
.page-news .v4-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-green);
}
.page-news .news-platform {
  background: var(--sky);
  color: var(--ink);
  padding: 48px 0 56px;
}
.page-news .news-platform .section-kicker {
  color: var(--news-alert);
}
.page-news .news-platform .section-title {
  color: var(--navy);
}
.page-news .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(10, 30, 63, 0.14);
}
.page-news .timeline-item {
  position: relative;
  padding: 0 0 28px 40px;
  border-bottom: 1px solid rgba(10, 30, 63, 0.1);
}
.page-news .timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}
.page-news .timeline-dot {
  position: absolute;
  left: 8px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--news-accent);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.25);
}
.page-news .timeline-item time {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--news-alert);
  background: rgba(255, 69, 0, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  white-space: nowrap;
}
.page-news .timeline-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.page-news .timeline-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 54em;
}
@media (min-width: 768px) {
  .page-news .news-intro {
    padding-top: 44px;
  }
  .page-news .feature-card {
    grid-template-columns: 3fr 2fr;
  }
  .page-news .feature-media img {
    min-height: 380px;
  }
  .page-news .feature-copy {
    padding: 36px 32px;
  }
  .page-news .news-latest {
    padding: 56px 0 48px;
  }
  .page-news .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .article-card.is-feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
  .page-news .article-card.is-feature .article-media {
    height: 100%;
  }
  .page-news .article-card.is-feature .article-media img {
    min-height: 280px;
  }
  .page-news .more-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .more-item:last-child {
    grid-column: 1 / -1;
  }
  .page-news .v4-special {
    padding: 60px 0;
  }
  .page-news .v4-inner {
    grid-template-columns: 1fr 1fr;
  }
  .page-news .news-platform {
    padding: 60px 0 68px;
  }
  .page-news .timeline-item {
    padding: 0 0 32px 112px;
  }
  .page-news .timeline-item time {
    position: absolute;
    left: 36px;
    top: 2px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .page-news .feature-copy h2 {
    font-size: 44px;
  }
  .page-news .featured-grid {
    gap: 24px;
  }
  .page-news .article-body {
    padding: 24px;
  }
  .page-news .more-list {
    gap: 16px;
  }
  .page-news .more-item {
    padding: 22px 24px;
  }
}
