.ig22-games-page {

    max-width: 1100px;

    margin: 30px auto;

    padding: 20px;

    box-sizing: border-box;
}


/* HERO */

.ig22-games-hero {

    text-align: center;

    margin-bottom: 35px;
}

.ig22-games-logo {

    font-size: 20px;

    font-weight: 800;

    color: #e67e22;

    margin-bottom: 5px;
}

.ig22-games-hero h1 {

    margin: 0;

    font-size: 48px;

    font-weight: 900;
}

.ig22-games-hero p {

    margin-top: 10px;

    color: #666;
}


/* GRID */

.ig22-games-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* CARD */

.ig22-game-card {

    display: flex;

    flex-direction: column;

    overflow: hidden;

    min-height: 260px;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    text-decoration: none;

    color: inherit;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, .06);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.ig22-game-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, .12);
}


/* ICON */

.ig22-game-icon {

    height: 130px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #faf8ef;

    font-size: 42px;

    font-weight: 900;

    color: #776e65;
}


/* CONTENT */

.ig22-game-card-content {

    padding: 18px;
}

.ig22-game-card h2 {

    margin:
        0 0 8px;

    font-size: 22px;
}

.ig22-game-card p {

    margin:
        0 0 15px;

    font-size: 14px;

    color: #777;

    line-height: 1.5;
}

.ig22-play {

    font-weight: bold;

    color: #e67e22;
}


/* COMING SOON */

.ig22-coming {

    cursor: default;

    opacity: .7;
}

.ig22-coming:hover {

    transform: none;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, .06);
}

.ig22-coming .ig22-game-icon {

    filter: grayscale(.3);
}

.ig22-coming span {

    font-size: 13px;

    font-weight: bold;

    color: #999;
}


/* MOBILE */

@media (max-width: 800px) {

    .ig22-games-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 520px) {

    .ig22-games-page {

        padding: 12px;
    }

    .ig22-games-hero h1 {

        font-size: 38px;
    }

    .ig22-games-grid {

        grid-template-columns:
            1fr;

        gap: 15px;
    }

    .ig22-game-card {

        min-height: 230px;
    }
}