* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.news-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0 8px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
  opacity: 0.5;
}

.breadcrumb span {
  color: var(--text);
  font-weight: 500;
}

.news-hero {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.news-hero-text h1 {
  margin: 8px 0 12px;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.overline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.hero-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
}

.news-card-link h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.news-card:hover .news-card-link h2 {
  color: var(--primary);
}

.news-card-header h2 {
  margin: 8px 0 10px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.news-description {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.news-source {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}

.news-separator {
  color: var(--border-strong);
}

.news-date {
  color: var(--text-secondary);
}

.news-content {
  margin-top: 16px;
  color: var(--text);
  line-height: 1.7;
}

.news-content h1,
.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5 {
  margin: 18px 0 10px;
  line-height: 1.3;
  color: var(--text);
}

.news-content p {
  margin: 12px 0;
}

.news-content ul,
.news-content ol {
  margin: 12px 0 12px 20px;
}

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

.news-content a:hover {
  text-decoration: underline;
}

.news-content img {
  max-width: 100%;
  border-radius: 12px;
}

.news-card-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.news-card-footer a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.news-card-footer a:hover {
  text-decoration: underline;
}

.empty-state {
  padding: 32px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  text-align: center;
  color: var(--text-secondary);
  background: #fff;
}

@media (max-width: 768px) {
  .news-page {
    padding: 24px 16px 48px;
  }

  .news-card {
    padding: 20px;
  }

  .news-card-header h2 {
    font-size: 20px;
  }
}
