/* =========================
   TOW – Public Timeline UI
   Calm • Neutral • Human
   ========================= */

:root {
  --bg: #f9fafb;
  --ink: #1f2933;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #4b6b8a;
}

/* Base */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

/* Layout */
.main {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px;
}

section { margin-bottom: 42px; }

/* Typography */
h1 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: .6em;
}

h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .6em;
}

p { margin: 0 0 1em 0; }

.muted { color: var(--muted); font-size: .95rem; }

/* Timeline Cards */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-event-id {
  font-weight: 600;
  word-break: break-all;
}

.timeline-badge {
  background: #e7ebf0;
  color: #3c4a5a;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .85rem;
}

.timeline-meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: .9rem;
}

/* Footer */
.footer{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

.footer-disclaimer{
  margin:0 0 14px 0;
  font-size:0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .main { padding: 20px 14px; }
}

