.m-box-markdown.access-bio {
  *:first-child {
    margin-top: 0;
  }

  strong {
    color: black;
    background: none;
  }

  em {
    color: black;
    background: none;
    font-style: italic;
    font-weight: normal;
  }

  .ans-box {
    display: inline-block;
    border: solid 2px deepskyblue;
    padding: 0.2em 1em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    cursor: pointer;

    .ans {
      visibility: hidden;
    }
  }

  .show {
    .ans {
      visibility: visible;
      color: crimson;
      font-weight: bold;
    }

    .correct {
      color: crimson;
      font-weight: bold;
      text-decoration: underline;
    }
  }
}