/* SV Wittendorf – einzelner Beitrag (single.php, svw_render_post) */
.svw-post { --nw-accent: #c8102e; --nw-ink: #15171c; }
.svw-post__head { margin: 0 0 20px; }
.svw-post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin: 0 0 12px; }
.svw-post__date {
	font-family: 'Barlow', 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #555;
}
.svw-post__cat {
	font-family: 'Barlow Condensed', 'Open Sans Condensed', sans-serif;
	font-weight: 800;
	font-size: 15px;
	line-height: 1;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 5px 8px;
	border: 2px solid #cfccc5;
	color: #555;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.svw-post__cat:hover, .svw-post__cat:focus { background: var(--nw-accent); border-color: var(--nw-accent); color: #fff; text-decoration: none; }
.svw-post__title {
	font-family: 'Barlow Condensed', 'Open Sans Condensed', sans-serif;
	font-weight: 800;
	font-size: 46px;
	line-height: 1.02;
	text-transform: uppercase;
	color: var(--nw-ink);
	margin: 0;
	padding: 0;
	text-wrap: pretty;
}

/* Titelbild immer 5:3 */
.svw-post__media {
	position: relative;
	aspect-ratio: 5 / 3;
	overflow: hidden;
	background: #dedcd6;
	border-bottom: 4px solid var(--nw-accent);
	margin: 0 0 32px;
}
.svw-post__media img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; display: block; }

/* Text */
.svw-post__content {
	max-width: 820px;
	font-family: 'Barlow', 'Open Sans', sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: #333;
}
.svw-post__content p { font-size: 17px; line-height: 1.65; margin: 0 0 1.1em; }
.svw-post__content h2, .svw-post__content h3, .svw-post__content h4 {
	font-family: 'Barlow Condensed', 'Open Sans Condensed', sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--nw-ink);
	line-height: 1.05;
	margin: 1.6em 0 .5em;
}
.svw-post__content h2 { font-size: 30px; }
.svw-post__content h3 { font-size: 24px; }
.svw-post__content h4 { font-size: 20px; }
.svw-post__content img { max-width: 100%; height: auto; }
.svw-post__content a { color: var(--nw-accent); }
.svw-post__content ul, .svw-post__content ol { margin: 0 0 1.1em 1.3em; }
.svw-post__content blockquote { border-left: 4px solid var(--nw-accent); margin: 1.2em 0; padding: 4px 18px; color: #444; font-style: normal; }
.svw-post__content .page-links { margin-top: 20px; font-weight: 600; }

.svw-post__foot { margin: 36px 0 0; }

/* Weitere News */
.svw-post__more { margin-top: 56px; padding-top: 32px; border-top: 1px solid #e6e4df; }
.svw-post__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

@media only screen and (max-width: 959px) {
	.svw-post__title { font-size: 36px; }
	.svw-post__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media only screen and (max-width: 599px) {
	.svw-post__title { font-size: 28px; }
	.svw-post__media { margin-bottom: 22px; }
	.svw-post__grid { grid-template-columns: minmax(0, 1fr); }
}
