JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrap">
<div class="left"></div>
<div class="right top"></div>
<div class="right bot"></div>
</div>
CSS
.wrap {width: 85%; margin: auto; overflow: hidden;}
.left {float: left; height: 510px; width: 49%; background: pink;}
.right {float: right; height: 250px; margin-bottom: 10px; width: 49%;}
.right.top {background: green;}
.right.bot {background: red;}
@media all and (max-width: 400px) {
.left, .right {float: none; margin-bottom: 5px; height: 200px;}
}