.game_list {
    --_grid-gap: 4rem;
    display: grid;
    grid-auto-flow: row;
    grid-auto-rows: 370px;
    gap: var(--_grid-gap);
}

.game {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    border-radius: 13px;
    overflow: hidden;
    background-color: var(--gray-500);
    font-size: 0.95rem;
}

.game__image {
    width: 95%;
    height: 100%;
    border-radius: 13px;
    overflow: hidden;
}

.game:nth-child(2n) .game__image {
    order: 2; /* my favourite css tag so far, ily <3, please be my partner */
    place-self: end;
}

.game__image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game__text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 3rem;
    opacity: var(--text-opacity-convergence);
}

.game__text > span:first-child {
    font-size: 1.9em;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.game__text > span:nth-child(2) {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 930px) {
    .game_list {
        --_grid-gap: 2rem;
        grid-auto-rows: 500px;
    }

    .game {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .game__image {
        width: 100%;
        grid-row: 1 / 2;
    }

    .game__text {
        padding: 2em;
    }

    .game__text > span:nth-child(2) {
        line-height: 1.7;
    }
}

@media (max-width: 850px) {
    .game_list {
        --_grid-gap: 1.5rem;
        grid-auto-rows: 600px;
    }
}