/* Kompakte Beitragskachel (inc/tsv-news.php) – Startseite, Aktuelles, Archive, Abteilungsseiten */

/* Hüllen von Ajax Load More und Display Posts neutralisieren */
.alm-listing > li.alm-item.tsv-news-li,
.alm-listing .alm-paging-content > li.alm-item.tsv-news-li,
body .aktuelles_wrapper .listing-item.tsv-news-li {
	margin: 0;
	padding: 0;
	overflow: visible;
}
body .aktuelles_wrapper .listing-item.tsv-news-li:not(:first-child) {
	margin-top: 0;
}

.tsv-news {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(46, 79, 143, 0.15);
}
.tsv-news--ohne-bild {
	grid-template-columns: minmax(0, 1fr);
}
.tsv-news-li:last-child .tsv-news {
	border-bottom: 0;
}

.tsv-news__bild {
	display: block;
	line-height: 0;
}
.alm-listing li.alm-item .tsv-news__img,
.tsv-news__img {
	position: static;
	display: block;
	width: 96px;
	height: 96px;
	max-width: none;
	max-height: none !important;
	object-fit: cover;
	border-radius: 6px;
}

.alm-listing li.alm-item p.tsv-news__meta,
.tsv-news__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 6px;
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	opacity: 1;
	color: #555;
}
.tsv-news__abteilung {
	font-weight: 700;
	color: #2e4f8f;
}
.tsv-news__wichtig {
	padding: 1px 7px;
	border-radius: 3px;
	background: #ffd81f;
	color: #000;
	font-weight: 700;
	font-size: 12px;
}

.alm-listing li.alm-item h3.tsv-news__titel,
.tsv-news__titel {
	margin: 3px 0 4px;
	font-size: 17px;
	line-height: 1.3;
}
.tsv-news__titel a {
	color: #2e4f8f;
}
.tsv-news__titel a:hover,
.tsv-news__mehr:hover {
	color: #1b3363;
	text-decoration: underline;
}

.alm-listing li.alm-item p.tsv-news__auszug,
.tsv-news__auszug {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #222;
}
.tsv-news__mehr {
	font-weight: 600;
	color: #2e4f8f;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.tsv-news {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 12px;
	}
	.tsv-news--ohne-bild {
		grid-template-columns: minmax(0, 1fr);
	}
	.alm-listing li.alm-item .tsv-news__img,
	.tsv-news__img {
		width: 72px;
		height: 72px;
	}
	.tsv-news__titel {
		font-size: 16px;
	}
}
