//
// HELP PAGE — dark
// ================
//

.help-page {
  max-width: 880px;
  margin: 0 auto;

  h5 {
    margin: 18px 0 4px 0;
    font-size: 1rem;
    font-weight: $font--weight--semibold;
    color: $color--text;
    scroll-margin-top: 64px;
  }

  .listing-card > h5:first-of-type {
    margin-top: 0;
  }

  h5[id]::after {
    content: '#';
    margin-left: 8px;
    color: $color--text-muted;
    opacity: 0;
    font-weight: $font--weight--medium;
    transition: opacity $motion--fast;
  }

  h5[id]:hover::after {
    opacity: 1;
  }

  p {
    margin: 0 0 6px 0;
    color: $color--text-secondary;
    line-height: 1.6;
  }

  p code,
  code {
    font-family: $font--mono;
    font-size: 0.9em;
    padding: 1px 6px;
    border: 1px solid $color--border;
    border-radius: $radius--sm;
    background: $color--surface;
    color: $color--text;
    white-space: normal;
    word-break: break-word;
  }

  i {
    font-family: $font--mono;
    font-style: normal;
    font-size: 0.9em;
    padding: 1px 6px;
    border-radius: $radius--sm;
    background: $color--surface;
    color: $color--text;
  }
}
