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

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #f5f5f0;
  color: #1a1a1a;
  line-height: 1.7;
}

/* Header / Navbar */
.site-header {
  background: #0d1117;
  border-bottom: 4px solid #c0392b;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.site-logo span {
  color: #c0392b;
}

.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  color: #bbb;
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #fff;
}

/* Breaking bar */
.breaking-bar {
  background: #c0392b;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 24px;
  text-align: center;
}

/* Article Layout */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* Category tag */
.article-category {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

/* Headline */
.article-headline {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #111;
  letter-spacing: -0.5px;
}

/* Subheadline / Deck */
.article-deck {
  font-size: 20px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
  border-left: 4px solid #c0392b;
  padding-left: 16px;
}

/* Meta info */
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 32px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
}

.publish-date {
  font-size: 13px;
  color: #888;
}

.share-buttons {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: #555;
}

.share-btn:hover {
  background: #0d1117;
  color: #fff;
  border-color: #0d1117;
}

/* Hero image */
.article-hero {
  margin-bottom: 32px;
  position: relative;
}

.article-hero img,
.article-hero .hero-placeholder {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.hero-placeholder svg {
  display: block;
  border-radius: 4px;
}

.image-caption {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 8px;
  padding-left: 4px;
}

/* Article body */
.article-body p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #2a2a2a;
}

.article-body p:first-of-type::first-letter {
  font-size: 64px;
  float: left;
  line-height: 50px;
  padding-right: 10px;
  padding-top: 6px;
  color: #c0392b;
  font-weight: 700;
}

.article-body .highlight-box {
  background: #fdf2f2;
  border-left: 4px solid #c0392b;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 17px;
  color: #333;
  border-radius: 0 4px 4px 0;
}

.article-body .stat {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  color: #c0392b;
  font-size: 20px;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}

.article-tags span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: #eee;
  color: #555;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer */
.site-footer {
  background: #0d1117;
  color: #888;
  padding: 48px 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand .site-logo {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  color: #666;
  max-width: 280px;
  line-height: 1.5;
}

.footer-links h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: #888;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 12px;
  color: #555;
}

/* Legal page */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-container h1 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #111;
}

.legal-container .legal-updated {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.legal-container h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.legal-container p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #444;
}

.legal-container ul {
  margin: 0 0 16px 24px;
  font-size: 16px;
  color: #444;
}

.legal-container li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .article-headline {
    font-size: 28px;
  }

  .article-deck {
    font-size: 17px;
  }

  .article-body p {
    font-size: 16px;
  }

  .header-nav {
    display: none;
  }

  .article-meta {
    flex-wrap: wrap;
  }

  .share-buttons {
    margin-left: 0;
    width: 100%;
    margin-top: 8px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
