.featured{
display:flex;
gap:15px;
margin-bottom:15px;
}

.featured img{
width:160px;
border:1px solid #aaa;
}

.featured-text{
border:1px dotted #aaa;
padding:8px;
flex:1;
}

.game-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
padding:10px;
}

.game-item{
width:100%;
border:none;
border-radius:0;
overflow:hidden;
}

.game-item img{
width:100%;
height:auto;
object-fit:contain;
display:block;
}