/* ============================================================================
   News — listing (/news) + article (/news/<slug>). Built on main.css tokens.
   ============================================================================ */
.news-main { min-height: 50vh; }
.news-loading { text-align: center; color: var(--muted); padding: 4rem 1rem; }
.news-section { max-width: 1100px; }
.news-meta { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }

/* ---- Lead story ---------------------------------------------------------- */
.news-lead {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center;
  text-decoration: none; color: var(--white);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 18px;
  overflow: hidden; margin-bottom: 1.6rem; transition: border-color .18s, transform .18s;
}
.news-lead:hover { border-color: rgba(255,255,255,.22); transform: translateY(-3px); }
.news-lead-media { aspect-ratio: 16 / 10; background: #15151b; }
.news-lead-media img { width: 100%; height: 100%; object-fit: cover; }
.news-lead-body { padding: clamp(1.2rem, 3vw, 2rem); }
.news-lead-body h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.2; margin: .6rem 0 .7rem; }
.news-lead-body p { color: var(--muted); margin: 0 0 1rem; line-height: 1.6; }
.news-more { font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--pink); }
@media (max-width: 720px) { .news-lead { grid-template-columns: 1fr; } .news-lead-media { order: -1; } }

/* ---- Card grid ----------------------------------------------------------- */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card {
  display: flex; flex-direction: column; text-decoration: none; color: var(--white); overflow: hidden;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  transition: border-color .18s, transform .18s;
}
.news-card:hover { border-color: rgba(255,255,255,.22); transform: translateY(-3px); }
.news-card-media { aspect-ratio: 16 / 9; background: #15151b; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 1rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.news-card-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.08rem; font-weight: 700; text-transform: none; letter-spacing: 0; color: var(--white); margin: .5rem 0 .5rem; line-height: 1.3; }
.news-card-body p { color: var(--muted); font-size: .9rem; line-height: 1.55; margin: 0; flex: 1; }

/* ---- Article ------------------------------------------------------------- */
.news-article { max-width: 760px; margin: 0 auto; padding: 2.4rem 1.5rem 4rem; }
.news-article .back-link { display: inline-block; color: var(--cyan); text-decoration: none; font-size: .9rem; margin-bottom: 1.4rem; }
.news-article .back-link:hover { color: var(--white); }
.news-article .back-link.bottom { margin: 2.4rem 0 0; }
.news-article h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.1; margin: .6rem 0 1.4rem; }
.news-article-cover { width: 100%; border-radius: 14px; background: #15151b; margin: 0 0 1.8rem; }
.news-article-body { color: #d7d7df; font-size: 1.05rem; line-height: 1.8; }
.news-article-body p { margin: 0 0 1.3rem; }
.news-article-body a { color: var(--pink); }
