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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

header { margin-bottom: 2rem; }

.back {
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

h1 { font-size: 1.5rem; font-weight: 600; color: #1d1d1f; }

.subtitle { color: #6e6e73; font-size: 0.9rem; margin-top: 0.25rem; font-style: italic; }

h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1d1d1f;
}

h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #3a3a3c;
}

.card {
  background: #fff;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.card.tldr {
  border-color: #2563eb;
  background: #f0f5ff;
}

.card.situation {
  border-color: #059669;
  background: #f0fdf9;
}

.card.sources {
  background: #fafafa;
}

p { margin-bottom: 0.75rem; font-size: 0.95rem; }

ul {
  margin: 0.5rem 0 1rem 1.5rem;
  font-size: 0.95rem;
}

li { margin-bottom: 0.35rem; }

em { font-style: italic; }

.callout {
  background: #f0f5ff;
  border-left: 4px solid #2563eb;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

.callout.warning {
  background: #fffbeb;
  border-left-color: #d97706;
}

.callout.success {
  background: #f0fdf9;
  border-left-color: #059669;
}

.example {
  background: #f5f5f7;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 0.75rem 0 1rem;
}

th, td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e5e5ea;
}

thead th {
  font-weight: 600;
  border-bottom: 2px solid #d2d2d7;
  color: #1d1d1f;
}

.yes { color: #059669; font-weight: 600; }
.no { color: #dc2626; font-weight: 600; }
.maybe { color: #d97706; font-weight: 600; }

.highlight-row {
  background: #f0fdf9;
  font-weight: 600;
}

.highlight-row td { color: #059669; }

.paths td:last-child { font-size: 0.82rem; }

.sources ul { list-style: none; margin-left: 0; }
.sources li { margin-bottom: 0.5rem; }
.sources a { color: #2563eb; text-decoration: none; font-size: 0.88rem; }
.sources a:hover { text-decoration: underline; }
