/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Image Box 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-imagebox {
	margin-bottom: var(--widget-margin-bottom);
	padding-top: var(--widget-padding-top);
}

.core-imagebox .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-imagebox .shared-play-button {
	width: var(--space-12);
    height: var(--space-12);
}

.core-imagebox .content-section {
	left: var(--space-4);
	bottom: var(--space-6);
	margin-right: var(--space-8);
}

.core-imagebox .content-section .slide-title {
	font-size: var(--text-xl);
	color: var(--white);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--space-1);
}

.core-imagebox .content-section p {
	margin-bottom: var(--space-4);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: var(--leading-tight);
}

.core-imagebox .slide a.read-more:not(p *),
.core-imagebox .slide .slide-footer a {
	color: var(--white);
	background: var(--blue-4d);
	padding: 12px 24px;
	border: 0px solid var(--white-f2);
}
.core-imagebox .slide a.read-more:not(p *):hover,
.core-imagebox .slide .slide-footer a:hover {
	color: var(--white);
	background: var(--blue-007);
}

@media  screen and (min-width:64em) {
	.core-imagebox .content-section {
		left: var(--space-8);
		bottom: var(--space-8);
		margin-right: var(--space-8);
	}
	.core-imagebox .slide a.read-more:not(p *),
	.core-imagebox .slide .slide-footer a {
		padding: 16px 32px;
	}
}
