I need help writing CSS to give an image a border on the left and bottom, without it wrapping around the entire image. Here is the desired output: https://i.sstatic.net/C18v5.png
img{
border-top: 15px solid #faa633;
border-right: 15px solid #faa633;
border-left: 15px solid #faa633;
}
<img src="https://images.unsplash.com/photo-1494548162494-384bba4ab999?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80" style="height: 400px;width: 300px">