.custom-mosaic {

	--view-all-color-hover: var(--secondary-color-700);
	--view-all-background-color-hover: var(--white);

	position: relative;
	margin: var(--space-8) auto 136px;
}

.custom-mosaic .mosaic-inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.custom-mosaic .inner {
	position: relative;
	overflow: hidden;
	border-radius: .9375rem;
}

.custom-mosaic .mosaic-inner::before {
	content: '';
	display: block;
	pointer-events: none;
	background-image: url("https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/temecula-redesign/a0c7a3c78d3267da82596238991c1421525773c0_cca8fca8-bf1b-42be-b019-582dfdeb8302.jpg");
	background-repeat: repeat;
	height: calc(100% + 3.75rem);
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: background-image var(--transition-appendix);
	z-index: -1;
	opacity: 0.25;
}

.custom-mosaic .cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: auto;
	gap: .625rem;
	width: 100%;
	padding: 0 1.75rem;
}

.custom-mosaic .slide .img-cont {
	transition: transform 0.3s ease-in-out;
	transform-origin: center center;
	object-fit: cover;
}

.custom-mosaic .slide:nth-child(1),
.custom-mosaic .slide:nth-child(4) {
	grid-column: 1 / -1;
}

.custom-mosaic .slide:nth-child(2),
.custom-mosaic .slide:nth-child(5) {
	grid-column: 1;
}

.custom-mosaic .slide:nth-child(3),
.custom-mosaic .slide:nth-child(6) {
	grid-column: 2;
}

.custom-mosaic .widget-header {
	position: relative;
	margin: 0 37px;
	padding: 60px 14px 6px;
	border-radius: 0 var(--space-10) 0 var(--space-10);
	display: flex;
	flex-direction: column-reverse;
	text-align: center;
	gap: 9px;
}

.custom-mosaic .widget-subtitle {
	margin-bottom: .625rem;
	font-family: var(--font-body);
	font-size: var(--text-3xl);
	font-weight: var(--font-weight-bold);
	font-style: italic;
	line-height: var(--leading-none);
}

.custom-mosaic .widget-title {
	font-family: var(--font-display);
	font-weight: var(--font-weight-normal);
	font-size: 2.5rem;
	line-height: 1.2;
	color: var(--green-42);
}

.custom-mosaic .widget-desc {
	margin-bottom: .875rem;
	font-family: var(--font-body);
	font-size: var(--text-lg);
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-normal);
}

.custom-mosaic .view-all {
	display: inline-block;
	padding: .4219rem .8969rem;
	font-size: 1.0625rem;
	font-weight: var(--font-weight-bold);
	text-decoration: none;
	text-align: center;
	background-color: var(--blue-24);
	color: var(--sw-button-tertiary-color);
	border-radius: var(--rounded-full);
	transition:
		color var(--transition-appendix),
		background-color var(--transition-appendix);
}

.custom-mosaic .content,
.custom-mosaic .inner .content-section {
	position: absolute;
	left: 50%;
	width: 80%;
}

.custom-mosaic .content {
	top: 50%;
	transform: translate(-50%, -50%);
}

.custom-mosaic .inner .content-section {
	bottom: 3%;
	left: 41%;
	transform: translateX(-50%);
	pointer-events: none;
}

.custom-mosaic .content .slide-title,
.custom-mosaic .content-section .slide-title {
	font-family: var(--font-hanley-block);
	color: var(--white);
	font-size: 1.625rem;
	line-height: var(--leading-none);
	font-weight: var(--font-weight-normal);
	padding: var(--space-2) var(--space-4);
	text-shadow: .1875rem .1875rem var(--space-2) #00000029;
}

.custom-mosaic .cols .slide:nth-child(2) .inner .content-section,
.custom-mosaic .cols .slide:nth-child(3) .inner .content-section,
.custom-mosaic .cols .slide:nth-child(5) .inner .content-section,
.custom-mosaic .cols .slide:nth-child(6) .inner .content-section {
	bottom: 3%;
	left: 53%;
	width: 100%;
}

.custom-mosaic .content a {
	display: block;
	width: fit-content;
	margin: 0 auto;
	background-color: var(--secondary-color-700);
	color: var(--white);
	border-radius: var(--rounded-full);
	padding: var(--space-2) var(--space-8);
	text-transform: uppercase;
	pointer-events: all;
	transition: background-color var(--transition-appendix), color var(--transition-appendix);
}

.custom-mosaic .img-cont {
	position: relative;
}

.custom-mosaic .cols .slide img {
	aspect-ratio: 983/588;
	width: 100%;
	border-radius: .9375rem;
}

.custom-mosaic .cols .slide:nth-child(2) img,
.custom-mosaic .cols .slide:nth-child(3) img,
.custom-mosaic .cols .slide:nth-child(5) img,
.custom-mosaic .cols .slide:nth-child(6) img {
	aspect-ratio: 486 / 486;
	width: 100%;
	border-radius: .9375rem;
}

.custom-mosaic .img-cont::before,
.custom-mosaic .img-cont::after {
	position: absolute;
	content: '';
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.29%, rgba(0, 0, 0, 0.5) 100%);
	pointer-events: none;
	border-radius: .9375rem;
	opacity: 1;
	transition: opacity var(--transition-appendix);
}

.custom-mosaic .img-cont::after {
	opacity: 0;
}


.custom-mosaic .shared-play-button {
	left: unset;
	transform: unset;
	top: var(--space-2);
	right: var(--space-2);
	height: var(--space-10);
	width: var(--space-10);
	font-size: var(--text-base);
}

@media (hover: hover) {
	.custom-mosaic .view-all:hover {
		background-color: var(--sw-button-tertiary-bg-hover);
		border-radius: var(--btn-hover-border-radius);
	}
}

@media (max-width: 20rem) {

	.custom-mosaic .content .slide-title,
	.custom-mosaic .content-section .slide-title {
		font-size: var(--text-xl);
		font-weight: var(--font-weight-normal);
		text-shadow: .1875rem .1875rem var(--space-2) #00000029;
		padding: var(--space-1);
	}
}

@media (min-width: 40em) {
	s .custom-mosaic .shared-play-button {
		height: var(--space-12);
		width: var(--space-12);
		font-size: var(--text-lg);
	}
}

@media (min-width: 64em) {
	.custom-mosaic {
		margin: var(--space-8) auto 90px;
	}

	.custom-mosaic .cols .slide:nth-child(1) img,
	.custom-mosaic .cols .slide:nth-child(3) img,
	.custom-mosaic .cols .slide:nth-child(5) img {
		aspect-ratio: 384/408;
		width: 100%;
		border-radius: .9375rem;
	}

	.custom-mosaic .cols .slide:nth-child(2) img,
	.custom-mosaic .cols .slide:nth-child(4) img,
	.custom-mosaic .cols .slide:nth-child(6) img {
		aspect-ratio: 384 / 232;
		width: 100%;
		border-radius: .9375rem;
	}

	.custom-mosaic .mosaic-inner {
		justify-content: center;
		align-items: center;
		gap: 1.125rem;
	}

	.custom-mosaic .widget-header {
		margin: 0 0 0 var(--space-5);
		padding: 58px var(--space-6) 0;
		gap: 8px;
	}

	.custom-mosaic .mosaic-inner::before {
		/* background-image: url("https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/temecula-redesign/a0c7a3c78d3267da82596238991c1421525773c0_cca8fca8-bf1b-42be-b019-582dfdeb8302.jpg"); */
		height: 100%;
		width: 100%;
		top: 0;
	}

	.custom-mosaic .widget-subtitle {
		font-size: var(--text-3xl);
	}

	.custom-mosaic .widget-title {
		font-size: 3.438rem;
	}

	.custom-mosaic::before {
		height: 80%;
	}

	.custom-mosaic .cols {
		max-width: calc(var(--width-double) - var(--space-20));
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, minmax(7.3125rem, 1fr));
		grid-template-rows: minmax(3.125rem, .3fr) minmax(3.125rem, 0.25fr) minmax(3.75rem, 0.4fr) minmax(var(--space-3), 0.2fr) minmax(var(--space-20), .5fr);
		gap: 1.125rem;
		grid-auto-flow: column;
		padding: 0 var(--space-6);
	}


	.custom-mosaic .cols .slide:nth-child(1) {
		grid-area: 1 / 1 / 3 / 1;
	}

	.custom-mosaic .cols .slide:nth-child(2) {
		grid-area: 1 / 2 / 2 / 3;

	}

	.custom-mosaic .cols .slide:nth-child(3) {
		grid-area: 1 / 3 / 3 / 4;
	}

	.custom-mosaic .cols .slide:nth-child(4) {
		grid-area: 4 / 1 / 5 / 1;
	}

	.custom-mosaic .cols .slide:nth-child(5) {
		grid-area: 3 / 2 / 5 / 3;
	}

	.custom-mosaic .cols .slide:nth-child(6) {
		grid-area: 4 / 3 / 5 / 4;

	}

	.custom-mosaic .cols .slide:nth-child(1) .inner .content-section,
	.custom-mosaic .cols .slide:nth-child(2) .inner .content-section,
	.custom-mosaic .cols .slide:nth-child(3) .inner .content-section,
	.custom-mosaic .cols .slide:nth-child(4) .inner .content-section,
	.custom-mosaic .cols .slide:nth-child(5) .inner .content-section,
	.custom-mosaic .cols .slide:nth-child(6) .inner .content-section {
		bottom: 4%;
		left: 42%;
		width: 80%;
	}

	.custom-mosaic .content-section .slide-title {
		font-size: var(--text-4xl);
		padding: var(--space-2) var(--space-6);
	}
}

@media (hover: hover) {
	.custom-mosaic .slide:hover .img-cont {
		transform: scale(1.1);
	}
}