*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #b91c1c;
  --red-dark: #991b1b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--gray-100);
  color: var(--gray-900);
  line-height: 1.6;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--gray-900);
  color: var(--gray-400);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a, .top-links a { color: var(--gray-400); text-decoration: none; }
.top-bar a:hover { color: var(--white); }
.top-links { display: flex; gap: 18px; }

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--red);
  padding: 18px 0 14px;
  text-align: center;
}
.logo-link { text-decoration: none; color: inherit; }
.site-header h1 {
  font-family: 'Georgia', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-header .tagline {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Nav ── */
.main-nav {
  background: var(--red);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
}
.main-nav a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.main-nav a:hover { background: var(--red-dark); }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Article Page ── */
.article-page { padding: 40px 0 60px; }
.article-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 40px 48px 48px;
}
.article-content .category {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.article-content h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--gray-900);
}
.article-content .meta {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.article-content .lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 20px 0 20px;
  font-style: italic;
}
.article-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.back-link {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  display: inline-block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.back-link:hover { text-decoration: underline; }

/* ── Footer ── */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 24px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
}
.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .article-content { padding: 24px 20px 32px; }
  .article-content h2 { font-size: 1.5rem; }
  .site-header h1 { font-size: 2rem; }
  .main-nav ul { flex-wrap: wrap; justify-content: center; }
}
