.mosaic .cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.mosaic header.widget-header {
	background: var(--green);
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: end;
}

.mosaic .widget-title {
	font-size: 2.3125rem;
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	width: 50%;
	transform: translate(90%, -7px);
	line-height: .9;
}

.mosaic,
.mosaic .img-cont {
	position: relative;
}

.mosaic .slide .inner {
	position: relative;
}

.mosaic .img-cont img {
	display: block;
	width: 100%;
}

.mosaic h4, .mosaic h4 a {
	color: var(--text-black);
	font-weight: bold;
	transition: opacity .1s;
	pointer-events: all;
	background: var(--white);
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.625rem;
	line-height: 1.3;
}

.mosaic .slide.link h4 a:hover {
	opacity: .7;
}

.mosaic .content-section {
	padding: 20px;
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
	pointer-events: none;
}

.mosaic .content-section p {
	color: #fff;
}

.mosaic .content-section .read-more:hover {
	opacity: .7;
}

.mosaic .shared-play-button {
	top: unset;
	left: unset;
	right: 10px;
	bottom: 15px;
	transform: unset;
	width: 40px;
	height: 40px;
}

.mosaic i.fa.fa-play {
	font-size: 19px;
}

@media (min-width: 40em) {
	.panel-two-col .mosaic {
		margin-bottom: 0;
	}

	.mosaic .widget-title {
		font-size: 6rem;
		transform: translate(85%, -30px);
		line-height: .859;
	}

	.mosaic  h4, .mosaic h4 a {
		font-size: 3.375rem;
		width: fit-content;
		padding: 0 18px;
		margin: 0 auto;
		min-width: 300px;
		line-height: 1.1;
	}

	.mosaic h4 a {
		cursor: pointer;
	}
	
	.mosaic .shared-play-button {
		right: 10px;
		bottom: 15px;
		width: var(--space-16);
		height: var(--space-16);
	}
	
	.mosaic i.fa.fa-play {
		font-size: unset;
	}
}

@media (min-width: 64em) {
	.mosaic .cols {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.mosaic .slide {
		position: relative;
	}

	.mosaic .slide::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: var(--black);
		opacity: 0;
		transition: opacity ease 400ms;
		z-index: 1;
		pointer-events: none;
	}
	
	.mosaic .slide.link:hover::before {
		opacity: 0.8;
	}

	.mosaic .slide.link:hover h4 a {
		opacity: unset;
		transition: color ease 400ms;
	}

	.mosaic .slide.link:hover:nth-child(2) h4 a  {
		color: var(--purple);
	}
	.mosaic .slide.link:hover:nth-child(3) h4 a  {
		color: var(--orange);
	}
	.mosaic .slide.link:hover:nth-child(4) h4 a  {
		color: var(--light-green);
	}
	.mosaic .slide.link:hover:nth-child(5) h4 a  {
		color: var(--yellow);
	}
	.mosaic .slide.link:hover:nth-child(6) h4 a  {
		color: var(--red);
	}

	
}