:root {
  --bg: #0f1114; --surface: #16191e; --line: #262b33;
  --text: #e6e8ea; --muted: #8b939e; --accent: #d8734a;
  --confirmed: #4a9d6e; --reported: #b8933f; --rumor: #a05a5a;
  --maxw: 720px;
}
@media (prefers-color-scheme: light) {
  :root { --bg: #fbfaf8; --surface: #f4f2ee; --line: #e4e1dc;
          --text: #1a1c1f; --muted: #6b7280; --accent: #c25a2e; }
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.62 -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

header.site { border-bottom: 1px solid var(--line); padding: 28px 0 22px; margin-bottom: 34px; }
header.site .wrap { display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; }
.brand { font-size: 19px; font-weight: 650; letter-spacing: -0.02em; text-decoration: none; }
.brand span { color: var(--accent); }
.tagline { color: var(--muted); font-size: 13px; }

.issue-date { color: var(--muted); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 20px; }

article.card { border-bottom: 1px solid var(--line); padding: 30px 0; }
article.card:last-child { border-bottom: none; }
.card h2 { margin: 0 0 12px; font-size: 21px; line-height: 1.28;
  letter-spacing: -0.015em; font-weight: 640; }

.main-point { margin: 0 0 14px; font-size: 17px; line-height: 1.5;
  font-weight: 520; border-left: 2px solid var(--accent); padding-left: 14px; }
.lead { margin: 0 0 14px; }
ul.bullets { margin: 0 0 16px; padding-left: 18px; }
ul.bullets li { margin-bottom: 8px; }

.context, .one-line { margin: 0 0 14px; padding: 12px 14px; background: var(--surface);
  border-radius: 5px; font-size: 15px; }
.context b, .one-line b, .debate b { display: block; margin-bottom: 4px;
  font-size: 11px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; }
.debate { margin: 0 0 14px; padding: 12px 14px; background: var(--surface); border-radius: 5px; }
.debate ul { margin: 0; padding-left: 16px; font-size: 15px; }
.debate li { margin-bottom: 6px; }
.debate li span { color: var(--accent); font-weight: 560; }

.meta { display: flex; flex-wrap: wrap; gap: 9px 14px; align-items: center;
  font-size: 13px; color: var(--muted); }
.meta a:hover { color: var(--accent); }
.via { opacity: .75; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 11px;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.badge.confirmed { background: rgba(74,157,110,.15); color: var(--confirmed); }
.badge.reported  { background: rgba(184,147,63,.15); color: var(--reported); }
.badge.rumor     { background: rgba(160,90,90,.17); color: var(--rumor); }
.seg { font-variant: small-caps; letter-spacing: .04em; }

footer.site { border-top: 1px solid var(--line); margin-top: 44px; padding: 22px 0 40px;
  color: var(--muted); font-size: 13px; }
footer.site p { margin: 0 0 6px; }
