/*
	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: 85px 30px 125px;
	margin-bottom: 100px;
	color: var(--white);
}

.core-callout-tiles .widget-header {
	--border-color: var(--white);

	position: relative;
	z-index: 3;
	padding: 0;
}

.core-callout-tiles .widget-header-inner {
	display: block;
	padding-bottom: 27px;
	margin-bottom: 50px;
}

.core-callout-tiles .widget-title {
	margin: 0;
	font-family: var(--montserrat);
	font-weight: bold;
	font-size: 27px;
	line-height: calc(10/9);
	text-align: center;
	color: inherit;
}

.core-callout-tiles .widget-title .title-bold {
	font-family: var(--brice-semibold);
	margin-left: 5px;
}

.core-callout-tiles .slides {
	position: relative;
	z-index: 2;
}

.core-callout-tiles:not([data-width="full"]) .slides {
	grid-template-columns: minmax(0, 1fr);
	gap: 74px;
	max-width: 1380px;
	padding: 0;
}

.core-callout-tiles .bg-image,
.core-callout-tiles .bg-image .slide-img {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.core-callout-tiles .bg-image .slide-img {
	background: linear-gradient(to top, var(--purple), var(--blue));
}

.core-callout-tiles .slide .img-cont {
	overflow: visible;
}

.core-callout-tiles .slide .content-section {
	transform: translateY(50%);
	padding: 0;
	text-align: center;
}

.core-callout-tiles .slide .slide-title {
	padding: 12px 25px;
	background: var(--red);
	font-family: var(--brice);
	font-weight: normal;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	color: inherit;
}

@media (min-width: 64em) {
	.core-callout-tiles {
		padding: 90px 30px 156px;
	}

	.core-callout-tiles .widget-header-inner {
		padding-bottom: 13px;
		margin-bottom: 55px;
	}

	.core-callout-tiles .widget-title {
		font-size: 45px;
	}
}