article.earning-game-card{
    width: 200px;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 10px 0px #00000056;
    border-radius: 7px;
}

article.earning-game-card .earning-game-thumbnail{
    width: 200px;
    height: 130px;
}

article.earning-game-card .earning-game-thumbnail img{
    width: 100%;
    height: 100%;
    aspect-ratio: 20/13;
    object-fit: cover;
    border-radius: 7px 7px 0 0;
}

.earning-game-card .earning-game-card-body{
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #C9C4BB;
}

.earning-game-card .earning-game-card-body h2 a{
    text-decoration: none;
    color: #03080F;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.earning-game-card .earning-game-card-body p{
    color: #616161;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.earning-game-card .earning-game-card-body .total-game-reward-amount{
    color: #1F509A;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.earning-game-card .earning-game-card-footer{
    padding: 10px;
    display: flex;
    justify-content: flex-end;
}

.earning-game-card .earning-game-play-btn{
    background-color: #34C759;
    color: #fff;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--headings-font-family);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 90px;
}