/**
 * Default page styling matches <IntroText> component
 */
.lisa-markdown-dark {
  padding: 20px;
  color: #a5a3a8; /* Colors.silver */
  font-family: 'SF UI Text', 'SF Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  background: #101011;
  -webkit-font-smoothing: antialiased;
  transition: .2s all ease-in-out;
}

/**
 * TEXT
*/

.lisa-markdown-dark strong {
  font-family: 'SF Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #a5a3a8; /* Colors.silver */
}

/**
 * LINKS
 */
.lisa-markdown-dark a {
  color: #07b5e3; /* Colors.sky */
  display: inline-block;
  max-width: 16em; /* truncate links after 16 chars */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: bottom;
}

.lisa-markdown-dark a:hover {
  filter: brightness(130%);
  text-decoration: none;
}

.lisa-markdown-dark a:active {
  filter: brightness(150%);
}

.lisa-markdown-dark a:visited {
  color: #007e9e; /* ColorsDark.sky */
}


/**
 * HEADERS
 */
.lisa-markdown-dark h1 {
  font-family: 'SF Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: white;
  margin: 96px 0px 16px 0;
  font-size: 32px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  letter-spacing: normal;
  border-bottom: 1px solid #3d3d40; /* Colors.steel */
}

.lisa-markdown-dark h2 {
  font-family: 'SF Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: white;
  border-bottom: 1px solid #242426; /* Colors.charcoal */
  margin: 24px 0px 16px 0;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
}

.lisa-markdown-dark h3 {
  font-family: 'SF Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: white;
  margin: 48px 0px 16px 0;
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
}

.lisa-markdown-dark h4 {
  font-family: 'SF Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500; /* TODO: unify style with core <H4> component */
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #f5f5f6; /* Colors.snow */
}

.lisa-markdown-dark h5 {
  font-family: 'SF Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #a5a3a8; /* Colors.silver */
}

.lisa-markdown-dark h6 {
  font-family: 'SF Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #a5a3a8; /* Colors.silver */
}


/**
 * LISTS
 */

.lisa-markdown-dark ul > li {
  list-style: disc;
}

.lisa-markdown-dark ul ul li {
  list-style: circle;
}

.lisa-markdown-dark ol > li {
  list-style: decimal;
}

.lisa-markdown-dark ol ol li {
  list-style: unset;
}


/**
 * IMAGES
 */
.lisa-markdown-dark img {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  min-width: 64px;
  width: fit-content;
  background-color: transparent;
  color: #ff5c8d; /* img.src errors in Colors.coral */
  height: auto;
  display: block;
  position: relative;
  border-radius: 2px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4); /* subtly foreground imgs */
}


/**
 * SECTIONS
 */

.lisa-markdown-dark hr {
  background-color: #242426; /* Colors.charcoal */
}

.lisa-markdown-dark blockquote {
  font-size: .8em;
  color: #a4a3a8;
  border-left: 4px solid #3d3d40; /* Colors.steel */
  border-radius: 2px;
  padding: 0 16px;
  font-style: italic;
}

/**
 * TABLES
 */

.lisa-markdown-dark table {
  background-color: transparent;
}

.lisa-markdown-dark table tr {
  background-color: transparent;
}

.lisa-markdown-dark table tr th,
.lisa-markdown-dark table tr td {
  border: 1px solid #3d3d40; /* Colors.steel */
}

.lisa-markdown-dark table tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.4); /* every other row slightly darkened */
}


/**
 * CODE
 */
.lisa-markdown-dark code {
  border: 1px solid #242426; /* Colors.charcoal */
  background-color: #242426; /* Colors.charcoal */
  color: #a5a3a8;
  margin: 0px .2em;
  position: relative;
  top: -1px;
  border-radius: .2em;
  font-family: "'SF Mono'", "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", monospace !important;
}

.lisa-markdown-dark pre {
  background-color: #242426; /* Colors.charcoal */
  font-family: "'SF Mono'", "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", monospace !important;
}

.lisa-markdown-dark pre > code {
  font-size: .9em;
}

