.game-shows__heading {
    margin-bottom: 20px;
    text-align: center;
}

.game-shows__text {
    text-align: center;
    max-width: 984px;
    margin-left: auto;
    margin-right: auto;
}

.game-shows__items {
    display: flex;
    flex-direction: column;
}

.game-shows__item-image-wrap {
    border-radius: 20px;
    background: #1E2A35;
}


.game-shows__item-image img{
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-shows__description p:last-child{
    margin-bottom: 0;
}




@media screen and (min-width: 991px) {
    .game-shows__text {
        margin-bottom: 60px;

    }

    .game-shows__items {
        gap: 20px;
    }

    .game-shows__item {
        border: 1px solid #1E2A35;
        border-radius: 20px;
        display: flex;
        gap: 20px;
    }

    .game-shows__items-mobile {
        display: none;
    }

    .game-shows__item-image-wrap {
        flex-basis: 328px;
        padding: 14px;
        display: flex;
        flex-direction: column;
    }

    .game-shows__text-wrap {
        flex-basis: 912px;
        display: flex;
        flex-direction: column;
    }

    .game-shows__item-image {
        margin-bottom: 20px;
        flex: 1;
    }

    .game-shows__name {
        margin-bottom: 20px;
    }

    .game-shows__description {
        margin-bottom: 40px;
        flex: 1;
    }

    .game-shows__description p {
        margin-bottom: 20px;
    }

    .game-shows__decor {
        margin-left: auto;
        margin-right: 12px;
    }

    .game-shows__text-wrap {
        padding: 11px 0px;
    }


}

@media screen and (max-width: 990.98px) {
    .game-shows__text {
        margin-bottom: 40px;
    }

    .game-shows__items {
        display: none;
    }

    .game-shows__items-mobile {
        display:flex;
        gap: 40px;
    }

    .game-shows__item-image-wrap {
        padding: 8px;
        margin-bottom: 20px;
    }

    .game-shows__name {
        margin-bottom: 8px;
    }

    .game-shows__description {
        margin-bottom: 20px;
    }

    .game-shows__description p {
        margin-bottom: 14px;
    }

    .game-shows__decor {
        margin-bottom: 20px;
    }


}