.spotlight-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("/wp-content/uploads/2025/09/circle-gradient.webp");
	background-position: inherit;
	pointer-events: none;
	z-index: -1;
}

.spotlight-slider .swiper {
	margin: 90px 0;
}

@media screen and (max-width: 768px) {
	.spotlight-slider .swiper {
		margin: 30px 0;
	}
}

/* allow overlap outside slide bounds */
.spotlight-slider .swiper,
.spotlight-slider .swiper-wrapper {
	overflow: visible;
}

.spotlight-slider .swiper-slide {
	display: flex;
	align-items: stretch;
}

.spotlight-media-wrap {
	flex: 1 1 60%;
	display: flex;
}

.spotlight-media {
	width: 100%;
	height: calc(100% + 80px);       /* 100% of the stretched wrapper + 80px */
	min-height: 450px;
	transform: translateY(-40px);
	background-size: cover;
	background-position: center;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* Right: card */
.spotlight-card-wrap {
	flex: 1 1 40%;
	min-width: 0;
	position: relative;
	z-index: 2;
}
.spotlight-card {
	display: flex;
	flex-direction: column;
	justify-content: center; /* vertical centering */
	margin: 1rem 0 1rem -15%;
	padding: 56px 56px 32px;
	border-radius: 16px;
	background: linear-gradient(317deg,
							rgb(165 239 255 / 17%) 0%,
							rgb(110 191 244 / 6%) 22%,
							rgb(70 144 212 / 4%) 100%);
	-webkit-backdrop-filter: saturate(110%) blur(20px);
	backdrop-filter: saturate(110%) blur(20px);
	border: 1px solid rgba(255,255,255,.35);
	box-shadow: 0 12px 36px rgba(0,0,0,.18);
	overflow: hidden;
}

.spotlight-title h3,
.spotlight-subtitle h5,
.spotlight-copy p {
	margin-bottom: 1rem;
}

.spotlight-title h3 {
	font-size: 3rem;
	line-height: 3rem;
}

@media screen and (max-width: 768px) {
	.spotlight-title h3 {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
}

.spotlight-copy p {
	font-size: 1.25rem;
}

.spotlight-btn.button {
	align-self: start;
}

.spotlight-slider .swiper-button-prev,
.spotlight-slider .swiper-button-next {
	background: var(--teal);
	border-radius: 50%;
	color: var(--white);
	width: 50px;
	height: 50px;
	opacity: 1;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.spotlight-slider .swiper-button-prev,
	.spotlight-slider .swiper-button-next {
		top: 400px;
	}
}

.spotlight-slider .swiper-button-next {
	right: -25px;
}

.spotlight-slider .swiper-button-prev {
	left: -25px;
}

@media (max-width: 1330px) {
	.spotlight-slider .swiper-button-next {
		right: 10px;
	}
	.spotlight-slider .swiper-button-prev {
			left: 10px;
	}
}

/* Remove default slider button */
.spotlight-slider .swiper-button-next::after,
.spotlight-slider .swiper-button-prev::after {
	content: none !important;
}

.spotlight-slider .swiper-pagination {
	bottom: -7rem;
}

.spotlight-slider .swiper-pagination-bullet {
	width: 55px;
	border-radius: 5px;
}

.spotlight-slider .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .spotlight-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 6px;
}

.spotlight-slider .swiper-pagination-bullet-active,
.spotlight-slider .swiper-pagination-bullet {
	background: var(--blue);
}

@media (max-width: 992px) {
	.spotlight-slider .swiper-slide {
		flex-direction: column;
	}

	.spotlight-media {
		height: auto;
		aspect-ratio: 16 / 9;
		transform: none;
	}
	.spotlight-card {
		margin-left: 0;
		margin-top: -48px;
	}
	.spotlight-slider .swiper-pagination {
			bottom: -2rem;
	}
}



