/* media screen
-------------------*/
@media screen {

    .art_fullWidth .inside_art {
        background: none;
    }

    .artbg-beige-dark a,
    .artbg-beige-dark * {
        color: #fff;
    }


    [class^="artbg-"] .inside_art, [class*=" artbg-"] .inside_art {
        position: relative;
    }

    [class^="artbg-"] a, [class*=" artbg-"] a,
    [class^="artbg-"] h1, [class*=" artbg-"] h2, [class^="artbg-"] h3, [class*=" artbg-"] h4, [class^="artbg-"] h5,
    [class^="artbg-"] .like-h1, [class*=" artbg-"] .like-h2, [class^="artbg-"] .like-h3, [class*=" artbg-"] .like-h4, [class^="artbg-"] .like-h5
    {
    }

    [class^="artbg-"], [class*=" artbg-"] {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    /* Grey Article
    --------------------*/
    .artbg-grey.art_fullWidth,
    .artbg-grey .inside_art {
        background: var(--bc-light-grey);
    }
    /* Red Article
    --------------------*/
    .artbg-red.art_fullWidth,
    .artbg-red .inside_art {
        background: var(--bc-red);
    }
    .artbg-red a,
    .artbg-red * {
        color: #fff;
    }
    .artbg-red .ce_list ul,.artbg-red .ce_text ul,
    .artbg-red .ce_text ul li {
        border-color: #fff;
    }


}


/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}



/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
    [class^="artbg-"] .inside_art, [class*=" artbg-"] .inside_art {
		margin-left: calc(var(--block-padding) * 1rem);
		margin-right: calc(var(--block-padding) * 1rem);
    }
}


/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {
}


/* min-width:1100 */
@media only screen and (min-width:1100px) {

}
/*@media screen ends*/



/* Article BG IMAGE Query
--------------------*/
@media screen {
    .artbg,
    .artbg .container {
		position: relative;
		overflow: hidden;
		background-repeat: no-repeat;
		background-position: center;
        background-size: cover;
        transition: 0s linear;
	}

    .artbg {
		/*background-attachment: fixed;*/ /* add this line from script */
        min-height: 350px;
        height: 350px;
		position: relative;
	}

	.artbg:before {
	}

    .artbg .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .artbg .container .block{
        margin: 0;
    }
}

/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {
    .artbg {
		/*background-attachment: fixed;*/ /* add this line from script */
        min-height: 400px;
        height: 400px;
        position: relative;
	}
}
/* Article BG IMAGE ends
--------------------*/


