/* News & Media — public list + article */

.news-empty{
  text-align:center; color: var(--kx-muted, rgba(255,255,255,.6));
  padding:60px 20px; font-size:16px;
}

/* ---- index grid ---- */
.news-grid{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:22px; padding:28px 0 10px;
}
.news-card{
  display:flex; flex-direction:column; text-decoration:none; color:inherit;
  border:1px solid rgba(255,255,255,.10); border-radius:18px; overflow:hidden;
  background: rgba(255,255,255,.03); transition: transform .15s ease, border-color .15s ease;
}
.news-card:hover{ transform: translateY(-3px); border-color: rgba(245,158,11,.4); }
.news-card-media{ position:relative; aspect-ratio:16/9; background: rgba(0,0,0,.35); }
.news-card-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.news-card-noimg{ display:flex; align-items:center; justify-content:center; height:100%; font-size:40px; opacity:.5; }
.news-badge{
  position:absolute; top:10px; left:10px; padding:4px 10px; border-radius:999px;
  font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.3px;
  background: rgba(0,0,0,.6); color:#fff; border:1px solid rgba(255,255,255,.2);
}
.news-badge-interview{ background: rgba(52,211,153,.22); border-color: rgba(52,211,153,.5); color:#a7f3d0; }
.news-badge-announcement{ background: rgba(96,165,250,.22); border-color: rgba(96,165,250,.5); color:#bfdbfe; }
.news-card-body{ padding:16px; display:flex; flex-direction:column; gap:8px; }
.news-card-title{ font-weight:800; font-size:17px; line-height:1.3; margin:0; color: rgba(255,255,255,.94); }
.news-card-excerpt{ font-size:13px; color: rgba(255,255,255,.6); line-height:1.5; margin:0;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.news-card-date{ font-size:12px; color: rgba(255,255,255,.4); margin-top:auto; }

.news-pager{ display:flex; align-items:center; justify-content:center; gap:18px; margin:34px 0 10px; }
.news-pageinfo{ color: rgba(255,255,255,.55); font-size:13px; }

/* ---- single article ---- */
.post-wrap{ max-width: 780px; margin: 30px auto 0; }
.post-back{ margin-bottom:18px; }
.post-back a, .post-foot a{ color: rgba(245,158,11,.95); text-decoration:none; font-weight:700; font-size:14px; }
.post-back a:hover{ text-decoration:underline; }
.post-kicker{ display:inline-block; font-size:12px; font-weight:800; text-transform:uppercase;
  letter-spacing:.4px; color: rgba(245,158,11,.95); margin-bottom:10px; }
.post-kicker-interview{ color:#34d399; }
.post-kicker-announcement{ color:#60a5fa; }
.post-title{ font-family: var(--kx-display, inherit); font-weight:900;
  font-size: clamp(28px, 5vw, 44px); line-height:1.12; margin:0 0 12px; }
.post-meta{ color: rgba(255,255,255,.5); font-size:14px; margin-bottom:22px; }
.post-video{ position:relative; aspect-ratio:16/9; border-radius:16px; overflow:hidden;
  background:#000; margin: 8px 0 26px; border:1px solid rgba(255,255,255,.1); }
.post-video iframe, .post-video video{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.post-cover{ border-radius:16px; overflow:hidden; margin:8px 0 26px; border:1px solid rgba(255,255,255,.1); }
.post-cover img{ width:100%; display:block; }

/* linked-winner card */
.post-winner-card{
  display:flex; align-items:center; gap:16px; text-decoration:none; color:inherit;
  margin:6px 0 26px; padding:14px 16px; border-radius:16px;
  border:1px solid rgba(245,158,11,.3); background: rgba(245,158,11,.07);
  transition: border-color .15s ease, transform .15s ease;
}
.post-winner-card:hover{ border-color: rgba(245,158,11,.6); transform: translateY(-2px); }
.post-winner-photo{ width:64px; height:64px; border-radius:50%; object-fit:cover;
  border:2px solid rgba(245,158,11,.5); flex:0 0 auto; }
.post-winner-info{ min-width:0; }
.post-winner-k{ font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.4px; color: rgba(245,158,11,.95); }
.post-winner-name{ font-weight:800; font-size:18px; color:#fff; margin-top:2px; }
.post-winner-meta{ font-size:13px; color: rgba(255,255,255,.6); margin-top:2px; }
.post-winner-link{ font-size:12px; font-weight:700; color: rgba(245,158,11,.95); margin-top:6px; }

.post-body{ font-size:17px; line-height:1.75; color: rgba(255,255,255,.85); }
.post-body p{ margin:0 0 18px; }
.post-body h2{ font-size:24px; font-weight:800; margin:30px 0 12px; color:#fff; }
.post-body h3{ font-size:20px; font-weight:800; margin:26px 0 10px; color:#fff; }
.post-body h4{ font-size:17px; font-weight:800; margin:22px 0 8px; color:#fff; }
.post-body a{ color: rgba(245,158,11,.95); text-decoration:underline; }
.post-body ul, .post-body ol{ margin:0 0 18px; padding-left:24px; }
.post-body li{ margin:6px 0; }
.post-body img{ max-width:100%; height:auto; border-radius:12px; margin:14px 0; }
.post-body blockquote{ margin:18px 0; padding:10px 18px; border-left:4px solid rgba(245,158,11,.6);
  background: rgba(255,255,255,.03); color: rgba(255,255,255,.78); font-style:italic; }
.post-body pre{ background: rgba(0,0,0,.4); padding:14px; border-radius:10px; overflow:auto; font-size:14px; }
.post-foot{ margin-top:36px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1); }

@media (max-width: 900px){ .news-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px){ .news-grid{ grid-template-columns: 1fr; } }
