/* =========================
   NEWS (unchanged)
   ========================= */
#news.section{ padding: 16px 0 22px; }

#news .news-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

#news .news-card,
#news .news-stack{
  border-radius: 18px;
  overflow: hidden;
  position: relative;

  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.50);

  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#news .news-card{ padding: 18px; }
#news .news-stack{ padding: 18px; }

#news .news-card.is-pinned::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:3px;
  background: linear-gradient(90deg, rgba(138,0,0,0), rgba(138,0,0,0.85), rgba(138,0,0,0));
}

#news .news-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

#news .news-toplabel{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

#news .pinned-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

#news .pinned-title{
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.6px;
  line-height: 1;
}

#news .pinned-date{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

#news .news-subline{
  margin: 0 0 10px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

#news .news-text{
  margin: 0 0 14px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.25px;
  line-height: 1.55;
}

#news ul, #news ol{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

#news .preview-list{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

#news .preview-row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);

  backdrop-filter: blur(10px) saturate(90%);
  -webkit-backdrop-filter: blur(10px) saturate(90%);
}

#news .preview-song{
  min-width: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
}

#news .preview-actions{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  justify-content:flex-end;
  white-space: nowrap;
}

/* IMPORTANT: don't style preview-btn here anymore.
   Music owns preview-btn styling in music.css */

#news .news-items{
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

#news .news-item{
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

#news .news-item-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 6px;
}

#news .news-item-title{
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.90);
}

#news .news-item-date{
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  white-space: nowrap;
}

#news .news-item-text{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

@media (max-width: 720px){
  #news .news-wrap{ grid-template-columns: 1fr; }
  #news .preview-row{ grid-template-columns: 1fr auto; gap: 10px; }
  #news .preview-actions{ justify-content: flex-end; }
}

#news .news-feedback{
  margin-top: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.35px;
}

#news .news-feedback a{
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
}

#news .news-feedback a:hover{
  text-decoration: underline;
}