.page-news{
  --news-radius: 26px;
  --news-gap: 22px;
  --news-shadow: 0 14px 44px rgba(0,0,0,.35);
  background:
    radial-gradient(1100px 360px at 90% -10%, rgba(255,106,0,.14), transparent 60%),
    radial-gradient(800px 500px at -8% 28%, rgba(0,168,181,.08), transparent 55%);
  overflow: clip;
}
.page-news .container{
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 44px 20px 96px;
}
.page-news .breadcrumb{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}
.page-news .breadcrumb a{
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.page-news .breadcrumb a:hover{
  color: var(--orange-bright);
}
.page-news .breadcrumb .sep{
  color: var(--border);
}
.news-hero{
  display: grid;
  gap: 34px;
  margin-bottom: 72px;
}
.news-hero__intro .kicker{
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 14px;
}
.page-news h1{
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: .96;
  letter-spacing: .01em;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 11ch;
}
.news-hero__intro .lead{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 26px;
}
.news-hero__stats{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.stat-item{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.stat-item__num{
  font-family: var(--data-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
}
.stat-item__label{
  font-size: 12px;
  color: var(--muted);
}
.feature-story{
  border-radius: var(--news-radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--news-shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-story:hover{
  transform: translateY(-6px);
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 18px 48px rgba(0,0,0,.5);
}
.feature-story__media{
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--panel-2);
}
.feature-story__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-story__body{
  padding: 24px;
}
.feature-story__body .match-kicker{
  color: var(--orange);
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-story h2{
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.08;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-story p{
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.feature-story__meta{
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.feature-story .btn{
  display: inline-flex;
}
.news-latest{
  margin-bottom: 80px;
}
.section-head{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.section-head .kicker{
  color: var(--cyan-light);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-head h2{
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  margin: 0;
  color: var(--text);
}
.section-head__desc{
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}
.article-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--news-gap);
  align-items: start;
}
.article-card{
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: var(--news-radius);
  background: linear-gradient(180deg, rgba(30,38,50,.8), rgba(21,26,36,.9));
  border: 1px solid var(--border);
  box-shadow: var(--news-shadow);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.article-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 18px 48px rgba(0,0,0,.5);
}
.article-card__media{
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--panel);
}
.article-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-card__media--chart{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,106,0,.12), transparent 40%),
    var(--panel);
}
.article-card__media--chart svg{
  width: 100%;
  height: 100%;
  max-height: 180px;
}
.article-card__content{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  flex: 1;
}
.article-card__meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.article-card__time{
  margin-left: auto;
  font-family: var(--data-font);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.article-card h3{
  font-family: var(--heading-font);
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
}
.article-card p{
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem;
  margin: 0;
}
.article-card__foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.article-card__length{
  font-family: var(--data-font);
  font-size: 12px;
  color: var(--muted);
}
.article-card__foot a{
  color: var(--orange-bright);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition);
}
.article-card__foot a:hover{
  color: var(--orange);
}
.article-card--small .article-card__content,
.article-card--smallest .article-card__content{
  padding: 18px;
}
.article-card--smallest h3{
  font-size: 1.1rem;
}
.news-topics{
  margin-bottom: 80px;
}
.topics-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.topics-panels{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.topic-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
  border-radius: var(--news-radius);
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--news-shadow);
}
.topic-card::before{
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--orange-bright));
}
.topic-card--cyan::before{
  background: linear-gradient(180deg, var(--cyan), var(--cyan-light));
}
.topic-card__chart{
  aspect-ratio: 16 / 8;
  margin-bottom: 18px;
}
.topic-card__chart svg{
  width: 100%;
  height: 100%;
  display: block;
}
.topic-card .panel-label{
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 8px;
}
.topic-card--cyan .panel-label{
  color: var(--cyan-light);
}
.topic-card h3{
  font-family: var(--heading-font);
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--text);
}
.topic-card p{
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.topic-card__meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.topic-card__meta .btn{
  margin-left: auto;
}
.news-archive{
  margin-bottom: 80px;
}
.archive-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}
.archive-card{
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--news-shadow);
  overflow: hidden;
}
.archive-card__index{
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--heading-font);
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(255,106,0,.18);
  pointer-events: none;
}
.archive-card--topic .archive-card__index{
  color: rgba(0,168,181,.2);
}
.archive-card h3{
  font-family: var(--heading-font);
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text);
}
.archive-card__desc{
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 42ch;
}
.archive-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}
.archive-list a{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,.02);
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}
.archive-list a::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .5;
  flex: none;
}
.archive-list a:hover{
  border-color: var(--border);
  background: var(--panel-2);
}
.archive-list a:hover::before{
  opacity: 1;
}
.news-follow{
  margin-bottom: 20px;
}
.news-follow__inner{
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(255,106,0,.16), transparent 60%),
    linear-gradient(135deg, rgba(30,38,50,.9), rgba(21,26,36,.95));
  border: 1px solid var(--border);
  box-shadow: var(--news-shadow);
  text-align: center;
}
.news-follow__inner .kicker{
  color: var(--cyan-light);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-follow__inner h2{
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text);
}
.news-follow__inner .lead{
  color: var(--muted);
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 26px;
  line-height: 1.75;
}
.news-follow__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.news-follow__note{
  color: var(--muted);
  font-size: 13px;
  font-family: var(--data-font);
}

@media (min-width: 860px){
  .news-hero{
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
    min-height: 460px;
  }
  .feature-story__body{
    padding: 28px 30px 30px;
  }
  .feature-story__media{
    aspect-ratio: 16 / 7;
  }
  .section-head{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .section-head .kicker{
    margin-bottom: 0;
  }
  .article-grid{
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
  }
  .article-card--wide{
    grid-column: span 7;
  }
  .article-card--medium{
    grid-column: span 5;
  }
  .article-card--small{
    grid-column: span 4;
  }
  .article-card--smallest{
    grid-column: span 3;
  }
  .article-card--offset-1{
    margin-top: 52px;
  }
  .article-card--offset-2{
    margin-top: 38px;
  }
  .article-card--offset-3{
    margin-top: 84px;
  }
  .topics-panels{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .archive-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .archive-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce){
  .page-news [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .page-news .article-card,
  .page-news .feature-story{
    transition: none !important;
  }
}
