.game-card{

    border-radius:14px;

    transition:.25s;

}

.game-card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 28px rgba(0,0,0,.12);

}

.game-card img{

    height:180px;

    object-fit:cover;

}

.game-title{

    min-height:44px;

    font-size:14px;

    font-weight:600;

}

.game-title a{

    color:#212529;

}

.game-title a:hover{

    color:#198754;

}
















.game-card{

    border-radius:18px;
    overflow:hidden;
    transition:.25s;

}

.game-card:hover{

    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,.18)!important;

}

.game-image{

    height:220px;
    object-fit:cover;
    transition:.3s;

}

.game-card:hover .game-image{

    transform:scale(1.05);

}

.game-card h6{

    min-height:48px;

}

.game-card .btn{

    border-radius:12px;

}

@media(max-width:768px){

.game-image{

    height:160px;

}

.game-card h6{

    font-size:15px;

}

.game-card p{

    font-size:12px;

}

}