/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Marquee family. This enables the ability to
	a family of widgets in a single update without touching the structure of the widget and without needing
	to duplicate efforts across several widget-specific CSS files.
*/

.core-marquee {
	margin-bottom: var(--widget-margin-bottom);
	padding-top: var(--widget-padding-top);
}

.core-marquee .slide .img-cont::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75%;
	background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
	pointer-events: none;
}

.core-marquee .slide .slide-title {
	margin: 0 0 20px;
	font-size: var(--text-3xl);
	font-weight: 700;
        font-family: var(--font-title);
        color: var(--black);
}

.core-marquee .slide .slide-title::after {
    content: '';
    display: inline-block;
    background: url(/includes/public/assets/shared/arrows/arrow_contact.svg) no-repeat;
    width: 27px;
    height: 23px;
    margin: 0 0 0 var(--space-4);
}

@media (min-width: 40em) {
    .core-marquee .slide .slide-title {
        font-size: var(--text-4xl);
        line-height: var(--leading-tight);
    }

    .core-marquee[data-layout="horizontal"] .slide:not(:nth-child(1)) .slide-title {
        font-size: var(--text-lg);
    }

}

.core-marquee[data-layout="horizontal"] .slide:not(:nth-child(1)) .slide-title {
	font-size: var(--text-lg);
}

.core-marquee .slide p {
    font-size: var(--text-base);
    line-height: var(--leading-loose);
    font-weight: 400;
}

@media (min-width: 40em) {
    .core-marquee .slide p {
        font-size: var(--text-xl);
        line-height: var(--leading-relaxed);
    }
}

@media (min-width: 980px) {

    .core-marquee[data-layout="vertical"] .slide:nth-child(1) .slide-title {
        font-size: var(--text-5xl);
        line-height: var(--leading-tight);
    }
}