/* Home: News-Band (Dummy) – overrides */
.home-news-band {
	background: #f4f4f4;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding: 24px 0;
	position: relative;
	overflow: hidden;
}

.home-news-items {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.home-news-band::after {
	content: "News";
	position: absolute;
	top: 22px;
	right: -44px;
	transform: rotate(45deg);
	background: #e85222;
	color: #f4f4f4; /* gleiche Farbe wie Band-Hintergrund */
	padding: 7px 56px;
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
	pointer-events: none;
	white-space: nowrap;
}

.home-news-item {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	position: relative;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 14px 16px;
	min-width: 240px;
	max-width: 360px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.home-news-item:hover {
	border-color: rgba(0, 0, 0, 0.14);
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
}

.home-news-text {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.home-news-title {
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-news-meta {
	font-size: 0.85rem;
	line-height: 1.2;
	opacity: 0.75;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 39.99875em) {
	.home-news-band {
		padding: 18px 0;
	}
	.home-news-items {
		gap: 10px;
	}
	.home-news-item {
		min-width: 0;
		width: 100%;
		max-width: 520px;
	}
}

