Looking at the image, it's clear that the last line of text is not on the same alignment as the other bootstrap-cards. This seems to be influenced by the length of the upper text.
How can I make sure that all three main parts are always aligned, regardless of the text length? And what if the title spans multiple lines in an extreme case?
Below is the code for just one card:
<div class='col-lg-4' style='cursor: pointer; padding-bottom: 15px;'>
<div style='height: 377.59px;' class='card mb-3' style='border: 1px solid #33cdc6;'>
<img style='height:185.59px; width: 100%;' class='card-img-top' src='#' alt='Card image cap'>
<div class='card-body'>
<h5 class='card-title' style='color: #293a44;'>TITOLO</h5>
<p class='card-text'>Breve descrizione</p>
<p class='card-text'>
<span class='h5 text-muted'>Montepremi</span>";
<small style='padding-left: 125px;' class='text-muted'>data</small>
</p>
</div>
</div>
</div>