I'm really struggling with implementing my latest idea and could really use some help:
I've designed this article preview section that looks amazing on small screens like mobile devices:
https://i.sstatic.net/nWENQ.png
<section class="w-full md:w-2/3 flex flex-col items-center px-3">
<article class="w-full flex flex-col shadow my-4">
<div class="bg-white flex flex-col justify-start p-6">
<div class="max-w"><a
href="#>"
class="text-blue-700 hover:text-blue-500 text-sm font-bold uppercase pb-4">#Tag #Tagg #TAGGG</a>
</div>
<a href="#"
class="text-3xl font-bold hover:text-gray-700 pb-4">Article title</a>
<p href="#" class="text-sm pb-3">By <a href="#" class="font-semibold hover:text-gray-800">author</a>, published at 12.03.2021
</p>
<div class="aspect-w-16 aspect-h-9">
<a href="#">
<img src="https://images.unsplash.com/photo-1614730321146-b6fa6a46bcb4?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxMTc3M...80&w=2000">
</a>
</div>
<a href="#"
class="pb-6 prose max-w-none">Here comes a teaser or an excerpt of the article text...</a>
<div><a href="#"
class="uppercase hover:font-bold text-gray-700 hover:text-black"><mark>Read more… <i
class="fas icon-arrow-right"></i></mark></a></div>
</div>
</article>
</section>
However, I now want to change the layout for larger screens (
md: = @media (min-width: 768px) &
) to look like this:
https://i.sstatic.net/ViXBr.png
Unfortunately, my current knowledge is limited and I need assistance in making these changes. What do I need to add/change to achieve this?