I'm looking to achieve a unique layout where the image is on the left, but the content (title above meta, meta above text) is displayed on the right in a blog list style.
With the limitation of not being able to change the HTML structure, I am wondering how I can use CSS grid to accomplish this design?
<article>
<img src="https://dummyimage.com/300x200/000/fff" alt="Golden Meadow" width="180">
<h2 >Golden Meadow</h2>
<p>by <span>Jack</span> in <span>News</span>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Nunc aliquam justo et nibh venenatis aliquet.
Morbi mollis mollis pellentesque. Aenean vitae erat velit. </p>
</article>