/* Remove empty page header gap */
#cms .page-header {
    display: none;
}

#stc-cms-page{
    color: var(--stc-text-primary);
    margin: 0px;
}

#stc-cms-page
.stc-cms-hero-container{
    text-align: center;
    padding: 100px 0px;
}

#stc-cms-page
.stc-cms-hero-heading-primary{
    font-size: 32px;
    font-weight: 700;
}

#stc-cms-page
.stc-cms-hero-heading-secondary{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

#stc-cms-page
.stc-cms-story-container{
    display: flex;
    flex-direction: column-reverse;
    text-align: justify;
    font-size: 14px;
}

#stc-cms-page
.stc-cms-heading{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

#stc-cms-page
.stc-cms-text-highlight{
    color: var(--stc-text-secondary-light-only);
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
}

#stc-cms-page
.stc-cms-text{
    color: var(--stc-text-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

#stc-cms-page
.stc-cms-story-container-block{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}


#stc-cms-page
.stc-cms-offer-container{
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: var(--stc-surface-card-light-only);
    border-radius: var(--stc-radius-sm);
    box-shadow: var(--stc-shadow-md);
}

#stc-cms-page
.stc-cms-offer-container-block{
    flex: 1;
    display: flex;    
    flex-direction: row;
    align-items: center;
}

#stc-cms-page
.stc-cms-offer-container-block img{
    width: 100px;
    height: auto;
    padding: 20px;
}

#stc-cms-page
.stc-cms-offer-container-block-text{
    display: flex;
    flex-direction: column;
}

#stc-cms-page
.stc-cms-offer-container-block h2{
    color: var(--stc-text-primary-light-only);
}

#stc-cms-page
.stc-cms-offer-container-block p{
    color: var(--stc-text-primary-light-only);
}

#stc-cms-page
.stc-cms-slider-section{
    padding: 30px 0px;
}

#stc-cms-page
.stc-cms-slider-container{
    background-color: var(--stc-surface-primary);
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: var(--stc-radius-sm);
    box-shadow: var(--stc-shadow-md);
}


#stc-cms-page
.stc-cms-slider-container-block{
    padding: 15px 0px;
}

#stc-cms-page
.stc-cms-slider-heading{
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

#stc-cms-page
.stc-cms-slider-text{
    text-align: justify;
    font-weight: 400;
    line-height: 28px;
}

#stc-cms-page
.stc-cms-slider-wrapper{
    background-color: var(--stc-surface-card-light-only);
}












/* BREAKPOINTS (Tailwind Style) */
/* md ≥ 768px */
@media (min-width: 768px) {

    #stc-cms-page
    .stc-cms-story-container{
        flex-direction: row;
    }

    #stc-cms-page
    .stc-cms-story-container-block{
        display: flex;
        flex-direction: column;
        width: 50%;
    }

    #stc-cms-page
    .stc-cms-offer-container{
        flex-direction: row;
    }

    #stc-cms-page
    .stc-cms-offer-container-block{
        flex-direction: column;
        text-align: center;
    }




}