/* News CPT – Frontend Styles */

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 15px;
	
}

.news-grid-item {
	display: block;
	text-decoration: none!important;
	color: #333!important;
	border-radius: 3px;
	overflow: hidden;
	background: #eaeaea;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.news-grid-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.news-grid-bild {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e2e2e2;
}

.news-grid-bild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.news-grid-titel {
	margin: 0;
	padding: 12px;
	font-size: calc(15px + (18 - 15) * ((100vw - 220px) / (1900 - 220)))!important;
	line-height: 1.35;
	font-weight: 400;
}

.news-grid-leer {
	opacity: 0.7;
}





/*SINGLEPOST*/
main#content.news_kategorie-news-kegeln {
    max-width: calc(350px + (1000 - 350) * ((100vw - 220px) / (1900 - 220)));
}
.news_kategorie-news-kegeln {
    margin-top: 5em;
	margin-bottom: 5em;
}
.news_kategorie-news-kegeln h1 {
    font-weight: 100;
}
.news-single-zurueck {
	margin-top: 50px;
}
.news-single-zurueck a {
	text-decoration: none!important;
}
.news-single-zurueck a:hover {
	text-decoration: underline!important;
}
.news-single-bild {
	margin: 34px 0;
}

.news-single-bild img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	display: block;
	max-width: 500px;
}

.news-single-untertitel {
	margin: 8px 0 0 0;
	font-size: 0.9rem;
	font-style: italic;
	opacity: 0.75;
}