.page-news{
  --news-bg: var(--c-surface-light);
  --news-card: #ffffff;
  --news-line: #dfe6ee;
  --news-radius: 16px;
  --news-pad: clamp(1rem, 3vw, 2.5rem);
  --news-pill-line: #c7d2df;
  background:
    radial-gradient(circle at 88% 4%, rgba(57, 255, 20, .07), transparent 28%),
    var(--news-bg);
  color: #14213d;
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: clip;
}
.page-news, .page-news *, .page-news *::before, .page-news *::after{ box-sizing: border-box; }
.page-news [id]{ scroll-margin-top: 96px; }
.page-news a:focus-visible{ outline: 2px solid var(--c-accent); outline-offset: 3px; }

.page-news .breadcrumbs{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem var(--news-pad);
}
.page-news .breadcrumbs__list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: .4rem .6rem;
  margin: 0;
  padding: 0;
  font-size: .85rem;
  color: var(--c-text-muted);
}
.page-news .breadcrumbs__item{ display: flex; align-items: center; gap: .6rem; }
.page-news .breadcrumbs__item + .breadcrumbs__item::before{ content: "·"; color: #c3cfdd; }
.page-news .breadcrumbs__link{ color: var(--c-text-muted); text-decoration: none; transition: color .2s; }
.page-news .breadcrumbs__link:hover{ color: var(--c-accent2); }
.page-news .breadcrumbs__item[aria-current="page"]{ color: var(--c-primary); font-weight: 600; }

.page-news .news-hero{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--news-pad) 2rem;
  display: grid;
  gap: 1.25rem;
}
.page-news .news-hero__copy{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: var(--c-text-light);
  border-radius: var(--news-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.page-news .news-hero__copy::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.04) 44px 45px),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(255,255,255,.035) 36px 37px);
  pointer-events: none;
}
.page-news .news-hero__copy::after{
  content: "";
  position: absolute;
  top: -22%;
  right: -8%;
  width: 52%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(57,255,20,.16), transparent 62%);
  pointer-events: none;
}
.page-news .news-hero__kicker{
  position: relative;
  z-index: 1;
  margin: 0 0 .6rem;
  color: var(--c-accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.page-news .news-hero .display-title{
  position: relative;
  z-index: 1;
  margin: 0 0 .9rem;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--c-text-light);
}
.page-news .news-hero__lead{
  position: relative;
  z-index: 1;
  max-width: 35em;
  margin: 0;
  color: var(--c-text-muted);
  font-size: .98rem;
}
.page-news .news-hero__stats{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2rem;
  margin: 1.4rem 0 1.2rem;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
}
.page-news .news-hero__stat{ display: flex; flex-direction: column; }
.page-news .news-hero__stat strong{
  color: var(--c-accent);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.page-news .news-hero__stat span{ color: var(--c-text-muted); font-size: .78rem; }
.page-news .news-hero__actions{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.page-news .news-hero .btn--ghost{ border-color: rgba(255,255,255,.4); color: var(--c-text-light); }

.page-news .hero-report__link{
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  border-radius: var(--news-radius);
  overflow: hidden;
  background: var(--c-surface-dark);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .25s ease;
}
.page-news .hero-report__link:hover{ transform: translateY(-4px); }
.page-news .hero-report__media{
  aspect-ratio: 16/9;
  background: var(--c-secondary);
}
.page-news .hero-report__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news .hero-report__body{
  padding: 1.1rem 1.25rem 1.3rem;
  color: var(--c-text-light);
  background: var(--c-surface-dark);
}
.page-news .hero-report__title{
  margin: .5rem 0 .35rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--c-text-light);
}
.page-news .hero-report__dataline{ margin: 0; color: var(--c-text-muted); font-size: .85rem; font-weight: 600; }
.page-news .hero-report__cta{
  display: inline-block;
  margin-top: .8rem;
  color: var(--c-accent2);
  font-size: .85rem;
  font-weight: 800;
}
.page-news .hero-report__cta::after{ content: " →"; }

.page-news .news-layout{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--news-pad) 2.5rem;
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
.page-news .news-main{ display: grid; gap: 2.5rem; min-width: 0; }

.page-news .news-latest__head{ display: grid; gap: .2rem; }
.page-news .section-heading{
  position: relative;
  margin: 0;
  padding-left: .9rem;
}
.page-news .section-heading::before{
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  bottom: .18em;
  width: 6px;
  background: var(--c-accent);
  transform: skew(-14deg);
}
.page-news .section-sub{ margin: 0; color: var(--c-text-muted); font-size: .9rem; max-width: 38em; }

.page-news .news-filter{
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .2rem 0 .5rem;
  scrollbar-width: thin;
}
.page-news .news-filter__pill{
  flex: 0 0 auto;
  padding: .45rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--news-pill-line);
  background: var(--news-card);
  color: var(--c-primary);
  font-weight: 700;
  font-size: .84rem;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.page-news .news-filter__pill:hover{ border-color: var(--c-accent); }
.page-news .news-filter__pill.is-active{
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-text-light);
}

.page-news .report-list{
  display: grid;
  gap: 1.1rem;
  margin: 1.4rem 0 1.2rem;
  padding-left: 1.5rem;
  position: relative;
}
.page-news .report-list::before{
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-accent) 0, var(--c-line) 30%, var(--c-line) 100%);
  opacity: .4;
}
.page-news .report-item{
  position: relative;
  display: grid;
  grid-template-columns: clamp(88px, 26vw, 120px) minmax(0, 1fr);
  gap: 1rem;
  background: var(--news-card);
  border: 1px solid var(--news-line);
  border-radius: var(--news-radius);
  padding: .9rem;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 2px rgba(11,29,58,.04);
}
.page-news .report-item::before{
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 1.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(57,255,20,.18);
  z-index: 1;
}
.page-news .report-item:target{
  border-color: var(--c-accent2);
  box-shadow: 0 0 0 3px rgba(255,107,0,.16);
}
.page-news .report-item:target::before{
  background: var(--c-accent2);
  box-shadow: 0 0 0 4px rgba(255,107,0,.2);
}
@media (hover: hover) and (pointer: fine){
  .page-news .report-item:hover{
    border-color: var(--c-accent);
    box-shadow: 0 10px 26px rgba(11,29,58,.1);
  }
}

.page-news .report-item__media{
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 5/3;
  background: var(--c-secondary);
  min-width: 0;
}
.page-news .report-item__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news .report-item__media--status{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: linear-gradient(145deg, #18315d, #0b1d3a);
  color: var(--c-text-muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.page-news .report-item__media--status .status-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 8px rgba(57,255,20,.7);
}
.page-news .report-item__status-text{ white-space: nowrap; }

.page-news .report-item__body{ min-width: 0; }
.page-news .report-item__meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .6rem;
}
.page-news .report-item__round{ color: var(--c-text-muted); font-size: .78rem; font-weight: 700; }
.page-news .report-item__sport{
  font-size: .7rem;
  line-height: 1;
  padding: .28rem .5rem;
  border: 1px solid var(--news-pill-line);
  border-radius: 999px;
  color: var(--c-secondary);
  font-weight: 700;
}
.page-news .report-item__title{
  margin: .35rem 0 .3rem;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -.01em;
}
.page-news .report-item__summary{
  margin: 0 0 .75rem;
  color: #57657a;
  font-size: .88rem;
  line-height: 1.7;
}
.page-news .report-item__stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
  margin: 0;
  padding: 0;
}
.page-news .report-item__stats > div{
  background: var(--news-bg);
  border-radius: 8px;
  padding: .4rem .55rem;
}
.page-news .report-item__stats dt{ font-size: .68rem; color: var(--c-text-muted); line-height: 1.3; }
.page-news .report-item__stats dd{
  margin: 0;
  font-size: .9rem;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: .01em;
}

.page-news .news-loadmore{ display: inline-flex; width: auto; margin-top: .2rem; }

.page-news .news-aside{
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
}
.page-news .aside-card{
  background: var(--news-card);
  border: 1px solid var(--news-line);
  border-radius: var(--news-radius);
  padding: 1.1rem 1.15rem;
}
.page-news .aside-card__title{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .85rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.3;
}
.page-news .aside-card__title::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--c-accent2);
  transform: skew(-8deg);
  flex: 0 0 auto;
}
.page-news .aside-card p{ color: #57657a; font-size: .88rem; line-height: 1.7; margin: 0 0 .8rem; }
.page-news .aside-card__link{
  display: block;
  margin-top: .4rem;
  color: var(--c-secondary);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: color .2s;
}
.page-news .aside-card__link:hover{ color: var(--c-accent2); }

.page-news .phase-list{ display: grid; gap: .5rem; }
.page-news .phase-list__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--news-line);
  border-radius: 10px;
  padding: .65rem .85rem;
  text-decoration: none;
  color: var(--c-primary);
  font-weight: 700;
  font-size: .9rem;
  transition: border-color .2s, background .2s;
}
.page-news .phase-list__item:hover{ border-color: var(--c-accent); background: rgba(57,255,20,.05); }
.page-news .phase-list__item em{ font-style: normal; font-size: .75rem; color: var(--c-text-muted); }

.page-news .compare-card{
  border: none;
  background: linear-gradient(145deg, var(--c-primary), var(--c-secondary));
  color: var(--c-text-light);
}
.page-news .compare-card .aside-card__title{ color: var(--c-text-light); }
.page-news .compare-card p{ color: var(--c-text-muted); }
.page-news .btn--block{
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: .55rem;
}
.page-news .compare-card .btn--accent{ margin-bottom: .4rem; }

.page-news .news-aside__track{
  border-radius: var(--news-radius);
  overflow: hidden;
  aspect-ratio: 21/9;
  max-height: 200px;
  background: var(--c-secondary);
}
.page-news .news-aside__track img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .special{
  background: linear-gradient(140deg, var(--c-surface-dark), #0e2547);
  color: var(--c-text-light);
  border-radius: var(--news-radius);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  display: grid;
  gap: 1.4rem;
  margin: 0;
}
.page-news .special__kicker{
  margin: 0 0 .35rem;
  color: var(--c-accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-news .special .section-heading{ color: var(--c-text-light); margin-bottom: .8rem; }
.page-news .special__lead{ color: var(--c-text-muted); font-size: .95rem; margin: 0; }
.page-news .special__list{
  margin: 1.1rem 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .5rem;
}
.page-news .special__list li{
  position: relative;
  padding-left: 1.5rem;
  color: var(--c-text-light);
  font-size: .9rem;
}
.page-news .special__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--c-accent2);
  transform: skew(-8deg);
}
.page-news .special__media{ border-radius: 12px; overflow: hidden; }
.page-news .special__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 8/5;
  display: block;
}

.page-news .archives{
  background: var(--c-surface-dark);
  color: var(--c-text-light);
  margin-top: 0;
  padding: clamp(2rem, 6vw, 3.5rem) var(--news-pad);
}
.page-news .archives__head{
  max-width: var(--container-max);
  margin: 0 auto 2rem;
  display: grid;
  gap: .35rem;
}
.page-news .archives .section-heading{ color: var(--c-text-light); }
.page-news .archives__head .section-sub{ color: var(--c-text-muted); }
.page-news .archives__timeline{
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.page-news .archives .timeline__item{
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
}
.page-news .archives__index{
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(57,255,20,.55);
  letter-spacing: -.02em;
  margin-bottom: .7rem;
}
.page-news .archives__kicker{
  margin: 0 0 .35rem;
  color: var(--c-accent2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.page-news .archives__title{
  margin: 0 0 .5rem;
  color: var(--c-text-light);
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 900;
}
.page-news .archives .timeline__content p{
  color: var(--c-text-muted);
  font-size: .88rem;
  margin: 0 0 1rem;
}
.page-news .btn--small{ padding: .45rem .9rem; font-size: .8rem; }
.page-news .archives .btn--ghost{ border-color: rgba(255,255,255,.3); color: var(--c-text-light); }
.page-news .archives .btn--ghost:hover{ border-color: var(--c-accent); color: var(--c-text-light); }

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

@media (min-width: 768px){
  .page-news .report-item{ grid-template-columns: 140px minmax(0, 1fr); gap: 1.25rem; }
  .page-news .news-aside__track{ aspect-ratio: 3/4; max-height: 300px; }
  .page-news .archives__timeline{ grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .page-news .special{ grid-template-columns: 1fr 1fr; align-items: center; }
}

@media (min-width: 1024px){
  .page-news .news-hero{
    grid-template-columns: .9fr 1.4fr;
    gap: 2rem;
    align-items: stretch;
  }
  .page-news .news-hero__copy{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-news .hero-report__link{ position: relative; min-height: 520px; }
  .page-news .hero-report__media{ position: absolute; inset: 0; aspect-ratio: auto; }
  .page-news .hero-report__media img{ position: absolute; inset: 0; width: 100%; height: 100%; }
  .page-news .hero-report__body{
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, transparent 0%, rgba(7,21,38,.88) 58%, rgba(7,21,38,.96) 100%);
  }
  .page-news .news-layout{ grid-template-columns: minmax(0, 1fr) 330px; gap: 2.5rem; }
  .page-news .news-aside{ position: sticky; top: 24px; }
}
