/* 创投日报 / 官网新闻 */

.news-page-hero {
  padding: var(--space-16) 0 var(--space-8);
}

.news-page-hero .section-label {
  color: var(--accent);
}

.news-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  padding: var(--space-8) 0;
}

.news-loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: news-spin 0.8s linear infinite;
}

@keyframes news-spin {
  to { transform: rotate(360deg); }
}

.news-meta {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}

@media (max-width: 800px) {
  .news-grid { grid-template-columns: 1fr; }
}

.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.news-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.news-card-cover {
  aspect-ratio: 16 / 9;
  background: var(--bg-sidebar);
  overflow: hidden;
}

.news-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-card-source {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
}

.news-card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.35;
}

.news-card-summary {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

.news-empty {
  padding: var(--space-10);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  text-align: center;
}

.news-teaser-section {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg);
}

.news-teaser-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin: var(--space-8) 0;
}

@media (max-width: 900px) {
  .news-teaser-cards { grid-template-columns: 1fr; }
}
