.page-news{
  --news-dark:#161616;
  --news-raised:#1e1e1e;
  --news-border:rgba(255,255,255,.08);
  --news-text-soft:rgba(255,255,255,.72);
  background:var(--dark);
  color:var(--text-light);
  overflow-x:hidden;
}
.page-news .news-hero{
  padding:44px 20px 52px;
  background:
    radial-gradient(ellipse at 82% 18%,rgba(180,228,0,.14),transparent 52%),
    radial-gradient(ellipse at 12% 88%,rgba(0,166,81,.16),transparent 46%),
    linear-gradient(140deg,#0e0e0e,#1a1a1a);
  border-bottom:1px solid var(--border);
}
.page-news .news-hero-inner{
  max-width:var(--container);
  margin:0 auto;
}
.page-news .news-hero .breadcrumbs{
  margin-bottom:26px;
}
.page-news .news-hero .section-kicker{
  color:var(--lime);
  margin-bottom:10px;
}
.page-news .news-title{
  font-family:var(--font-head);
  font-size:clamp(34px,5vw,60px);
  line-height:1.04;
  letter-spacing:.015em;
  text-transform:uppercase;
  margin:0 0 18px;
  color:var(--text-light);
  max-width:900px;
}
.page-news .news-title-suffix{
  display:block;
  font-size:.42em;
  color:var(--lime);
  letter-spacing:.05em;
  margin-top:4px;
}
.page-news .news-lead{
  font-size:17px;
  line-height:1.75;
  color:var(--news-text-soft);
  max-width:640px;
}
.page-news .news-filter{
  background:var(--cream);
  padding:22px 20px;
  border-bottom:3px solid var(--kiwi);
}
.page-news .news-filter-inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}
@media(min-width:768px){
  .page-news .news-filter-inner{
    flex-direction:row;
    align-items:center;
    gap:28px;
  }
}
.page-news .news-filter-title{
  font-family:var(--font-head);
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin:0;
  color:var(--text-dark);
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.page-news .news-filter-title::before{
  content:'';
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--kiwi);
  flex-shrink:0;
}
.page-news .tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.page-news .tag{
  display:inline-flex;
  align-items:center;
  padding:7px 16px;
  border-radius:var(--radius-pill);
  font-size:13px;
  font-weight:700;
  line-height:1.5;
  text-decoration:none;
  transition:var(--transition);
  border:1px solid transparent;
}
.page-news .tag:hover{
  transform:translateY(-1px);
}
.page-news .tag.is-active{
  background:var(--kiwi);
  color:var(--text-light);
}
.page-news .tag:not(.is-active):not(.tag-green):not(.tag-yellow):not(.tag-orange):not(.tag-lime):not(.tag-cream){
  background:transparent;
  border-color:rgba(26,26,26,.28);
  color:var(--text-dark);
}
.page-news .tag:not(.is-active):not(.tag-green):not(.tag-yellow):not(.tag-orange):not(.tag-lime):not(.tag-cream):hover{
  border-color:var(--kiwi);
  color:var(--kiwi);
}
.page-news .tag-green{
  background:var(--kiwi);
  color:var(--text-light);
  border-color:transparent;
}
.page-news .tag-yellow{
  background:var(--yellow);
  color:var(--text-dark);
  border-color:transparent;
}
.page-news .tag-orange{
  background:var(--orange);
  color:var(--text-light);
  border-color:transparent;
}
.page-news .tag-lime{
  background:var(--lime);
  color:var(--text-dark);
  border-color:transparent;
}
.page-news .tag-cream{
  background:var(--cream);
  color:var(--text-dark);
  border-color:transparent;
}
.page-news .news-content{
  background:var(--news-dark);
  padding:56px 20px 72px;
}
@media(min-width:768px){
  .page-news .news-content{
    padding:72px 24px 88px;
  }
}
.page-news .news-content-header{
  max-width:var(--container);
  margin:0 auto 38px;
}
.page-news .news-content-header .section-kicker{
  color:var(--kiwi);
  margin-bottom:8px;
}
.page-news .news-content-header h2{
  font-family:var(--font-head);
  font-size:clamp(26px,3.5vw,36px);
  text-transform:uppercase;
  letter-spacing:.05em;
  margin:0 0 8px;
}
.page-news .news-content-sub{
  font-size:15px;
  color:var(--news-text-soft);
  margin:0;
}
.page-news .news-content-grid{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:48px;
}
@media(min-width:1024px){
  .page-news .news-content-grid{
    grid-template-columns:minmax(0,2.1fr) minmax(0,.9fr);
    gap:56px;
    align-items:start;
  }
}
.page-news .news-timeline{
  position:relative;
}
.page-news .news-timeline::before{
  content:'';
  position:absolute;
  left:15px;
  top:6px;
  bottom:6px;
  width:2px;
  border-radius:2px;
  background:linear-gradient(to bottom,var(--kiwi),var(--lime) 45%,var(--yellow) 75%,rgba(255,213,0,.08));
}
.page-news .timeline-item{
  position:relative;
  padding:0 0 40px 46px;
  scroll-margin-top:90px;
}
.page-news .timeline-item:last-child{
  padding-bottom:0;
}
.page-news .timeline-node{
  position:absolute;
  left:4px;
  top:10px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:var(--dark);
  border:3px solid var(--kiwi);
  box-shadow:0 0 0 4px rgba(0,166,81,.16);
  z-index:1;
  transition:var(--transition);
}
.page-news .timeline-item:hover .timeline-node{
  transform:scale(1.18);
  box-shadow:0 0 0 8px rgba(0,166,81,.22);
}
.page-news .timeline-item:target .timeline-node{
  border-color:var(--yellow);
  box-shadow:0 0 0 9px rgba(255,213,0,.22);
}
.page-news .cat-data .timeline-node{
  border-color:var(--yellow);
  box-shadow:0 0 0 4px rgba(255,213,0,.16);
}
.page-news .cat-story .timeline-node{
  border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(255,107,0,.16);
}
.page-news .cat-guide .timeline-node{
  border-color:var(--lime);
  box-shadow:0 0 0 4px rgba(180,228,0,.16);
}
.page-news .cat-watch .timeline-node{
  border-color:var(--cream);
  box-shadow:0 0 0 4px rgba(245,240,230,.16);
}
.page-news .cat-data:hover .timeline-node{
  box-shadow:0 0 0 8px rgba(255,213,0,.24);
}
.page-news .cat-story:hover .timeline-node{
  box-shadow:0 0 0 8px rgba(255,107,0,.24);
}
.page-news .cat-guide:hover .timeline-node{
  box-shadow:0 0 0 8px rgba(180,228,0,.24);
}
.page-news .cat-watch:hover .timeline-node{
  box-shadow:0 0 0 8px rgba(245,240,230,.24);
}
.page-news .timeline-card{
  background:var(--news-raised);
  border:1px solid var(--news-border);
  border-radius:var(--radius-lg);
  padding:22px 20px;
  transition:var(--transition);
}
@media(min-width:640px){
  .page-news .timeline-card{
    padding:26px 28px;
  }
}
.page-news .timeline-item:hover .timeline-card{
  border-color:rgba(0,166,81,.38);
  transform:translateY(-2px);
}
.page-news .timeline-item:target .timeline-card{
  border-color:rgba(255,213,0,.55);
  background:rgba(255,213,0,.035);
}
.page-news .timeline-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 12px;
  margin-bottom:14px;
}
.page-news .timeline-time{
  font-family:var(--font-data);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
}
.page-news .timeline-body{
  display:flex;
  flex-direction:column;
  gap:16px;
}
@media(min-width:640px){
  .page-news .timeline-body{
    flex-direction:row;
    align-items:flex-start;
    gap:22px;
  }
}
.page-news .timeline-copy{
  flex:1;
  min-width:0;
}
.page-news .timeline-copy h3{
  font-family:var(--font-head);
  font-size:20px;
  line-height:1.32;
  letter-spacing:.02em;
  margin:0 0 10px;
  color:var(--text-light);
}
@media(min-width:768px){
  .page-news .timeline-copy h3{
    font-size:24px;
  }
}
.page-news .timeline-copy p{
  font-size:14.5px;
  line-height:1.78;
  color:var(--news-text-soft);
  margin:0 0 14px;
}
.page-news .timeline-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:700;
  color:var(--lime);
  text-decoration:none;
  transition:var(--transition);
}
.page-news .timeline-link::after{
  content:'→';
  transition:transform .2s ease-out;
}
.page-news .timeline-link:hover{
  color:var(--yellow);
}
.page-news .timeline-link:hover::after{
  transform:translateX(4px);
}
.page-news .timeline-thumb{
  width:200px;
  height:200px;
  aspect-ratio:1/1;
  object-fit:cover;
  max-width:100%;
  border-radius:var(--radius-md);
  border:2px solid rgba(255,255,255,.1);
  flex-shrink:0;
  display:block;
  margin:0 auto;
}
@media(min-width:640px){
  .page-news .timeline-thumb{
    margin:6px 0 0;
  }
}
@media(max-width:639px){
  .page-news .timeline-thumb{
    width:100%;
    height:auto;
    max-width:320px;
  }
}
.page-news .news-aside{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.page-news .news-aside .side-note{
  background:var(--news-raised);
  border:1px solid var(--news-border);
  border-left:4px solid var(--kiwi);
  border-radius:var(--radius-lg);
  padding:22px;
}
.page-news .news-aside .side-note:nth-child(2){
  border-left-color:var(--yellow);
}
.page-news .news-aside .side-note:nth-child(3){
  border-left-color:var(--orange);
}
.page-news .side-note-title{
  font-family:var(--font-head);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin:0 0 12px;
  color:var(--text-light);
  display:flex;
  align-items:center;
  gap:8px;
}
.page-news .side-note-title::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--kiwi);
  flex-shrink:0;
}
.page-news .side-note:nth-child(2) .side-note-title::before{
  background:var(--yellow);
}
.page-news .side-note:nth-child(3) .side-note-title::before{
  background:var(--orange);
}
.page-news .side-note-text{
  font-size:14px;
  line-height:1.7;
  color:var(--news-text-soft);
  margin:0;
}
.page-news .news-aside-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.page-news .news-aside-links a{
  color:var(--lime);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  transition:var(--transition);
}
.page-news .news-aside-links a:hover{
  color:var(--yellow);
  padding-left:4px;
}
.page-news .news-stat{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  font-size:13.5px;
  color:var(--news-text-soft);
}
.page-news .news-stat:last-child{
  margin-bottom:0;
}
.page-news .news-stat .data-pill{
  flex-shrink:0;
  min-width:58px;
  text-align:center;
}
.page-news .news-subscribe{
  background:linear-gradient(118deg,#0b8a46 0%,var(--kiwi) 46%,#008242 100%);
  padding:54px 20px 58px;
}
@media(min-width:768px){
  .page-news .news-subscribe{
    padding:64px 24px;
  }
}
.page-news .news-subscribe-inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:26px;
  align-items:flex-start;
}
@media(min-width:800px){
  .page-news .news-subscribe-inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:40px;
  }
}
.page-news .news-subscribe-copy{
  max-width:600px;
}
.page-news .news-subscribe .section-kicker{
  color:var(--lime);
  margin-bottom:8px;
}
.page-news .news-subscribe h2{
  font-family:var(--font-head);
  font-size:clamp(26px,3.5vw,36px);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin:0 0 12px;
  color:var(--text-light);
}
.page-news .news-subscribe p:not(.section-kicker){
  font-size:15px;
  line-height:1.75;
  color:rgba(255,255,255,.88);
  margin:0;
}
.page-news .news-subscribe-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.page-news .news-subscribe-actions .btn-primary{
  background:var(--orange);
  border-color:var(--orange);
}
.page-news .news-subscribe-actions .btn-primary:hover{
  background:#e65f00;
  border-color:#e65f00;
  transform:translateY(-2px);
}
.page-news .news-subscribe-actions .btn:not(.btn-primary){
  background:rgba(255,255,255,.03);
  border:2px solid rgba(255,255,255,.5);
  color:var(--text-light);
}
.page-news .news-subscribe-actions .btn:not(.btn-primary):hover{
  border-color:var(--text-light);
  background:rgba(255,255,255,.1);
}
.page-news .breadcrumb-link{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
}
.page-news .breadcrumb-link:hover{
  color:var(--lime);
}
.page-news .breadcrumb-current{
  color:var(--text-light);
  font-size:13px;
}
