/*
	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 {
	padding-top: 0;
	margin-bottom: 60px;
}

.core-imagebox .slide-waves.sv-hidden {
	display: none;
}

.core-imagebox .shared-play-button {
	top: var(--space-4);
    left: auto;
    right: var(--space-4);
    transform: none;
    width: var(--space-12);
    height: var(--space-12);
}

.core-imagebox .img-cont::after {
	top: 0;
	height: auto;
	background: rgba(0,0,0,.15);
}

.core-imagebox .content-section {
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100%;
	max-width: 940px;
	padding: var(--space-5);
	margin: 0;
	color: var(--white);
	pointer-events: none;
}

.core-imagebox .content-section a {
	pointer-events: all;
}

.core-imagebox .content-inner {
	max-width: 720px;
}

.core-imagebox .content-section .slide-title {
	margin-bottom: var(--space-5);
	font-family: var(--font-display-2);
	font-weight: var(--font-weight-heavy);
	font-size: var(--text-3xl);
	letter-spacing: .02rem;
	line-height: var(--leading-none);
	text-transform: uppercase;
	color: inherit;
}

.core-imagebox .content-section .slide-title > a {
	text-decoration: none !important;
}

.core-imagebox .content-section p {
	max-width: 580px;
	font-weight: var(--font-weight-normal);
}

@media (min-width: 40em) {
	.core-imagebox {
		margin-bottom: 80px;
	}

	.core-imagebox .shared-play-button {
		top: var(--space-5);
        right: var(--space-5);
        width: var(--space-16);
        height: var(--space-16);
	}

	.core-imagebox .content-section .slide-title {
		font-size: var(--text-4xl);
	}
}

@media (min-width: 64em) {
	.core-imagebox {
		margin-bottom: 100px;
	}

	.core-imagebox .content-section .slide-title {
		margin-bottom: var(--space-6);
		font-size: var(--text-5xl);
	}

	.core-imagebox .content-section p {
		margin-bottom: 30px;
		font-size: 1.333rem;
		font-weight: var(--font-weight-bold);
	}
}

@media (min-width: 90em) {
	.core-imagebox .shared-play-button {
		width: var(--space-20);
        height: var(--space-20);
	}
}

@media (min-width: 1800px) {
	.core-imagebox {
		margin-bottom: 200px;
	}

	.core-imagebox .content-section .slide-title {
		margin-bottom: var(--space-10);
		font-size: 3.5rem;
	}

	.core-imagebox .content-section p {
		margin-bottom: 60px;
	}
}