.core-marquee.marquee {
	padding: 10px 0;
	margin: 0;
}

.core-marquee.marquee .slides {
	padding: 0 10px;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(4, 1fr);
}

.core-marquee.marquee .slides .slide:nth-of-type(1),
.core-marquee.marquee .slides .slide:nth-of-type(4) {
	grid-column: 1 / span 2;
}

.core-marquee.marquee .slide .content-section p,
.core-marquee.marquee .slide .slide-footer {
	display: none;
}

.core-marquee.marquee .slide .corner-ornament {
	display: none;
	opacity: 0;
	width: 35px;
}

.core-marquee.marquee .shared-play-button {
	transform: unset;
	left: unset;
	right: -8px;
	top: -8px;
	transform: scale(0.5);
}

.core-marquee.marquee .slide .img-cont {
	height: 100%;
	background-color: #333;
}

.core-marquee.marquee .slide .img-cont img {
	height: 100%;
	object-fit: cover;
}

.core-marquee.marquee .slide .img-cont::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	pointer-events: none;
	opacity: 0.3;
}

.core-marquee.marquee .slide .content-section {
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%);
	width: 98%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.core-marquee.marquee .slide .slide-title {
	font-family: var(--font-display-alt);
	letter-spacing: 0.05em;
	font-weight: normal;
	font-size: 24px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	padding: 16px 0 24px 0;
}

@media(hover: hover) {
	.core-marquee.marquee .slide .slide-title a:hover {
		text-decoration: none;
	}
}

.core-marquee.marquee .slides .slide:nth-of-type(1) .slide-title,
.core-marquee.marquee .slides .slide:nth-of-type(4) .slide-title {
	font-size: 30px;
	line-height: 1.067;
	padding: 16px 0 22px 0;
}

.core-marquee.marquee .slide .subtitle {
	display: none;
	font-family: var(--font-display-script);
	font-weight: 400;
	font-size: 42px;
	line-height: 0.5227;
	text-transform: uppercase;
	text-align: center;
	padding: 4px 0 0 0;
}

.core-marquee.marquee .slides .slide:nth-of-type(1) .subtitle,
.core-marquee.marquee .slides .slide:nth-of-type(4) .subtitle {
	display: block;
}

.core-marquee.marquee .slide .content-section .ornament {
	width: 64px;
}

.core-marquee.marquee .slide .content-section .ornament:last-of-type {
	margin-bottom: -4px;
}

.core-marquee.marquee .slide:nth-of-type(1) .content-section .ornament:last-of-type,
.core-marquee.marquee .slide:nth-of-type(4) .content-section .ornament:last-of-type {
	margin-bottom: 6px;
}

@media (min-width: 40em) {
	.core-marquee.marquee .shared-play-button {
		right: 5%;
		top: 5%;
		transform: unset;
	}	

	.core-marquee.marquee .slide .slide-title {
		font-size: calc(24px + (55 - 24) * ((100vw - 640px) / (1024 - 640)));
	}

	.core-marquee.marquee .slides .slide:nth-of-type(1) .slide-title,
	.core-marquee.marquee .slides .slide:nth-of-type(4) .slide-title {
		font-size: calc(30px + (55 - 30) * ((100vw - 640px) / (1024 - 640)));
	}

	.core-marquee.marquee .slide .subtitle {
		font-size: calc(42px + (75 - 42) * ((100vw - 640px) / (1024 - 640)));
	}
}

@media (min-width: 64em) {
	.core-marquee.marquee .slide .slide-title,
	.core-marquee.marquee .slides .slide:nth-of-type(1) .slide-title,
	.core-marquee.marquee .slides .slide:nth-of-type(4) .slide-title {
		font-size: calc(36px + (55 - 36) * ((100vw - 1024px) / (1440 - 1024)));
	}

	.core-marquee.marquee .slides .slide:nth-of-type(1) .subtitle,
	.core-marquee.marquee .slides .slide:nth-of-type(4) .subtitle,
	.core-marquee.marquee .slide .subtitle {
		display: block;
		font-size: 75px;
	}

	.core-marquee.marquee .slides {
		grid-template-columns: 3.9143fr 2.85fr 2.9571fr;
		grid-template-rows: 3.241fr 2.5388fr 0.4898fr 3.241fr;
		gap: 20px;
		padding: 0 20px;
		max-width: unset;
	}

	.core-marquee.marquee .slides .slide:nth-of-type(1),
	.core-marquee.marquee .slides .slide:nth-of-type(4) {
		grid-column: unset;
	}

	.core-marquee.marquee .slides .slide:nth-of-type(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
	}

	.core-marquee.marquee .slides .slide:nth-of-type(2) {
		grid-column: 2 / 4;
		grid-row: 1 / 2;
	}

	.core-marquee.marquee .slides .slide:nth-of-type(3) {
		grid-column: 2 / 3;
		grid-row: 2 / 4;
	}

	.core-marquee.marquee .slides .slide:nth-of-type(4) {
		grid-column: 2 / 4;
		grid-row: 4 / 5;
	}

	.core-marquee.marquee .slides .slide:nth-of-type(5) {
		grid-column: 1 / 2;
		grid-row: 3 / 5;
	}

	.core-marquee.marquee .slides .slide:nth-of-type(6) {
		grid-column: 3 / 4;
		grid-row: 2 / 4
	}

	.core-marquee.marquee .slide .content-section .ornament {
		width: 99px;
		transition: opacity ease 0.4s;
	}

	.core-marquee.marquee .slides .slide .img-cont:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		z-index: 1;
		pointer-events: none;
		transition: opacity ease-out 0.4s;
	}

	.core-marquee.marquee .slide .content-section {
		z-index: 2;
	}

	.core-marquee.marquee .slides .slide .img-cont.slide-1:before {
		background-color: #467f7e;
	}

	.core-marquee.marquee .slides .slide .img-cont.slide-2:before {
		background-color: #911854;
	}

	.core-marquee.marquee .slides .slide .img-cont.slide-3:before {
		background-color: #7a8b51;
	}

	.core-marquee.marquee .slides .slide .img-cont.slide-4:before {
		background-color: #467f7e;
	}

	.core-marquee.marquee .slides .slide .img-cont.slide-5:before {
		background-color: #b48527;
	}

	.core-marquee.marquee .slides .slide .img-cont.slide-6:before {
		background-color: #e3a518;
	}

	.core-marquee.marquee .slides .slide:hover .img-cont:before {
		opacity: 0.8;
	}

	.core-marquee.marquee .slide:hover .content-section .ornament {
		opacity: 0;
	}

	.core-marquee.marquee .slide .img-cont img {
		transition: transform ease-out 0.4s;
	}

	.core-marquee.marquee .slide:hover .img-cont img {
		transform: scale(1.1);
	}

	.core-marquee.marquee .slide .corner-ornament {
		position: absolute;
		display: block;
		opacity: 0;
		transition: transform ease-out 0.4s, opacity ease-out 0.4s;
		z-index: 2;
	}

	.core-marquee.marquee .slide .corner-ornament.top-left {
		top: 40px;
		left: 40px;
		transform: rotate(-90deg);
	}

	.core-marquee.marquee .slide .corner-ornament.top-right {
		top: 40px;
		right: 40px;
	}

	.core-marquee.marquee .slide .corner-ornament.bottom-left {
		bottom: 40px;
		left: 40px;
		transform: rotate(-180deg);
	}

	.core-marquee.marquee .slide .corner-ornament.bottom-right {
		bottom: 40px;
		right: 40px;
		transform: rotate(90deg);
	}

	.core-marquee.marquee .slide:hover .corner-ornament.top-left {
		opacity: 1;
		transform: rotate(-90deg) translate(20px, -20px);
	}

	.core-marquee.marquee .slide:hover .corner-ornament.top-right {
		opacity: 1;
		transform: translate(20px, -20px);
	}

	.core-marquee.marquee .slide:hover .corner-ornament.bottom-left {
		opacity: 1;
		transform: rotate(-180deg) translate(20px, -20px);
	}

	.core-marquee.marquee .slide:hover .corner-ornament.bottom-right {
		opacity: 1;
		transform: rotate(90deg) translate(20px, -20px);
	}
}

@media (min-width: 90em) {
	.core-marquee.marquee {
		padding: 20px 0;
	}	
	
	.core-marquee.marquee .slide .slide-title,
	.core-marquee.marquee .slides .slide:nth-of-type(1) .slide-title,
	.core-marquee.marquee .slides .slide:nth-of-type(4) .slide-title {
		font-size: 55px;
	}

	.core-marquee.marquee .slide .content-section .ornament:first-of-type {
		margin: 18px 0 7px 0;
	}

	.core-marquee.marquee .slide .content-section .ornament:last-of-type {
		margin-top: 5px;
	}
}
