.page-news{
  background: linear-gradient(180deg, var(--c-deep) 0%, var(--c-deeper) 100%);
  color: var(--c-offwhite);
  overflow: hidden;
}

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

.page-news .news-hero{
  position: relative;
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.page-news .news-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,107,53,.14), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(57,255,20,.05), transparent 40%);
  pointer-events: none;
}
.page-news .news-hero-inner{
  position: relative;
  z-index: 1;
}
.page-news .news-hero-grid{
  display: grid;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}
.page-news .news-hero-kicker{
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-neon);
  margin-bottom: 14px;
  display: inline-block;
}
.page-news .news-hero h1{
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 16px;
}
.page-news .news-hero-lead{
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: rgba(242,240,232,.75);
  max-width: 36em;
  margin-bottom: 26px;
}
.page-news .news-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-news .news-hero-visual{
  position: relative;
}
.page-news .news-speedlines{
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    -35deg,
    transparent 0 16px,
    rgba(255,107,53,.12) 16px 18px,
    transparent 18px 34px
  );
}
.page-news .news-hero-img{
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  object-fit: cover;
  transform: rotate(-1.2deg);
  transition: transform .3s ease;
}
.page-news .news-hero-img:hover{
  transform: rotate(0deg) scale(1.01);
}

.page-news .news-section-01{
  padding-top: 8px;
}
.page-news .news-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.page-news .news-filter{
  font-size: .82rem;
  color: rgba(242,240,232,.65);
  border: 1px solid rgba(74,101,114,.5);
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.page-news .news-filter:hover{
  border-color: var(--c-neon);
  color: var(--c-neon);
  box-shadow: var(--shadow-glow-green);
}
.page-news .news-filter.is-active{
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-deep);
  font-weight: 700;
  box-shadow: var(--shadow-glow-orange);
}
.page-news .news-scroll-row{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 4px;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-terra) rgba(74,101,114,.2);
}
.page-news .news-scroll-row::-webkit-scrollbar{
  height: 6px;
}
.page-news .news-scroll-row::-webkit-scrollbar-track{
  background: rgba(74,101,114,.2);
  border-radius: 3px;
}
.page-news .news-scroll-row::-webkit-scrollbar-thumb{
  background: var(--c-terra);
  border-radius: 3px;
}
.page-news .news-card{
  scroll-snap-align: start;
  flex: 0 0 82%;
  max-width: 320px;
  min-height: 216px;
  background: rgba(42,42,53,.65);
  border: 1px solid rgba(242,240,232,.07);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.page-news .news-card:hover{
  border-color: rgba(255,107,53,.5);
  box-shadow: var(--shadow-glow-orange), var(--shadow-glass);
  transform: translateY(-2px);
}
.page-news .news-card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.page-news .news-card-tag{
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-terra);
  border: 1px solid rgba(193,101,76,.4);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .06em;
}
.page-news .news-card-time{
  font-family: var(--font-mono);
  font-size: .78rem;
  color: rgba(242,240,232,.5);
}
.page-news .news-card h3{
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--c-offwhite);
}
.page-news .news-card p{
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(242,240,232,.68);
  margin: 0 0 16px;
  flex: 1;
}
.page-news .news-card-more{
  font-size: .85rem;
  color: var(--c-orange);
  text-decoration: none;
  font-weight: 600;
}
.page-news .news-card-more:hover{
  color: var(--c-neon);
}

.page-news .news-section-02{
  position: relative;
  border-top: 1px solid rgba(74,101,114,.2);
}
.page-news .news-schedule-grid{
  display: grid;
  gap: 28px;
}
.page-news .news-schedule-copy h2{
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 14px;
}
.page-news .news-schedule-copy > p{
  color: rgba(242,240,232,.72);
  line-height: 1.75;
  max-width: 30em;
  margin: 0 0 24px;
}
.page-news .news-timeline{
  position: relative;
  padding-left: 26px;
  margin: 0 0 26px;
}
.page-news .news-timeline::before{
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--c-orange), var(--c-neon), var(--c-teal));
}
.page-news .news-timeline-item{
  position: relative;
  padding-bottom: 18px;
}
.page-news .news-timeline-item:last-child{
  padding-bottom: 0;
}
.page-news .news-timeline-dot{
  position: absolute;
  left: -23px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 0 4px rgba(57,255,20,.12), var(--shadow-glow-green);
}
.page-news .news-timeline-card{
  background: rgba(42,42,53,.5);
  border: 1px solid rgba(74,101,114,.2);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.page-news .news-timeline-item:hover .news-timeline-card{
  border-color: rgba(57,255,20,.35);
  box-shadow: var(--shadow-glow-green), var(--shadow-glass);
}
.page-news .news-timeline-step{
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-orange);
  font-weight: 700;
}
.page-news .news-timeline-card h3{
  font-size: 1.05rem;
  font-weight: 800;
  margin: 6px 0 4px;
}
.page-news .news-timeline-card p{
  font-size: .86rem;
  line-height: 1.6;
  color: rgba(242,240,232,.68);
  margin: 0;
}
.page-news .news-schedule-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-news .news-schedule-visual{
  position: relative;
}
.page-news .news-schedule-imgwrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}
.page-news .news-schedule-imgwrap img{
  width: 100%;
  display: block;
}
.page-news .news-schedule-note{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(242,240,232,.5);
}
.page-news .news-schedule-note-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: var(--shadow-glow-green);
  animation: news-pulse 2s ease infinite;
}
@keyframes news-pulse{
  0%, 100%{opacity: 1;}
  50%{opacity: .4;}
}

.page-news .news-section-03{
  position: relative;
  background: linear-gradient(180deg, rgba(42,42,53,.35), transparent 70%);
}
.page-news .news-time-stage{
  display: grid;
  gap: 26px;
}
.page-news .news-time-intro h2{
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 14px;
}
.page-news .news-time-quote{
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-neon);
  margin: 0 0 12px;
}
.page-news .news-time-intro > p:not(.news-time-quote){
  color: rgba(242,240,232,.72);
  line-height: 1.75;
  margin: 0 0 18px;
}
.page-news .news-time-counter{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 30px;
  background: rgba(42,42,53,.75);
  border: 1px solid rgba(57,255,20,.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow-green), var(--shadow-glass);
}
.page-news .news-time-counter strong{
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--c-neon);
  letter-spacing: .06em;
  line-height: 1;
}
.page-news .news-time-counter span{
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  color: rgba(242,240,232,.5);
  margin-top: 6px;
}
.page-news .news-time-side{
  display: grid;
  gap: 18px;
}
.page-news .news-time-side img{
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  display: block;
}
.page-news .news-time-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .news-time-list li{
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .9rem;
  color: rgba(242,240,232,.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(74,101,114,.18);
}
.page-news .news-time-list li:last-child{
  border-bottom: 0;
}
.page-news .news-time-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: var(--shadow-glow-orange);
  flex: none;
}

.page-news .news-section-04{
  position: relative;
}
.page-news .news-records-layout{
  display: grid;
  gap: 24px;
}
.page-news .news-records-copy{
  display: grid;
  gap: 14px;
}
.page-news .news-record-feature{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  background: rgba(42,42,53,.5);
  border: 1px solid rgba(74,101,114,.2);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, transform .2s ease;
}
.page-news .news-record-feature:hover{
  border-color: rgba(255,107,53,.4);
  transform: translateX(4px);
}
.page-news .news-record-num{
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--c-orange);
  line-height: 1;
}
.page-news .news-record-feature:first-child .news-record-num{
  color: var(--c-moss);
}
.page-news .news-record-feature:last-child .news-record-num{
  color: var(--c-neon);
}
.page-news .news-record-feature h3{
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 6px;
}
.page-news .news-record-feature p{
  font-size: .86rem;
  line-height: 1.65;
  color: rgba(242,240,232,.68);
  margin: 0;
}
.page-news .news-records-visual img{
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  display: block;
}
.page-news .news-records-cta{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-section-05{
  position: relative;
  border-top: 1px solid rgba(74,101,114,.2);
}
.page-news .news-announce-list{
  display: grid;
  gap: 14px;
}
.page-news .news-fold{
  background: rgba(42,42,53,.55);
  border: 1px solid rgba(74,101,114,.25);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.page-news .news-fold[open]{
  border-color: rgba(57,255,20,.3);
  box-shadow: var(--shadow-glow-green);
}
.page-news .news-fold summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.4;
}
.page-news .news-fold summary::-webkit-details-marker{
  display: none;
}
.page-news .news-fold summary::after{
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--c-orange);
  transition: transform .2s ease;
  flex: none;
}
.page-news .news-fold[open] summary::after{
  transform: rotate(45deg);
}
.page-news .news-fold-body{
  padding: 0 20px 20px;
  color: rgba(242,240,232,.72);
  line-height: 1.7;
  font-size: .9rem;
  border-top: 1px solid rgba(74,101,114,.16);
}
.page-news .news-fold-tag{
  display: inline-block;
  font-size: .72rem;
  color: var(--c-terra);
  border: 1px solid rgba(193,101,76,.35);
  padding: 2px 8px;
  border-radius: 999px;
  margin: 14px 0 10px;
  letter-spacing: .06em;
}
.page-news .news-fold-body p{
  margin: 0 0 12px;
}
.page-news .news-fold-body a{
  color: var(--c-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.page-news .news-fold-body a:hover{
  color: var(--c-neon);
}

@media (min-width: 900px){
  .page-news .news-hero-grid{
    grid-template-columns: 3fr 2fr;
    gap: 48px;
  }
  .page-news .news-card{
    flex-basis: 300px;
    max-width: 340px;
  }
  .page-news .news-schedule-grid{
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start;
  }
  .page-news .news-time-stage{
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center;
  }
  .page-news .news-records-layout{
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
  }
  .page-news .news-announce-list{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .page-news .news-record-feature{
    padding: 20px;
  }
}
