/* Project Recovery — Blog Article Styles
   Used by static HTML files in /public/blog/ */

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

:root {
  --green:      #4CAF50;
  --green-dark: #388E3C;
  --bg:         #0a0a0a;
  --surface:    #111;
  --border:     #222;
  --text:        #e8e8e8;
  --text-muted:  #888;
  --max-width:   760px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Site header ─────────────────────────────────── */
.site-header {
  background: #000;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.site-header .logo span { color: var(--green); }
.site-header nav a {
  color: var(--text-muted);
  margin-left: 24px;
  font-size: 14px;
  font-weight: 500;
}
.site-header nav a:hover { color: #fff; text-decoration: none; }

/* ── Article layout ──────────────────────────────── */
.article-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* Tags + meta */
.article-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-glp1     { background: #1a3a2a; color: #5fcf7a; }
.tag-research { background: #1a2a3a; color: #5aaeef; }

/* Title */
h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

/* Lead */
.article-lead {
  font-size: 19px;
  color: #bbb;
  line-height: 1.65;
  margin-bottom: 20px;
  border-left: 3px solid var(--green);
  padding-left: 18px;
}

/* Approval badge */
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.approval-badge {
  color: var(--green);
  font-weight: 600;
}

/* Body content */
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 44px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ddd;
  margin: 28px 0 10px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol {
  margin: 0 0 18px 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: #fff; }
.article-body em { color: #bbb; font-style: italic; }

/* CTA box */
.cta-box {
  background: #0d2218;
  border: 1px solid var(--green-dark);
  border-radius: 10px;
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}
.cta-box h3 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.cta-box p  { color: #aaa; margin-bottom: 24px; }
.cta-btn {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.cta-btn:hover { background: var(--green-dark); color: #fff; text-decoration: none; }

/* Citations */
.citations {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.citations h3 { font-size: 15px; color: var(--text-muted); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.citations ol { margin-left: 20px; }
.citations li { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.citations a { color: var(--text-muted); text-decoration: underline; }
.citations a:hover { color: var(--green); }

/* Disclaimer */
.article-disclaimer {
  margin-top: 32px;
  padding: 20px;
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.article-disclaimer p + p { margin-top: 8px; }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.site-footer .footer-links { margin: 12px 0; }
.site-footer .footer-links a { color: var(--text-muted); margin: 0 10px; }
.site-footer .footer-links a:hover { color: var(--green); text-decoration: none; }
.site-footer .footer-disclaimer {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 12px;
  line-height: 1.6;
  color: #555;
}
