/* Infobox / Stat Block */
.infobox {
  background: var(--bg-infobox);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  position: sticky;
  top: 72px;
}
.infobox h3 {
  font-size: 1rem;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
}
.infobox-table {
  width: 100%;
  font-size: 0.85rem;
}
.infobox-table th,
.infobox-table td {
  padding: 0.25rem 0;
  border: none;
}
.infobox-table th {
  color: var(--text-secondary);
  font-weight: 500;
  text-align: left;
  width: 40%;
  white-space: nowrap;
  padding-right: 0.5rem;
}
.infobox-table td {
  color: var(--text-primary);
  font-weight: 600;
}
.infobox-table tr + tr {
  border-top: 1px solid rgba(255,255,255,0.05);
}
