How do I rearrange this Flex-Box Item to be positioned next to the image?
https://i.sstatic.net/eSy3w.png
<div class="brif fb">
<div class="sml-con"><img class="sml-thumb" src="images/chosen/edward.jpg" alt=""></div>
<h3>The WhiteBeard Pirates</h3>
<div class="trai"> <i class="fa fa-video-camera mr5"></i> <span>Trailer</span></div>
<p>Meet the most unusual baby, known only as "Baby", who wears a suit, speaks with the voice and wit of Alec Baldwin, as he teams up with his seven-year-old brother to stop the dastardly plot of the CEO of Puppy Co.</p>
CSS
`.brif { width:69%; flex-wrap: wrap; padding:17px; align-items: flex-
start; /* prevent the children from taking full height */ }
.brif .sml-con { width: 140px; height: 210px; }
.brif .sml-thumb { width:100%; height:100%; }
.brif h3 { padding: 9px 15px; }
.brif .trai { background: #0397D6; padding: 5px 9px; border-radius:10px;
margin:5px 0; }
.brif .trai i{ margin-right:1px; }`