/* ---------- Base ---------- */
html {
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: #c8d4c5;
}

/* WP wraps template parts in an extra box only as tall as their content,
   which prevents a sticky header from having room to stick. Unwrap it. */
.wp-block-template-part {
	display: contents;
}

/* Keep the footer pinned to the viewport bottom on short pages instead of
   floating right after the content. */
.wp-site-blocks {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1 0 auto;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(221, 228, 218, 0.93);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(34, 54, 46, 0.15);
}

.site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 48px);
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-header__logo-link {
	display: flex;
	align-items: center;
}

.site-header__logo {
	height: 34px;
	width: auto;
	display: block;
}

/* Desktop nav: visible from 860px up */
.site-header__nav-desktop {
	display: none;
	align-items: center;
	gap: clamp(12px, 2.6vw, 30px);
}

.site-header__nav-mobile {
	display: none;
}

.site-header__burger {
	width: 44px;
	height: 44px;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
}

.site-header__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: #22362e;
}

.site-header__link {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #22362e;
	text-decoration: none;
}

.site-header__link:hover,
.site-header__link.is-active {
	color: #4a3159;
}

.site-header__contact-btn,
.site-header__contact-btn.is-active {
	color: #f2f0e9 !important;
	background: #4a3159;
	padding: 10px 20px;
}

.site-header__contact-btn:hover {
	background: #33203f;
	color: #f2f0e9 !important;
}

@media (min-width: 860px) {
	.site-header__nav-desktop {
		display: flex;
	}
	.site-header__burger {
		display: none;
	}
}

@media (max-width: 859px) {
	.site-header.is-menu-open .site-header__nav-mobile {
		display: flex;
	}
}

.site-header__nav-mobile {
	flex-direction: column;
	border-top: 1px solid rgba(34, 54, 46, 0.15);
	background: rgba(221, 228, 218, 0.98);
	padding: 8px clamp(20px, 4vw, 48px) 20px;
}

.site-header__nav-mobile .site-header__mobile-link {
	font-family: var(--wp--preset--font-family--poppins);
	padding: 14px 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #22362e;
	text-decoration: none;
	border-bottom: 1px solid rgba(34, 54, 46, 0.15);
}

.site-header__nav-mobile .site-header__mobile-link:hover,
.site-header__nav-mobile .site-header__mobile-link.is-active {
	color: #4a3159;
}

.site-header__nav-mobile .site-header__contact-btn {
	margin-top: 16px;
	align-self: flex-start;
	border-bottom: none;
	padding: 13px 24px;
}

/* ---------- Footer ---------- */
.site-footer {
	background: #22362e;
	color: #a9c2ab;
}

.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 44px clamp(20px, 4vw, 48px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	font-family: var(--wp--preset--font-family--poppins);
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer a {
	text-decoration: none;
}

.site-footer__logo {
	height: 26px;
	width: auto;
	display: block;
	align-self: flex-start;
	opacity: 0.95;
}

.site-footer__claim {
	margin: 0;
	font-size: 13px;
	font-weight: 300;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	font-size: 12.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer__links a {
	color: #dbe4d8;
}

.site-footer__links a:hover {
	color: #fff;
}

/* ---------- Buttons ---------- */
.wp-block-button__link {
	border-radius: 0 !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	padding: 15px 30px;
	text-decoration: none !important;
}

.wp-block-button__link.has-aubergine-background-color:hover {
	background-color: #33203f !important;
	color: #f2f0e9 !important;
}

/* ---------- Sections (shared building blocks) ---------- */
.eyebrow {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #48604f;
	border-bottom: 1px solid rgba(34, 54, 46, 0.35);
	padding-bottom: 10px;
	margin-bottom: clamp(28px, 4vw, 48px);
}

.eyebrow--on-dark {
	color: #a9c2ab;
	border-bottom-color: rgba(232, 237, 229, 0.3);
}

.section-inner {
	box-sizing: content-box;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: clamp(20px, 4vw, 48px);
	padding-right: clamp(20px, 4vw, 48px);
}

.section-hero {
	padding-top: clamp(40px, 7vw, 100px);
	padding-bottom: clamp(40px, 6vw, 84px);
}

.section-flex {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(28px, 5vw, 72px);
}

.section-flex > * {
	flex: 1 1 360px;
	min-width: min(100%, 300px);
}

.section-flex--center {
	align-items: center;
}

.section-flex--gap-sm {
	gap: clamp(28px, 5vw, 64px);
}

.hero-image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 4;
	object-fit: cover;
}

.hero-caption {
	margin: 10px 0 0;
	font-family: var(--wp--preset--font-family--lora);
	font-style: italic;
	font-size: 15px;
	color: #2c443a;
}

.cta-hint {
	font-size: 13.5px;
	font-weight: 300;
	color: #48604f;
}

.btn-filled {
	display: inline-block;
	background: #4a3159;
	color: #f2f0e9 !important;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 15px 30px;
	text-decoration: none !important;
}

.btn-filled:hover {
	background: #33203f;
	color: #f2f0e9 !important;
}

.arrow-link {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #22362e;
	border-bottom: 1.5px solid #22362e;
	padding: 4px 2px;
	text-decoration: none !important;
	display: inline-block;
}

.arrow-link:hover {
	color: #4a3159;
	border-bottom-color: #4a3159;
}

.arrow-link--on-dark {
	color: #f2f0e9;
	border-bottom-color: #f2f0e9;
}

.arrow-link--on-dark:hover {
	color: #fff;
	border-bottom-color: #fff;
}

/* Section: dark green */
.section-dark {
	background: #2c443a;
	color: #e8ede5;
}

/* Section: pillars (3-card grid) */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.pillar-card {
	background: #eef1ec;
	border-top: 3px solid #4a3159;
	padding: clamp(26px, 3vw, 36px) clamp(24px, 2.5vw, 32px) clamp(30px, 3vw, 40px);
	display: flex;
	flex-direction: column;
	min-height: 220px;
}

.pillar-card__title {
	margin: 0 0 14px;
	font-family: var(--wp--preset--font-family--lora);
	font-size: clamp(22px, 2.2vw, 27px);
	font-weight: 600;
	color: #22362e;
}

.pillar-card__text {
	margin: 0;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.75;
	color: #3a4f44;
	white-space: pre-line;
}

/* Section: alt background (begleitet, magazin) */
.section-alt {
	background: #cfd9cc;
	border-top: 1px solid rgba(34, 54, 46, 0.15);
	border-bottom: 1px solid rgba(34, 54, 46, 0.15);
}

.area-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 0 clamp(36px, 5vw, 72px);
	margin-bottom: 32px;
}

.area-item {
	display: flex;
	align-items: baseline;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(34, 54, 46, 0.35);
}

.area-item__arrow {
	font-family: var(--wp--preset--font-family--lora);
	font-style: italic;
	font-size: 16px;
	line-height: normal;
	color: #4a3159;
	flex: 0 0 14px;
}

.area-item__name {
	font-family: var(--wp--preset--font-family--lora);
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: normal;
	font-weight: 500;
	color: #22362e;
}

/* Impressions grid */
.impressions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(20px, 3vw, 32px);
}

.impression-figure {
	margin: 0;
}

.impression-figure img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	cursor: zoom-in;
}

.impression-figure figcaption {
	margin-top: 10px;
}

.impression-figure__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--lora);
	font-size: 15px;
	font-weight: 600;
	color: #22362e;
}

.impression-figure__sub {
	margin: 2px 0 0;
	font-size: 13px;
	font-weight: 300;
	color: #48604f;
}

/* Magazine cover */
.magazine-cover img {
	display: block;
	width: 100%;
	box-shadow: 0 24px 48px -20px rgba(34, 54, 46, 0.45);
}

/* Circle teaser */
.section-circle {
	background: #4a3159;
	text-align: center;
}

.section-circle .section-inner {
	max-width: 900px;
}

.section-circle .eyebrow {
	color: #c3b3d2;
	border-bottom: none;
	justify-content: center;
	display: flex;
	margin-bottom: 14px;
}

.section-circle-quote {
	margin: 0 0 22px;
	font-family: var(--wp--preset--font-family--lora);
	font-style: italic;
	font-size: clamp(17px, 1.9vw, 21px);
	color: #d8c9e6;
}

.section-circle-heading {
	margin: 0 auto 32px;
	font-family: var(--wp--preset--font-family--lora);
	font-weight: 500;
	font-size: clamp(21px, 2.4vw, 29px);
	line-height: 1.45;
	color: #f2f0e9;
	max-width: 34ch;
}

.text-center {
	text-align: center;
}

/* ---------- Typography utilities ---------- */
.fs-hero-h1 {
	font-size: clamp(32px, 4.2vw, 54px) !important;
	line-height: 1.16 !important;
	letter-spacing: -0.01em;
	margin: 0 0 26px !important;
}

.fs-italic-lead {
	font-family: var(--wp--preset--font-family--lora);
	font-style: italic;
	font-size: clamp(18px, 1.9vw, 23px);
	line-height: 1.55;
	color: #2c443a;
	margin: 0 0 30px;
}

.fs-italic-lead p {
	margin: 0;
}

.body-text {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
	color: #3a4f44;
}

.body-text--on-dark {
	color: #e8ede5;
}

.body-text--hero {
	font-size: clamp(16px, 1.4vw, 18px);
	margin: 0 0 36px;
}

.body-text--small {
	font-size: 15px;
	line-height: 1.75;
	color: #2e4238;
}

.fs-h2-md {
	font-size: clamp(26px, 2.8vw, 38px) !important;
	line-height: 1.25 !important;
	margin: 0 !important;
}

.fs-h2-cta {
	font-size: clamp(26px, 3vw, 40px) !important;
	line-height: 1.25 !important;
	max-width: 24ch;
	margin: 0 auto 18px !important;
}

.lead-italic-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-family: var(--wp--preset--font-family--lora);
	font-style: italic;
	font-size: 18px;
	line-height: 1.65;
	margin-bottom: 22px;
}

.lead-italic-block p {
	margin: 0;
}

/* ---------- Über mich ---------- */
.about-label {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #48604f;
}

.about-block {
	border-top: 1px solid rgba(34, 54, 46, 0.35);
	padding-top: clamp(26px, 4vw, 36px);
}

.about-block:first-child {
	border-top: none;
	padding-top: 0;
}

.about-h1 {
	font-size: clamp(28px, 3.4vw, 44px) !important;
	line-height: 1.2 !important;
	letter-spacing: -0.01em;
	margin: 0 0 20px !important;
}

.about-body {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.8;
	color: #2e4238;
}

.about-lead-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.about-lead-list p,
.about-body-group p {
	margin: 0;
}

.about-body-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-name {
	margin: 0;
	font-family: var(--wp--preset--font-family--lora);
	font-size: 22px;
	font-weight: 600;
}

.about-role {
	margin: 6px 0 16px;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.6;
	color: #3a4f44;
}

.about-sidebar {
	margin-top: 18px;
	border-top: 1px solid rgba(34, 54, 46, 0.35);
	padding-top: 14px;
}

.btn-outline {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #4a3159;
	border: 1px solid #4a3159;
	padding: 9px 18px;
	text-decoration: none;
}

.btn-outline:hover {
	background: #4a3159;
	color: #f2f0e9;
}

.about-word {
	margin: 0 0 12px;
	font-family: var(--wp--preset--font-family--lora);
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 600;
	color: #22362e;
}

.about-quote-block {
	font-family: var(--wp--preset--font-family--lora);
	font-style: italic;
	font-size: clamp(17px, 1.9vw, 21px);
	line-height: 1.6;
	color: #22362e;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.about-quote-block p {
	margin: 0;
}

.about-image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}

/* ---------- Formate ---------- */
.dialog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.dialog-card {
	background: #263b32;
	border-top: 3px solid #a9c2ab;
	padding: clamp(26px, 3vw, 36px) clamp(24px, 2.5vw, 32px) clamp(30px, 3vw, 40px);
	display: flex;
	flex-direction: column;
	min-height: 200px;
}

.dialog-card__title {
	margin: 0 0 14px;
	font-family: var(--wp--preset--font-family--lora);
	font-size: clamp(21px, 2vw, 25px);
	font-weight: 600;
	color: #e8ede5;
}

.dialog-card__text {
	margin: 0;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.75;
	color: #c9d6ca;
}

.theme-list {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.theme-item {
	display: flex;
	align-items: baseline;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(34, 54, 46, 0.35);
}

.theme-item__arrow {
	font-family: var(--wp--preset--font-family--lora);
	font-style: italic;
	font-size: 16px;
	line-height: normal;
	color: #4a3159;
	flex: 0 0 14px;
}

.theme-item__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.theme-item__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--lora);
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: normal;
	font-weight: 500;
	color: #22362e;
}

.theme-item__badge {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #4a3159;
	border: 1px solid #4a3159;
	padding: 3px 10px;
	white-space: nowrap;
}

.theme-item__sub {
	margin: 6px 0 0;
	font-size: 14.5px;
	font-weight: 300;
	line-height: 1.65;
	color: #48604f;
}

.tip-box {
	background: #eef1ec;
	border-top: 3px solid #4a3159;
	padding: clamp(22px, 2.6vw, 30px) clamp(24px, 2.5vw, 32px);
}

.tip-label {
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #4a3159;
}

.tip-title {
	margin: 14px 0 0;
	font-family: var(--wp--preset--font-family--lora);
	font-size: 18px;
	font-weight: 600;
	color: #22362e;
}

.tip-text {
	margin: 12px 0 0;
	font-size: 14.5px;
	font-weight: 300;
	line-height: 1.7;
	color: #3a4f44;
}

.beispiele-label {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #48604f;
}

.beispiele-item {
	margin: 0;
	padding: 13px 0;
	border-top: 1px solid rgba(34, 54, 46, 0.35);
	font-size: 15.5px;
	color: #22362e;
}

.denk-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 2vw, 24px);
}

@media (max-width: 1149px) {
	.denk-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 659px) {
	.denk-grid {
		grid-template-columns: 1fr;
	}
}

.denk-card__title {
	margin: 0 0 4px;
	font-family: var(--wp--preset--font-family--lora);
	font-size: clamp(20px, 1.9vw, 24px);
	font-weight: 600;
	color: #22362e;
	overflow-wrap: break-word;
}

.denk-card__subtitle {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 300;
	font-style: italic;
	color: #48604f;
}

.denk-card__text {
	margin: 0;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.75;
	color: #3a4f44;
	white-space: pre-line;
}

.masonry-gallery {
	columns: 3 300px;
	column-gap: clamp(20px, 2.5vw, 28px);
}

.masonry-gallery figure {
	margin: 0 0 clamp(20px, 2.5vw, 28px);
	break-inside: avoid;
}

.masonry-gallery img {
	display: block;
	width: 100%;
	cursor: zoom-in;
}

.masonry-gallery figcaption {
	margin-top: 10px;
}

.masonry-gallery__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--lora);
	font-size: 15px;
	font-weight: 600;
	color: #22362e;
}

.masonry-gallery__sub {
	margin: 2px 0 0;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.5;
	color: #3a4f44;
}

.masonry-gallery__date {
	margin: 2px 0 0;
	font-size: 12px;
	font-weight: 300;
	font-style: italic;
	color: #48604f;
}

.gallery-slider-nav {
	display: none;
}

@media (max-width: 719px) {
	.masonry-gallery {
		columns: initial;
		display: flex;
		flex-wrap: nowrap;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		margin: 0 -20px;
		padding: 0 20px 8px;
	}

	.masonry-gallery figure {
		flex: 0 0 78vw;
		max-width: 320px;
		margin: 0;
		scroll-snap-align: center;
	}

	.masonry-gallery figure > img {
		display: block;
		width: 100%;
		height: 240px;
		object-fit: contain;
		background: #e4e9e1;
		cursor: zoom-in;
	}

	.gallery-slider-wrap {
		position: relative;
	}

	.gallery-slider-nav {
		display: flex;
		position: absolute;
		top: 104px;
		width: 40px;
		height: 40px;
		border-radius: 999px;
		border: none;
		background: rgba(34, 54, 46, 0.85);
		color: #f2f0e9;
		font-size: 20px;
		line-height: 1;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 2;
	}

	.gallery-slider-nav--prev {
		left: -10px;
	}

	.gallery-slider-nav--next {
		right: -10px;
	}
}

/* ---------- Community ---------- */
.info-card {
	background: #eef1ec;
	border: 1px solid rgba(34, 54, 46, 0.2);
	padding: clamp(24px, 3.5vw, 36px);
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.italic-inline {
	font-family: var(--wp--preset--font-family--lora);
	font-style: italic;
	font-size: 17px;
	line-height: 1.65;
	color: #22362e;
}

/* ---------- Kontakt / CF7 form ---------- */
.kontakt-form-wrap {
	position: relative;
	background: #eef1ec;
	border: 1px solid rgba(34, 54, 46, 0.2);
	padding: clamp(24px, 4vw, 40px);
}

.kontakt-form-wrap .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.kontakt-form-wrap .wpcf7-form p:has(.cf7apps-honeypot-wrap) {
	display: contents;
}

.kontakt-form-wrap .cf7apps-honeypot-wrap {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.kontakt-form-wrap .wpcf7-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #22362e;
}

.kontakt-form-wrap .wpcf7-form-control:not([type="submit"]):not(.wpcf7-checkbox) {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 16px;
	font-weight: 300;
	padding: 13px 14px;
	border: none;
	border-bottom: 1.5px solid rgba(34, 54, 46, 0.35);
	background: #fff;
	outline: none;
	color: #22362e;
	width: 100%;
	box-sizing: border-box;
}

.kontakt-form-wrap .wpcf7-form-control:not([type="submit"]):not(.wpcf7-checkbox):focus {
	border-bottom: 1.5px solid #4a3159;
}

.kontakt-form-wrap .wpcf7-form p:has(.wpcf7-submit) {
	margin: 0;
}

.kontakt-form-wrap textarea.wpcf7-form-control {
	resize: vertical;
}

.kontakt-form-wrap .wpcf7-submit {
	align-self: flex-start;
	background: #4a3159;
	color: #f2f0e9;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 15px 32px;
	border: none;
	border-radius: 0;
	cursor: pointer;
}

.kontakt-form-wrap .wpcf7-submit:hover {
	background: #33203f;
}

.kontakt-form-wrap .wpcf7-not-valid-tip {
	font-size: 12.5px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	color: #a33;
	margin-top: 4px;
}

.kontakt-form-wrap .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 10px 14px;
	border: 1px solid rgba(34, 54, 46, 0.3);
	font-size: 14px;
}

.kontakt-form-wrap .wpcf7-form label:has(.wpcf7-list-item-label) {
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	font-weight: 300;
	letter-spacing: normal;
	text-transform: none;
	color: #3a4f44;
	cursor: pointer;
}

.kontakt-form-wrap input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: #4a3159;
	cursor: pointer;
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(20, 28, 24, 0.93);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 48px);
	cursor: zoom-out;
}

.lightbox-overlay[hidden] {
	display: none !important;
}

.lightbox-img {
	max-width: 100%;
	max-height: 78vh;
	display: block;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
	cursor: default;
}

.lightbox-caption {
	margin-top: 18px;
	text-align: center;
	max-width: 640px;
	cursor: default;
}

.lightbox-caption__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--lora);
	font-size: 16px;
	font-weight: 600;
	color: #f2f0e9;
}

.lightbox-caption__sub {
	margin: 4px 0 0;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.5;
	color: #c9d6ca;
}

.lightbox-caption__title:empty,
.lightbox-caption__sub:empty {
	display: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: none;
	background: rgba(242, 240, 233, 0.14);
	color: #f2f0e9;
	line-height: 1;
	cursor: pointer;
}

.lightbox-close {
	top: 18px;
	right: 18px;
	font-size: 22px;
}

.lightbox-prev {
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
}

.lightbox-next {
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
}

/* ---------- Blog ---------- */
.blog-list {
	display: flex;
	flex-direction: column;
}

.blog-item {
	padding: clamp(28px, 4vw, 40px) 0;
	border-bottom: 1px solid rgba(34, 54, 46, 0.35);
}

.blog-item:first-child {
	padding-top: 0;
}

.blog-item__title {
	margin: 0 0 8px !important;
	font-family: var(--wp--preset--font-family--lora);
	font-size: clamp(21px, 2.2vw, 27px) !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}

.blog-item__title a {
	color: #22362e;
	text-decoration: none;
}

.blog-item__title a:hover {
	color: #4a3159;
}

.blog-item__date {
	display: block;
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 300;
	font-style: italic;
	color: #48604f;
}

.blog-item__excerpt {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
	color: #3a4f44;
	margin: 0 0 14px !important;
}

.blog-meta {
	display: block;
	margin: 0 0 32px;
	font-size: 13px;
	font-weight: 300;
	font-style: italic;
	color: #48604f;
}

.blog-single .entry-content > * {
	max-width: 1920px;
}

.blog-single .entry-content p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.8;
	color: #2e4238;
}

.blog-single .entry-content h2,
.blog-single .entry-content h3 {
	margin-top: 1.4em;
}

/* ---------- Default page (Impressum, Datenschutz, etc.) ---------- */
.default-page p {
	font-size: 15.5px;
	font-weight: 300;
	line-height: 1.75;
	color: #3a4f44;
	margin: 0 0 1.2em;
}

.default-page strong {
	display: inline-block;
	max-width: 100%;
	overflow-wrap: break-word;
	margin-top: 0.6em;
	font-family: var(--wp--preset--font-family--lora);
	font-weight: 600;
	font-size: 18px;
	color: #22362e;
}

.default-page a {
	word-break: break-word;
}

.default-page .is-resized img {
	mix-blend-mode: multiply;
}
