.article-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.article-header .article-category {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.375rem 0.75rem;
  background: var(--accent-dim);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: var(--space-lg);
}

.article-header .article-category:hover {
  background: var(--accent-dim);
  text-decoration: none;
}

.article-header .article-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.article-header .article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  color: var(--text-subtle);
  font-size: 0.875rem;
}

.article-header .article-meta a {
  color: var(--accent);
}

.article-content {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: var(--space-2xl);
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin: var(--space-2xl) 0 var(--space-lg);
}

.nav-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.nav-link {
  padding: var(--space-md) var(--space-xl);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
  flex: 1;
  text-align: center;
}

.nav-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.nav-link span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
}

.nav-link strong {
  color: var(--text);
  font-size: 0.9rem;
}
