/*
	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.
*/
.core-callout-tiles {
	padding: 0;
	margin-bottom: 2px;
}

.core-callout-tiles .slides {
	padding: 0;
	gap: 2px
}

.core-callout-tiles .slide .img-cont img {
	filter: grayscale(100%);
	transition: filter 300ms ease-out;
}

.core-callout-tiles .slide:hover .img-cont img {
	filter: grayscale(0%);
	transition: filter 300ms ease-out;
}

.core-callout-tiles .slide:hover .img-cont img {
	transform: unset;
}

.core-callout-tiles .slide .content-section {
	text-align: center;
	padding: 20px;
}

.core-callout-tiles[data-slides-across="4"]  .slide .content-section {
	padding: 10px;
}

.core-callout-tiles .slide .slide-title {
	line-height: 1.6;
}

.core-callout-tiles .slide .slide-title span {
	font-family: 'subway_bold';
	font-weight: 400;
	color: var(--white);
	padding: 4px 6px;
	background-color: var(--red);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 18px;
}

.core-callout-tiles .slide .slide-title span a {
	color: var(--white);
}

@media screen and (min-width: 64em) {
	.core-callout-tiles .slide .content-section {
		padding: 20px;
	}

	.core-callout-tiles .slide .slide-title span {
		font-size: 24px;
		padding: 5px 14px;
		line-height: 1.7;
	}
}


@media screen and (min-width: 90em) {
	.core-callout-tiles .slide .slide-title span {
		font-size: 35px;
		padding: 5px 14px;
		line-height: 1.65;
	}
}
