/* Ember accent — warm, low-saturation, reads as banked coals rather than neon. */
:root {
  --ember: #c2410c;
  --ash: #8a8580;
}

[data-md-color-scheme="slate"] {
  --md-default-bg-color: #14120f;
  --md-accent-fg-color: #e07a3f;
}

/* Status pills for NPC/location state. Usage:  [Alive]{.pill .alive} */
.pill {
  display: inline-block;
  padding: 0.1em 0.6em;
  border-radius: 999px;
  font-size: 0.75em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}
.pill.alive   { color: #6a9a5b; }
.pill.dead    { color: #a33e3e; }
.pill.unknown { color: var(--ash); }
.pill.warm    { color: var(--ember); }

/* Responsive YouTube embed for session recaps. */
.recap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  margin: 1.4rem 0;
}
.recap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Statblock-adjacent quick facts table: quieter than a full table. */
.facts td:first-child {
  color: var(--ash);
  white-space: nowrap;
  width: 8rem;
}

/* NPC portrait, floated right with text wrapping around it. */
.portrait {
  float: right;
  width: 240px;
  margin: 0 0 1rem 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
}
@media screen and (max-width: 76.1875em) {
  .portrait { float: none; width: 100%; margin: 1rem 0; }
}
