/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .ar-post{
        display: grid !important;
        grid-template-columns: repeat(2,1fr);
    }
    .ar-post .post-item:nth-child(1){
        grid-area: 1/1/span 3/span 1;
    }
    .ar-post .post-item:nth-child(1) .box{
        display: flex;
        flex-direction: column;
    }
    .ar-post .post-item:nth-child(1) .box-image,
    .ar-post .post-item:nth-child(1) .box-text{
        width: 100% !important;
    }
    .ar-post .post-item:nth-child(n+5){
        grid-column: -1/1;
    }
    .ar-post .post-item:nth-child(2) .from_the_blog_excerpt ,
    .ar-post .post-item:nth-child(3) .from_the_blog_excerpt ,
    .ar-post .post-item:nth-child(4) .from_the_blog_excerpt {
        display: none;
    }
    .a-blog{
        padding: 30px 30px 0 30px;
        border: 2px solid #FFD900;
        border-radius: 12px;
    }

    .stuck .header-main {
        background: #000 !important;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .header-main {
        background: #000 !important;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-game .row{
        grid-template-columns: repeat(2,1fr);
    }
    .a-blog {
        grid-template-columns: repeat(1, 1fr);
    }
    .a-blog .post-item {
        grid-column: -1/1;
    }
    .a-footer .a-menu{
        flex-direction: column;
        align-items: center;
    }
    .a-order{
        order: -1;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {}