.lightmoment-block {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #000;
	color: #fff;
	overflow: hidden;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
}

/* Bild */
.lightmoment-block__media {
	position: relative;
	width: 100%;
	min-height: 280px;
	overflow: hidden;
	cursor: pointer;
}

.lightmoment-block__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lightmoment-block__media-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 280px;
	background: #222;
}

/* Badge */
.lightmoment-block__badge {
	position: absolute;
	z-index: 2;
	width: 10rem;
	max-width: 35vw;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #5cc6ef;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.9rem;
	line-height: 1.35;
	padding: 1.1rem;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.lightmoment-block__badge-text {
	margin: 0;
}

/* Inhalt */
.lightmoment-block__content {
	position: relative;
	padding: 3.5rem 1.75rem 3rem;
}

.lightmoment-block__headline {
	margin: 0 0 2.25rem;
	font-size: clamp(1.9rem, 4.5vw, 2.7rem);
	line-height: 1.2;
	font-weight: 600;
}

.lightmoment-block__kicker {
	margin: 0 0 1.5rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.lightmoment-block__intro {
	margin: 0 0 2rem;
	font-size: 1.05rem;
	line-height: 1.5;
	max-width: 36rem;
}

.lightmoment-block__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lightmoment-block__list li {
	position: relative;
	padding-left: 2.2rem;
	margin-bottom: 1.2rem;
	font-size: 1.05rem;
	line-height: 1.4;
	max-width: 32rem;
}

.lightmoment-block__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0.1rem;
	font-size: 1.2rem;
	line-height: 1;
	color: #40bee1;
}

/* Desktop: Bild links, Text rechts, Badge mittig an der Kante */
@media (min-width: 960px) {
	.lightmoment-block {
		flex-direction: row;
	}

	.lightmoment-block__media {
		flex: 0 0 60%;
		max-width: 60%;
		min-height: 480px;
	}

	.lightmoment-block__content {
		flex: 0 0 40%;
		max-width: 40%;
		padding: 4rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.lightmoment-block__badge {
		top: 50%;
		left: 60%;
		transform: translate(-50%, -50%);
	}
}

/* Mobile: Bild oben, Badge an der Unterkante, Textblock darunter */
@media (max-width: 959px) {
	.lightmoment-block__badge {
		right: 8%;
		bottom: 0;
		transform: translateY(50%);
	}

	.lightmoment-block__content {
		margin-top: -5rem;
		padding: 6.5rem 1.75rem 3rem;
	}
}