/* ══════════════════════════════════════════════════════════════
   COMPONENT: Article Header
   Used on: blog-post.html
   ══════════════════════════════════════════════════════════════ */

.article-header {
  padding: 140px 24px 48px;
  background: var(--white);
}

.article-header-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-header .breadcrumb {
  justify-content: center;
  margin-bottom: 20px;
}

.article-category-badge {
  margin-bottom: 16px;
}

.article-category-badge .blog-category {
  position: static;
}

.article-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.article-meta time {
  font-weight: 500;
  color: var(--gray-600);
}

.article-meta .separator {
  color: var(--gray-300);
}

.article-meta .author {
  font-weight: 500;
}

@media (max-width: 640px) {
  .article-header { padding: 100px 20px 32px; }
  .article-meta { font-size: 13px; }
}
