// ============================================================================
// :: Md - dl
// ============================================================================
/**
 * Scope defined specifically for a certain type of content where a normal list
 * in markdown containing <p> tags is styled like a definition list.
 */

// ============================================================================
// :: list
// ============================================================================
.s-md-dl {

  ul {
    list-style-type: none;
  }

  li {
    position: relative;
    margin-bottom: 3rem;

    p {
      font-size: $bp-font-size-2x-small;
      font-style: italic;

      margin: 0;

      &:first-child {
        font-size: $bp-font-size-base;
        font-weight: $bp-font-weight-bold;
        font-style: normal;

        color: $text-color-black;
      }
    }
  }
}
