/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Callout Tiles 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.
*/

/* Mobile Call Out Tiles 3 & 4 Across Fullwidth */
.core-callout-tiles {
	margin-bottom: var(--widget-margin-bottom);
	padding-top: var(--widget-padding-top);
	margin: 0 auto;
}

.core-callout-tiles .slides {
	gap: unset;
	margin-bottom: var(--space-5);
}

.core-callout-tiles .slide .img-cont::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: ease 400ms;
}

.core-callout-tiles .slide img {
	transform-origin: center;
	transition: transform 400ms ease;
	pointer-events: none;
}

.core-callout-tiles .shared-play-button {
	top: unset;
	left: unset;
	right: 10px; 
	bottom: 15px;
	transform: unset;
	width: 40px;
	height: 40px;
}

.core-callout-tiles i.fa.fa-play {
	font-size: 19px;
}

/* 640px*/
@media (min-width: 40em){
	.core-callout-tiles .slide .content-section {
		padding: unset;
	}

	.core-callout-tiles .slide .slide-title,
	.core-callout-tiles .slide .slide-title a {
		padding: 0px 10px;
		height: unset;
	}
	.core-callout-tiles .shared-play-button {
		right: 10px;
		bottom: 10px;
		width: var(--space-8);
		height: var(--space-8);
	}

	.core-callout-tiles i.fa.fa-play {
		font-size: var(--text-xl);
	}
}