/* =============================================
   Binge Boss — Streaming News Page CSS
   ============================================= */

.news-header {
  margin-bottom: 32px;
}

.news-header h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.news-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* TOC nav */
.news-toc {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.news-toc a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}

.news-toc a:hover {
  color: var(--mint-400);
  border-color: var(--mint-700);
  text-decoration: none;
}

/* Editorial */
.news-editorial {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}
.news-editorial p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Section */
.news-section {
  margin-bottom: 48px;
}

.news-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

/* News list */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* News card */
.news-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.news-card:hover {
  border-color: var(--mint-700);
}

.news-card-content {
  flex: 1;
  min-width: 0;
}

.news-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
}

.news-card-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.news-card-title a:hover {
  color: var(--mint-400);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.news-card-source {
  font-weight: 600;
  color: var(--text-secondary);
}

.news-card-time {
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 640px) {
  .news-header h1 {
    font-size: 1.5rem;
  }

  .news-card {
    padding: 12px;
  }
}
