/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Mosaic 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-mosaic  {
	max-width: 1440px;
	margin: 0 auto;
	--text-color: var(--white);
	--bg-color: var(--red);
	padding-top: var(--widget-padding-top);
	margin-bottom: var(--widget-margin-bottom);
}

.core-mosaic .widget-title {
	margin-right: var(--space-8);
	font-family: var(--font-heading);
	font-size: 42px;
	line-height: 50px;
	font-weight: 700;
	margin-left: 15px;
	margin-bottom: 0;
}

.core-mosaic .mosaic-tile .mosaic-tile-inner .tile-background {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent linear-gradient(179deg, #00000000 0%, #000000 300%) 0% 0% no-repeat padding-box;
}

.core-mosaic .mosaic-tile .mosaic-tile-inner .tile-info-wrapper {
	position: absolute;
	left: 20px;
	bottom: 25px;
	z-index: 2;
	min-width: 100px;
	pointer-events: none;
}

.core-mosaic .mosaic-tile .category {
	color: var(--text-color);
	font-family: var(--font-body-bold);
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
	margin-bottom: 4px;
	font-weight: 700;
}

.core-mosaic .mosaic-tile .tile-title {
	color: var(--text-color);
	font-family: var(--font-body-bold);
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	margin: 0;
	margin-right: 25px;
}

.core-mosaic .mosaic-tile .tile-title  {
	grid-column:  span 16;
	grid-row: span 12;
}

.core-mosaic .mosaic-tile .tile-title  {
	grid-column:  span 10;
	grid-row: span 6;
}

.core-mosaic .mosaic-tile .tile-title  {
	grid-column: span 5;
	grid-row: span 6;
}

.core-mosaic .mosaic-tile .tile-title  {
	grid-column: span 5;
	grid-row: span 6;
}

@media (min-width: 40em) {	
	.core-mosaic .mosaic-tile .tile-title {
		font-size: var(--text-xl);
	}
}


@media (min-width: 64em) {
	.core-mosaic .mosaic-tile .category {
		margin-bottom: 8px;
	}
	.core-mosaic .widget-title {
		font-family: var(--font-heading);
		font-size: var(--text-6xl);
		font-weight: 700;
		color: var(--text-color);
	}

	.core-mosaic .mosaic-tile:nth-child(1)  .mosaic-tile-inner .tile-info-wrapper {
		left: 40px;
		bottom: 45px;
	}

	.core-mosaic .mosaic-tile:nth-child(2)  .mosaic-tile-inner .tile-info-wrapper {
		left: 25px;
		bottom: 25px;
	}

	.core-mosaic .mosaic-tile:nth-child(3)  .mosaic-tile-inner .tile-info-wrapper,
	.core-mosaic .mosaic-tile:nth-child(4)  .mosaic-tile-inner .tile-info-wrapper {
		left: 25px;
		bottom: 25px;
	}

	
	.core-mosaic .mosaic-tile:nth-child(1) .tile-title {
		font-size: 44px;
		line-height: 50px;
	}
	.core-mosaic .mosaic-tile:nth-child(2) .tile-title {
		font-size: 27px;
		line-height: 32px;
	}
	.core-mosaic .mosaic-tile:nth-child(3) .tile-title,
	.core-mosaic .mosaic-tile:nth-child(4) .tile-title {
		font-size: 22px;
		line-height: 26px;
	}
}



@media (hover: hover) {
	.core-mosaic .mosaic-tile:hover {
		outline: 3px solid var(--bg-color);
	}
}
