.about-container {
  max-width: 700px;
}

.back-nav {
  margin-bottom: 1.5rem;
}

.back-nav a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
}

.back-nav a:hover {
  text-decoration: underline;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.card h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card ol,
.card ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.card li {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.card code {
  background: var(--bg);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--primary);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

thead th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tbody td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--surface-hover);
}

table.compact td {
  padding: 0.35rem 0.75rem;
}
