.games-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 900px) {
    .games-block {
        grid-template-columns: repeat(1, 1fr);
    }
}

.games-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.game {
    display: flex;
    margin-bottom: 60px;
}

.game__image {
    width: 265px;
}

.game__title {
    color: #8C8C8C;
    font-family: 'Cera Pro', sans-serif;
    font-size: 28px;
    font-weight: 900;
}

.game__description {
    color: #FFFFFF;
    font-family: 'Cera Pro', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5em;
}

.game__figures {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.game__figure {
    width: 36px;
}