This will need to be adjusted for pages with a TL;DR

https://css-tricks.com/snippets/css/drop-caps/

The CSS3 way (no extra markup)

Target the first character of the first paragraph using pseudo class selectors. No extra markup needed, but no IE < 9 support.

<p>
  Just a normal sentence.
</p>
p:first-child:first-letter {
  color: #903;
  float: left;
  font-family: Georgia;
  font-size: 75px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
}
I modified it to:
.notion-column > .notion-text:first-child:first-letter {
}