console
<div class="band">
<div class="item-1">
<a href="" class="card">
<div class="thumb">
</div>
<article>
<h1>
Post title
</h1>
<span>
Author
</span>
</article>
</a>
</div>
<div class="item-2">
...
</div>
<div class="item-3">
...
</div>
</div>
.band {
width: 90%;
max-width: 1240px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
grid-gap: 20px;
}
@media only screen and (min-width: 500px) {
.band {
grid-template-columns: 1fr 1fr;
}
}
@media only screen and (min-width: 850px) {
.band {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
}
.card {
background: white;
text-decoration: none;
color: #444;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
min-height: 100%;
}