:root {
  color-scheme: light;
  --paper: #f3f1e8;
  --surface: #fffdf6;
  --ink: #1f2b23;
  --muted: #667066;
  --line: #d5d8cc;
  --accent: #f0cf58;
  --green: #2f4436;
  --good: #38745a;
  --bad: #b65343;
}
* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-underline-offset: 3px; }
.topbar {
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 241, 232, .94);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  letter-spacing: -1px;
  text-decoration: none;
}
.brand strong { font-weight: 800; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--accent);
  font-weight: 900;
}
.back { font-size: 14px; font-weight: 700; }
main { width: min(850px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0 80px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}
h1, h2 { font-family: "Arial Narrow", "Roboto Condensed", sans-serif; line-height: 1.05; }
h1 { margin: 0; max-width: 720px; font-size: clamp(42px, 8vw, 72px); letter-spacing: -.035em; }
.lead { max-width: 720px; margin: 22px 0 42px; color: var(--muted); font-size: 18px; }
.card {
  margin: 18px 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}
h2 { margin: 0 0 16px; font-size: 30px; letter-spacing: -.02em; }
h3 { margin: 28px 0 6px; font-size: 17px; }
p { margin: 0 0 14px; }
ul { margin: 8px 0 18px; padding-left: 22px; }
.meta { color: var(--muted); font-size: 13px; }
.notice { padding: 18px 20px; border-radius: 12px; background: #e4e8da; }
.status-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.badge { padding: 7px 11px; border-radius: 999px; font-size: 12px; font-weight: 800; background: #ddebe2; color: var(--good); }
.badge.bad { background: #f2ddd8; color: var(--bad); }
.source-list { display: grid; gap: 10px; margin-top: 22px; }
.source {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--good); }
.dot.bad { background: var(--bad); }
.source-name { font-weight: 750; }
.source-time { color: var(--muted); font-size: 12px; text-align: right; }
footer { width: min(850px, calc(100% - 32px)); margin: 0 auto; padding: 26px 0 44px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 560px) {
  main { padding-top: 42px; }
  .topbar { align-items: flex-start; }
  .source { grid-template-columns: 12px 1fr; }
  .source-time { grid-column: 2; text-align: left; }
}
