/* ── Celebrity Spotlight Widget ── */

.ln-celebrity-spotlight {
	background-color: #fffcf7 !important;
	font-family: "Plus Jakarta Sans", sans-serif;
	overflow: hidden;
}

.ln-celebrity-spotlight__inner {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 35px 56px;
}

/* ── Left Content ── */

.ln-celebrity-spotlight__left {
	flex: 0 0 280px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ln-celebrity-spotlight__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.ln-celebrity-spotlight__eyebrow-text {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #B67A3C;
	white-space: nowrap;
}

.ln-celebrity-spotlight__eyebrow-line {
	flex: 0 0 28px;
	height: 1px;
	background-color: #B67A3C;
	opacity: 0.8;
	display: block;
}

.ln-celebrity-spotlight__heading {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 33px;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #FFFFFF;
}

.ln-celebrity-spotlight__desc {
	margin: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
}

.ln-celebrity-spotlight__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	margin-top: 8px;
	padding: 6px 20px;
	border: none;
	border-radius: 8px;
	background-color: #B67A3C;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #FFFFFF;
	text-decoration: none;
	transition: background-color 0.25s ease;
	white-space: nowrap;
}

.ln-celebrity-spotlight__cta:hover {
	background-color: #8F5C28;
	color: #FFFFFF;
}

/* ── Right: Slider container ── */

.ln-celebrity-spotlight__right {
	flex: 1;
	min-width: 0;
}

/* ── Scrollable Track ── */

.ln-celebrity-spotlight__track {
	display: flex;
	gap: 32px;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 7px 10px;
	scroll-padding-left: 10px;
}

.ln-celebrity-spotlight__track::-webkit-scrollbar {
	display: none;
}

/* ── Single Card ── */

.ln-celebrity-spotlight__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 0 0 150px;
	gap: 16px;
	text-align: center;
	scroll-snap-align: start;
}

/* ── Photo Ring ── */

.ln-celebrity-spotlight__photo-ring {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
	/*
	 * Two-layer box-shadow:
	 * 1st = dark gap (matches section bg) between image and ring
	 * 2nd = gold ring
	 */
	box-shadow:0 0 0 4px #1A1410, 0 0 0 6px #a48e77;
}

.ln-celebrity-spotlight__photo {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.35s ease;
}

.ln-celebrity-spotlight__card:hover .ln-celebrity-spotlight__photo {
	transform: scale(1.06);
}

.ln-celebrity-spotlight__photo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #3A2E28 0%, #2A2018 100%);
}

/* ── Name & Tagline ── */

.ln-celebrity-spotlight__name {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: #FFFFFF;
	letter-spacing: 0;
}

.ln-celebrity-spotlight__tagline {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.5);
	margin-top: -8px;
}

.ln-celebrity-spotlight__empty {
	font-family: inherit;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	padding: 20px 0;
}


/* ── Responsive ── */

/* ── 1280px: slightly reduce ── */
@media (max-width: 1280px) {
	.ln-celebrity-spotlight__inner {
		padding: 56px 40px;
		gap: 32px;
	}

	.ln-celebrity-spotlight__left {
		flex: 0 0 260px;
	}
}

/* ── 1024px: compress left column, smaller circles ── */
@media (max-width: 1024px) {
	.ln-celebrity-spotlight__inner {
		padding: 48px 32px;
		gap: 24px;
	}

	.ln-celebrity-spotlight__left {
		flex: 0 0 220px;
	}

	.ln-celebrity-spotlight__heading {
		font-size: 34px;
	}

	.ln-celebrity-spotlight__desc {
		font-size: 13px;
	}

	.ln-celebrity-spotlight__photo-ring {
		width: 136px;
		height: 136px;
	}

	.ln-celebrity-spotlight__card {
		flex: 0 0 136px;
	}

	.ln-celebrity-spotlight__track {
		gap: 24px;
	}
}

/* ── 900px: stack vertically ── */
@media (max-width: 900px) {
	.ln-celebrity-spotlight__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 48px 24px;
		gap: 28px;
	}

	.ln-celebrity-spotlight__left {
		flex: none;
		width: 100%;
	}

	.ln-celebrity-spotlight__right {
		width: 100%;
	}

	.ln-celebrity-spotlight__heading {
		font-size: 32px;
	}

	.ln-celebrity-spotlight__cta {
		align-self: flex-start;
	}

	.ln-celebrity-spotlight__photo-ring {
		width: 140px;
		height: 140px;
	}

	.ln-celebrity-spotlight__card {
		flex: 0 0 140px;
	}
}

/* ── 640px: mid-size phones ── */
@media (max-width: 640px) {
	.ln-celebrity-spotlight__inner {
		padding: 40px 20px;
		gap: 24px;
	}

	.ln-celebrity-spotlight__heading {
		font-size: 28px;
	}

	.ln-celebrity-spotlight__desc {
		font-size: 13px;
	}

	.ln-celebrity-spotlight__photo-ring {
		width: 120px;
		height: 120px;
	}

	.ln-celebrity-spotlight__card {
		flex: 0 0 120px;
	}

	.ln-celebrity-spotlight__track {
		gap: 18px;
	}

	.ln-celebrity-spotlight__name {
		font-size: 13px;
	}

}

/* ── 380px: small phones ── */
@media (max-width: 380px) {
	.ln-celebrity-spotlight__inner {
		padding: 32px 16px;
	}

	.ln-celebrity-spotlight__photo-ring {
		width: 104px;
		height: 104px;
	}

	.ln-celebrity-spotlight__card {
		flex: 0 0 104px;
	}

	.ln-celebrity-spotlight__track {
		gap: 25px;
	}
}
