#news .items {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 30px; }
@media all and (min-width: 600px) {
#news .items {
grid-template-columns: repeat(2, 1fr); } }
@media all and (min-width: 1200px) {
#news .items {
grid-template-columns: repeat(3, 1fr); } }
#news .items .item-wrap {
display: inline-block;
margin-bottom: 4.6875rem; }
#news .items h3 {
margin-top: 2.5rem; }