/* ==================================================
   NATURZEICHEN – UNTERSEITEN
   Wetterzeichen · Tiere · Pflanzen · Bauernregeln
================================================== */

.ds-nz {
	background: linear-gradient(135deg, #fdfaf4 0%, #efe4d6 100%);
	color: #5f5144;
	overflow-x: hidden;
	padding-bottom: 100px;
}


/* ==================================================
   BREITE
================================================== */

.ds-nz-breadcrumb,
.ds-nz-hero,
.ds-nz-collection {
	width: min(1180px, calc(100% - 40px));
	margin-left: auto;
	margin-right: auto;
}


/* ==================================================
   BREADCRUMB
================================================== */

.ds-nz-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 24px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: #746557;
}

.ds-nz-breadcrumb a {
	color: #7d8d69;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ds-nz-breadcrumb a:hover,
.ds-nz-breadcrumb a:focus-visible {
	color: #5b4d40;
}


/* ==================================================
   HERO
================================================== */

.ds-nz-hero {
	position: relative;
	min-height: 650px;
	padding: 100px 0 80px;
	overflow: hidden;
	background: transparent;
}


/* ==================================================
   HERO TEXT
================================================== */

.ds-nz-hero__content {
	position: relative;
	z-index: 3;
	max-width: 640px;
}

.ds-nz-eyebrow {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7d8d69;
}

.ds-nz-hero h1 {
	margin: 0;
	max-width: 760px;
	font-size: clamp(50px, 5vw, 84px);
	line-height: 1.08;
	color: #5b4d40;
}

.ds-nz-lead {
	margin: 28px 0 0;
	max-width: 650px;
	font-size: 19px;
	line-height: 1.85;
	color: #746557;
}


/* ==================================================
   MASKOTTCHEN
================================================== */

.ds-nz-hero__figure {
	position: absolute;
	right: 4%;
	bottom: 0;
	width: 500px;
	height: 610px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	z-index: 1;
	opacity: 0.36;
	pointer-events: none;
}

.ds-nz-hero__mascot {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom right;
	filter: none;
}


/* ==================================================
   ZURÜCK-BUTTON
================================================== */

.ds-nz-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	margin-top: 42px;
	padding: 0 30px;
	border-radius: 18px;
	background: #7e906d;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;
	box-shadow: 0 18px 35px rgba(75, 86, 58, 0.18);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.ds-nz-back:hover,
.ds-nz-back:focus-visible {
	transform: translateY(-2px);
	background: #748565;
	box-shadow: 0 20px 40px rgba(75, 86, 58, 0.22);
}


/* ==================================================
   BEITRAGSBEREICH
================================================== */

.ds-nz-collection {
	padding: 90px 0;
}


/* ==================================================
   SEKTIONSÜBERSCHRIFT
================================================== */

.ds-nz-section-head {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.ds-nz-section-head h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.12;
	color: #5b4d40;
}

.ds-nz-section-head > p:last-child {
	margin: 18px auto 0;
	font-size: 18px;
	line-height: 1.75;
	color: #746557;
}


/* ==================================================
   BEITRAGSRASTER
================================================== */

.ds-nz-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ds-nz-grid.ds-nz-count-one {
	grid-template-columns: minmax(0, 720px);
	justify-content: center;
}

.ds-nz-grid.ds-nz-count-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 900px;
	margin: 0 auto;
}


/* ==================================================
   BEITRAGSKARTEN
================================================== */

.ds-nz-card {
	overflow: hidden;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(91, 77, 64, 0.12);
	box-shadow: 0 14px 36px rgba(91, 77, 64, 0.07);
	color: #5f5144;

	opacity: 0;
	transform: translateY(18px);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease,
		opacity 0.4s ease;
}

.ds-nz-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ds-nz-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 46px rgba(91, 77, 64, 0.11);
	border-color: rgba(126, 144, 109, 0.32);
}


/* ==================================================
   BEITRAGSBILD
================================================== */

.ds-nz-card__image-link {
	display: block;
	padding: 18px 18px 0;
}

.ds-nz-card__image,
.ds-nz-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 22px;
	object-fit: cover;
	background: #f7edda;
}

.ds-nz-card__placeholder {
	display: grid;
	place-items: center;
	color: #7d8d69;
	font-size: 38px;
}


/* ==================================================
   KARTENTEXT
================================================== */

.ds-nz-card__body {
	padding: 28px 26px 30px;
}

.ds-nz-card__kicker {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7d8d69;
}

.ds-nz-card__title {
	margin: 0 0 14px;
	font-size: 25px;
	line-height: 1.25;
	color: #5b4d40;
}

.ds-nz-card__title a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ds-nz-card__title a:hover,
.ds-nz-card__title a:focus-visible {
	color: #5b4d40;
}

.ds-nz-card__excerpt {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #746557;
}

.ds-nz-card__read {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 22px;
	color: #6f8060;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ds-nz-card__read:hover,
.ds-nz-card__read:focus-visible {
	color: #5b4d40;
}


/* ==================================================
   NOCH KEINE BEITRÄGE
================================================== */

.ds-nz-empty {
	max-width: 720px;
	margin: 0 auto;
	padding: 30px 28px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.42);
	border: 1px solid rgba(91, 77, 64, 0.12);
	box-shadow: 0 14px 36px rgba(91, 77, 64, 0.07);
	text-align: center;
}

.ds-nz-empty p {
	margin: 0;
	line-height: 1.7;
	color: #746557;
}

.ds-nz-empty p + p {
	margin-top: 7px;
}

.ds-nz-empty strong {
	color: #5b4d40;
}


/* ==================================================
   DARKMODE
================================================== */

body.ds-darkmode .ds-nz {
	background: #10180f;
	color: #efe3cf;
}

body.ds-darkmode .ds-nz-hero {
	background: #10180f;
}

body.ds-darkmode .ds-nz-hero h1,
body.ds-darkmode .ds-nz-section-head h2,
body.ds-darkmode .ds-nz-card__title,
body.ds-darkmode .ds-nz-empty strong {
	color: #efe3cf;
}

body.ds-darkmode .ds-nz-lead,
body.ds-darkmode .ds-nz-section-head > p:last-child,
body.ds-darkmode .ds-nz-card__excerpt,
body.ds-darkmode .ds-nz-empty p,
body.ds-darkmode .ds-nz-breadcrumb {
	color: #d8c8ad;
}

body.ds-darkmode .ds-nz-card,
body.ds-darkmode .ds-nz-empty {
	background: rgba(255, 255, 255, 0.035);
	border-color: rgba(214, 188, 120, 0.14);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

body.ds-darkmode .ds-nz-card__title a {
	color: #efe3cf;
}

body.ds-darkmode .ds-nz-card__read,
body.ds-darkmode .ds-nz-breadcrumb a {
	color: #aabd95;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

	.ds-nz-hero {
		min-height: 620px;
		padding: 90px 0 70px;
	}

	.ds-nz-hero__content {
		max-width: 560px;
	}

	.ds-nz-hero__figure {
		right: -20px;
		width: 400px;
		height: 520px;
		opacity: 0.28;
	}

	.ds-nz-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 560px) {

	.ds-nz {
		padding-bottom: 60px;
	}

	.ds-nz-breadcrumb,
	.ds-nz-hero,
	.ds-nz-collection {
		width: min(100% - 28px, 1180px);
	}

	.ds-nz-breadcrumb {
		padding-top: 18px;
		font-size: 12px;
	}

	.ds-nz-hero {
		min-height: 610px;
		padding: 82px 0 70px;
		background: #f8f3eb;
	}

	.ds-nz-hero__content {
		max-width: 100%;
	}

	.ds-nz-hero h1 {
		max-width: 90%;
		font-size: 39px;
	}

	.ds-nz-lead {
		max-width: 95%;
		font-size: 17px;
		line-height: 1.75;
	}

	.ds-nz-hero__figure {
		width: 280px;
		height: 390px;
		right: -65px;
		bottom: 75px;
		opacity: 0.18;
	}

	.ds-nz-back {
		position: relative;
		z-index: 4;
		width: 100%;
		margin-top: 38px;
	}

	.ds-nz-collection {
		padding: 70px 0;
	}

	.ds-nz-section-head {
		margin-bottom: 38px;
	}

	.ds-nz-section-head > p:last-child {
		font-size: 17px;
	}

	.ds-nz-grid,
	.ds-nz-grid.ds-nz-count-one,
	.ds-nz-grid.ds-nz-count-two {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.ds-nz-card__image-link {
		padding: 14px 14px 0;
	}

	.ds-nz-card__body {
		padding: 24px 22px 26px;
	}

	.ds-nz-card__title {
		font-size: 23px;
	}

	.ds-nz-card__excerpt {
		font-size: 16px;
	}

	body.ds-darkmode .ds-nz-hero {
		background: #10180f;
	}
}


/* ==================================================
   BEWEGUNGSREDUKTION
================================================== */

@media (prefers-reduced-motion: reduce) {

	.ds-nz-card {
		animation: none !important;
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}

	.ds-nz-back {
		transition: none !important;
	}
}