/* General Hero Section */
.g-hero {
    background-position: center 40px;
    height: 140px;
    /* Remove the pseudo element after */
    &:after {
        display: none;
    }
}

/* Home Content Styles */
.home-content {
    padding-top: 0;
    /* Hide the first horizontal rule */
    hr:first-of-type {
        display: none;
    }
    .home-questions {
        margin-top: 40px;
    }
}
/* Sub Page Header  */
.c-sub-page-header {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
/* Hide specific home section elements */
.home-games, 
.home-questions__title, 
.home-questions__p {
    display: none;
}

.home-questions__submit {
    display: inline-block;
}

@media (max-width: 1050px) {
    .g-hero {
        height: 205px;
        background: var(--hero-logo) no-repeat center 15px / 255px auto;
    }
    .home-content {
        .home-questions {
            margin-top: 0px;
        }
    }
    .g-hero__search {
        bottom: 30px;
    }
    .c-sub-page-header {
        margin-top: 28px;
    }
}


