:root {
  --bg: #f3efe7;
  --card: #fffaf2;
  --line: #dbcdb6;
  --ink: #201913;
  --muted: #64584b;
  --accent: #bf4d28;
  --accent-2: #0e6d64;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: radial-gradient(circle at top, #fff6df, var(--bg) 50%, #eadcc7 100%);
  color: var(--ink);
}
.layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}
.grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.two-up {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.card {
  background: color-mix(in srgb, var(--card) 92%, white 8%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(54, 37, 21, 0.08);
}
.hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-size: 0.8rem;
}
h1, h2, h3 { margin-top: 0; }
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  background: var(--accent);
  color: white;
  cursor: pointer;
}
button[disabled] {
  background: #b7a698;
  cursor: not-allowed;
}
.meta-list, .change-list, .session-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.meta-list li, .change-list li, .session-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.snapshot + .snapshot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
a { color: var(--accent-2); }
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #f8f1e5;
  border-radius: 12px;
  padding: 12px;
  max-height: 360px;
  overflow: auto;
}
@media (max-width: 768px) {
  .hero { flex-direction: column; align-items: flex-start; }
}
