/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Slider 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-hero-image {
    position: relative;
    margin-bottom: 24px;
}

.core-hero-image::after {
    content: '';
    background-image: url(/includes/public/assets/shared/decorations/line-dots-brown.svg);
    background-repeat: repeat-x;
    background-size: auto;
    display: block;
    height: 5px;
    width: 100%;
    z-index: 3;
    position: absolute;
    bottom: -10px;
}

.core-hero-image .img-cont:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 40%);
	pointer-events: none;
}

.core-hero-image .slide .content-section {
    padding: 34px 0;
}

.core-hero-image .slide .slide-title {
    display: inline-block;
    padding: 15px 17px;
    margin-bottom: 0;
    max-width: 100%;
    background-color: rgba(31, 27, 27, 0.5);
    font-size: 1.25rem;
    font-weight: 100;
}

.core-hero-image .slide p {
    display: none;
}

.core-hero-image .read-more {
	font-weight: 700;
	color: var(--text-color);
}

@media screen and (min-width: 64em) {
    .core-hero-image::after {
        bottom: -22px;
    }

    .core-hero-image .slide .content-section {
        padding: 32px 0;
    }

    .core-hero-image .slide .slide-title {
        padding: 15.5px 30px 15.5px 58px;
        font-size: 1.5rem;
    }
}