.alert {
  --alert-color: #090909;

  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 0.25rem solid var(--alert-color);
  border-radius: 0.375rem;
  background-color: color-mix(in srgb, var(--alert-color) 8%, transparent);
}

.alert-heading {
  color: var(--alert-color);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.alert-note      { --alert-color: #0969da; }
.alert-tip       { --alert-color: #1a7f37; }
.alert-important { --alert-color: #8250df; }
.alert-warning   { --alert-color: #9a6700; }
.alert-caution   { --alert-color: #cf222e; }
