/* Vielfalt Natur – Ergänzungen, die theme.json nicht abdeckt. */

/* "Short Facts" – rote Umrandung (Portfolio-Stil) */
.wp-block-group.is-style-short-facts {
	border: 2px solid var(--wp--preset--color--red);
	border-radius: 12px;
	padding: clamp(1.25rem, 3vw, 2rem);
	background: var(--wp--preset--color--white);
}
.is-style-short-facts :where(h2, h3, h4) {
	color: var(--wp--preset--color--red);
	text-transform: none;
	margin-top: 0;
}

/* "Fakten"-Box – gold gefüllt (Portfolio-Stil) */
.wp-block-group.is-style-fakten-box {
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--white);
	border-radius: 12px;
	padding: clamp(1.25rem, 3vw, 2rem);
}
.is-style-fakten-box :where(h2, h3, h4) {
	color: var(--wp--preset--color--white);
	text-transform: none;
	margin-top: 0;
}
.is-style-fakten-box a { color: #fff; }

/* Projektkarten: dezenter Hover */
.vn-card { transition: transform .2s ease, box-shadow .2s ease; height: 100%; }
.vn-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(20,40,29,.14); }

/* Kicker – kleines Großbuchstaben-Label über Überschriften */
.vn-kicker {
	text-transform: uppercase;
	letter-spacing: .14em;
	font-weight: 700;
	font-size: .82rem;
	color: var(--wp--preset--color--gold);
}

/* Navigation: Großbuchstaben, ohne Unterstrich */
.wp-block-navigation {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: .95rem;
}
.wp-block-navigation a { text-decoration: none; }
.wp-block-navigation a:hover { color: var(--wp--preset--color--forest); }

/* Buttons nie unterstreichen */
.wp-block-button__link { text-decoration: none; }

/* Bilder in Cover/Karten ruhig rendern */
.wp-block-cover, .wp-block-image img { object-fit: cover; }
