Just wondering how to have the title (dark red section) the same height in all columns with flexbox? The title needs to be as tall as the tallest title in the group.
So in this example below, the Event 2 & Event 3 header needs to be the same height as the "Really long event title" header.
The markup looks like this
<div class="event">
<div class="event__header">
<h1>Event Title</h1>
</div>
<div class="event__content">
...
</div>
</div>
Thanks in advance