.page-news{
  --news-speed: 6px;
  --news-skew: -8deg;
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

.page-news::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(255,215,0,0.06), transparent 60%),
    radial-gradient(ellipse 50% 30% at 15% 55%, rgba(230,57,70,0.04), transparent 60%);
}

.page-news .container{
  position: relative;
  z-index: 1;
}

.page-news .breadcrumbs{
  padding-top: 40px;
  margin-bottom: 24px;
}

.page-news .news-masthead{
  position: relative;
  padding-top: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-regular);
}

.page-news .news-masthead .page-title{
  position: relative;
  max-width: 820px;
  padding-bottom: 16px;
}

.page-news .news-masthead .page-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 4px;
  background: var(--gradient-gold-red);
  border-radius: 99px;
  transform: skewX(-12deg);
}

.page-news .news-ticker{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  padding: 14px 20px;
  background: var(--bg-panel);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.page-news .news-ticker-label{
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.page-news .news-split{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-news .news-index{
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-lg);
}

.page-news .news-index::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(230,57,70,0.04) 100%);
}

.page-news .news-index-head{
  position: relative;
  margin-bottom: 20px;
}

.page-news .news-index-eyebrow{
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
}

.page-news .news-index h3{
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 6px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-news .news-index-list{
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-regular);
}

.page-news .news-index-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-regular);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: background 0.2s, padding-left 0.2s;
}

.page-news .news-index-list li:hover{
  background: rgba(255,215,0,0.05);
  padding-left: 12px;
}

.page-news .news-index-count{
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-gold);
  line-height: 1;
}

.page-news .news-index-total{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
}

.page-news .news-index-total span{
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.page-news .news-index-total strong{
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1;
  background: var(--gradient-gold-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-news .news-index-note{
  position: relative;
  margin: 14px 0 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-news .news-feed{
  display: grid;
  gap: 28px;
}

.page-news .news-featured{
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-panel);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-news .news-featured-media{
  overflow: hidden;
}

.page-news .news-featured-media img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.page-news .news-featured:hover .news-featured-media img{
  transform: scale(1.03);
}

.page-news .news-featured-body{
  padding: 28px 24px;
}

.page-news .news-item-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
}

.page-news .news-tag{
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-full);
  color: var(--accent-silver);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-news .news-tag-hot{
  color: var(--accent-red);
  border-color: rgba(230,57,70,0.4);
  background: rgba(230,57,70,0.08);
}

.page-news .news-time{
  color: var(--text-secondary);
  font-size: 0.72rem;
}

.page-news .news-featured-body h3,
.page-news .news-card-body h3,
.page-news .news-list-body h3{
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}

.page-news .news-featured-body p,
.page-news .news-card-body p,
.page-news .news-list-body p{
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.page-news .news-card-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .news-card{
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.page-news .news-card:hover{
  border-color: rgba(255,215,0,0.5);
  transform: translateY(-4px);
}

.page-news .news-card-icon{
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
}

.page-news .news-card-icon svg{
  width: 32px;
  height: 32px;
  display: block;
}

.page-news .news-list{
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-panel);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-news .news-list-item{
  display: flex;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line-regular);
  transition: background 0.3s;
}

.page-news .news-list-item:last-child{
  border-bottom: none;
}

.page-news .news-list-item:hover{
  background: rgba(255,215,0,0.04);
}

.page-news .news-list-num{
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--accent-red);
  opacity: 0.8;
}

.page-news .version-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .version-timeline{
  position: relative;
  padding-left: 28px;
}

.page-news .version-timeline::before{
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-red) 60%, var(--line-regular) 100%);
}

.page-news .version-item{
  position: relative;
  margin-bottom: 24px;
}

.page-news .version-dot{
  position: absolute;
  left: -28px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(255,215,0,0.12);
}

.page-news .version-dot-red{
  background: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(230,57,70,0.12);
}

.page-news .version-card{
  padding: 20px 22px;
  background: var(--bg-panel);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.page-news .version-card:hover{
  border-color: rgba(255,215,0,0.35);
  transform: translateX(4px);
}

.page-news .version-card-top{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.page-news .version-badge{
  background: var(--gradient-gold-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
}

.page-news .version-status{
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--accent-silver);
  letter-spacing: 0.05em;
}

.page-news .version-card h3{
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.page-news .version-card p{
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.page-news .version-aside{
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-news .version-image{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-regular);
}

.page-news .version-image img{
  width: 100%;
  height: auto;
  display: block;
}

.page-news .version-note{
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-lg);
}

.page-news .version-note-label{
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.page-news .version-note p{
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 10px 0 18px;
}

.page-news .news-helpdesk{
  position: relative;
  overflow: hidden;
  margin: 56px 0;
  padding: 32px 28px;
  background: var(--bg-panel);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-lg);
}

.page-news .news-helpdesk::after{
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.08), transparent 70%);
  pointer-events: none;
}

.page-news .helpdesk-title{
  position: relative;
  margin-bottom: 24px;
}

.page-news .helpdesk-title h2{
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin: 6px 0 0;
}

.page-news .helpdesk-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-news .helpdesk-item{
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.3s, background 0.3s;
}

.page-news .helpdesk-item:hover{
  border-color: rgba(255,215,0,0.45);
  background: rgba(255,215,0,0.04);
}

.page-news .helpdesk-num{
  grid-row: 1 / 3;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-gold);
  opacity: 0.75;
}

.page-news .helpdesk-item strong{
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.page-news .helpdesk-item span:last-child{
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.page-news .consensus-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .consensus-main{
  display: grid;
  gap: 18px;
  align-content: start;
}

.page-news .consensus-card{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--bg-panel);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.page-news .consensus-card:hover{
  border-color: rgba(255,215,0,0.4);
  transform: translateX(6px);
}

.page-news .consensus-rank{
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1;
  background: var(--gradient-gold-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-news .consensus-content h3{
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.page-news .consensus-content p{
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.page-news .consensus-meta{
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--accent-silver);
  letter-spacing: 0.04em;
}

.page-news .consensus-aside{
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-news .consensus-chart,
.page-news .consensus-cover{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-regular);
}

.page-news .consensus-chart img,
.page-news .consensus-cover img{
  width: 100%;
  height: auto;
  display: block;
}

.page-news .consensus-note{
  margin: 0;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-panel);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius-sm);
}

.page-news .news-footer-cta{
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin: 48px 0 64px;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(255,215,0,0.06) 0%, rgba(230,57,70,0.06) 100%);
  border: 1px solid var(--line-regular);
  border-radius: var(--radius-lg);
}

.page-news .news-footer-copy h2{
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin: 6px 0;
}

.page-news .news-footer-copy p:last-child{
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.page-news .news-footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px){
  .page-news .news-split{
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
  }

  .page-news .news-index{
    position: sticky;
    top: 100px;
  }

  .page-news .news-featured{
    grid-template-columns: 5fr 4fr;
  }

  .page-news .news-featured-media{
    height: 100%;
    min-height: 280px;
  }

  .page-news .news-featured-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-news .news-card-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-news .news-card{
    flex-direction: column;
    gap: 12px;
  }

  .page-news .news-list{
    grid-template-columns: 1fr 1fr;
  }

  .page-news .news-list-item:nth-child(1){
    border-right: 1px solid var(--line-regular);
    border-bottom: none;
  }

  .page-news .news-list-item:nth-child(2){
    border-right: none;
    border-bottom: none;
  }

  .page-news .version-layout{
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: start;
  }

  .page-news .version-aside{
    position: sticky;
    top: 100px;
  }

  .page-news .helpdesk-grid{
    grid-template-columns: 1fr 1fr;
  }

  .page-news .consensus-layout{
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
    align-items: start;
  }

  .page-news .consensus-aside{
    position: sticky;
    top: 100px;
  }

  .page-news .news-footer-cta{
    flex-direction: row;
    align-items: center;
  }
}
