/* Co-Working Portal – Premium Design (marketing-seminare.com inspired) */

*,*::before,*::after{box-sizing:border-box}

:root {
	--cwk-primary: #0f172a;
	--cwk-accent: #ea580c;
	--cwk-accent-hover: #c2410c;
	--cwk-accent-glow: rgba(234,88,12,0.3);
	--cwk-surface: #ffffff;
	--cwk-bg: #f8fafc;
	--cwk-border: #e2e8f0;
	--cwk-text: #1e293b;
	--cwk-text-muted: #64748b;
	--cwk-text-faint: #94a3b8;
	--cwk-radius: 14px;
	--cwk-radius-sm: 8px;
	--cwk-shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
	--cwk-shadow: 0 4px 24px rgba(15,23,42,0.07);
	--cwk-shadow-lg: 0 20px 60px rgba(15,23,42,0.12);
	--cwk-transition: 0.2s cubic-bezier(.4,0,.2,1);
	/* Hero-Höhe: Abzug für fixe Leisten (Startseite, kein zusätzlicher Scroll im ersten Screen) */
	--cwk-topbar-height: 2.75rem;
	--cwk-header-height: 3.75rem;
	--cwk-wp-admin-bar: 0px;
}
body.admin-bar {
	--cwk-wp-admin-bar: var(--wp-admin--admin-bar--height, 32px);
}

body {
	margin: 0;
	font-family: "DM Sans", system-ui, -apple-system, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--cwk-text);
	background: var(--cwk-bg);
	-webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { line-height: 1.2; letter-spacing: -0.025em; color: var(--cwk-text); }

a { color: var(--cwk-primary); text-decoration: none; transition: color var(--cwk-transition); }
a:hover { color: var(--cwk-accent); }

img { max-width: 100%; height: auto; }

/* ─── Layout ─── */
.cwk-wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Topbar ─── */
.cwk-topbar {
	background: #020617;
	color: var(--cwk-text-faint);
	font-size: 0.8125rem;
	letter-spacing: 0.01em;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cwk-topbar a { color: #cbd5e1; text-decoration: none; transition: color var(--cwk-transition); }
.cwk-topbar a:hover { color: #fdba74; }
.cwk-topbar-inner {
	display: flex; flex-wrap: wrap; gap: 0.75rem;
	justify-content: space-between; align-items: center;
	padding: 0.5rem 0;
}
.cwk-topbar-inner span:first-child { font-weight: 500; }
/* Feste Größe: globale WP-/Block-Styles setzen oft svg { width:100% } o. ä. */
.cwk-topbar .cwk-inline-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	margin-right: 0.35rem;
	vertical-align: -0.15em;
}
.cwk-topbar .cwk-inline-icon svg {
	width: 14px !important;
	height: 14px !important;
	max-width: 14px !important;
	max-height: 14px !important;
	display: block;
	flex-shrink: 0;
}

/* ─── Header ─── */
.cwk-header {
	background: var(--cwk-primary);
	color: #fff;
	position: sticky; top: 0; z-index: 100;
	box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.18);
	backdrop-filter: blur(12px);
}
.cwk-header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem; padding: 0.65rem 0; flex-wrap: nowrap;
}
.cwk-brand-row { display: flex; align-items: center; gap: 0.75rem; }
.cwk-brand-row .custom-logo-link img { display: block; max-height: 38px; width: auto; }
.cwk-brand {
	display: inline-flex; align-items: center; gap: 0.5rem;
	text-decoration: none; color: #fff;
	font-weight: 700; font-size: 1.25rem; letter-spacing: -0.03em;
	transition: color var(--cwk-transition);
}
.cwk-brand:hover { color: #fdba74; }

/* ─── Nav ─── */
.cwk-nav { display: flex; flex-wrap: nowrap; gap: 0; align-items: center; list-style: none; margin: 0; padding: 0; }
.cwk-nav li { position: relative; }
.cwk-nav a {
	display: block; padding: 0.45rem 0.7rem;
	color: rgba(255,255,255,0.8); text-decoration: none;
	font-weight: 500; font-size: 0.85rem; border-radius: 6px;
	transition: all var(--cwk-transition); white-space: nowrap;
}
.cwk-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.cwk-header-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ─── Buttons ─── */
.cwk-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
	padding: 0.55rem 1.1rem; border-radius: var(--cwk-radius-sm);
	font-weight: 600; font-size: 0.85rem; text-decoration: none;
	border: none; cursor: pointer; white-space: nowrap;
	transition: all var(--cwk-transition);
}
.cwk-hero .cwk-btn, .cwk-cta-band .cwk-btn, .cwk-section .cwk-btn {
	padding: 0.7rem 1.35rem; font-size: 0.9rem;
}
.cwk-btn:focus-visible { outline: 2px solid var(--cwk-accent); outline-offset: 2px; }

.cwk-btn-primary {
	background: var(--cwk-accent); color: #fff;
	box-shadow: 0 2px 12px var(--cwk-accent-glow);
}
.cwk-btn-primary:hover {
	background: var(--cwk-accent-hover); color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px var(--cwk-accent-glow);
}

.cwk-btn-ghost {
	background: rgba(255,255,255,0.08); color: #fff;
	border: 1px solid rgba(255,255,255,0.2);
}
.cwk-btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }

.cwk-btn-outline {
	background: transparent; color: var(--cwk-primary);
	border: 1.5px solid var(--cwk-border);
}
.cwk-btn-outline:hover { border-color: var(--cwk-accent); color: var(--cwk-accent); }

/* ─── Hero ─── */
.cwk-hero {
	background:
		radial-gradient(ellipse 120% 80% at 20% 100%, rgba(30,58,95,0.6) 0%, transparent 60%),
		radial-gradient(ellipse 80% 60% at 80% 0%, rgba(234,88,12,0.08) 0%, transparent 50%),
		linear-gradient(160deg, #0c1222 0%, #162033 40%, #0f172a 100%);
	color: #f1f5f9;
	padding: 4.5rem 0 3.5rem;
	position: relative;
	overflow: hidden;
}
/* Startseite: Hero füllt exakt bis zur unteren Viewport-Kante (nicht 100dvh zusätzlich zu Topbar+Header) */
body.home .cwk-hero {
	/* +3px: Subpixel-Rundung dvh/rem — sonst 1–2px Body-Hintergrund unten sichtbar */
	min-height: calc(100svh - var(--cwk-wp-admin-bar) - var(--cwk-topbar-height) - var(--cwk-header-height) + 3px);
	min-height: calc(100dvh - var(--cwk-wp-admin-bar) - var(--cwk-topbar-height) - var(--cwk-header-height) + 3px);
}
.cwk-hero::before {
	content: '';
	position: absolute; inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
	pointer-events: none;
}
.cwk-hero .cwk-wrap { position: relative; z-index: 1; width: 100%; }
.cwk-hero-kicker {
	display: inline-block; font-size: 0.75rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.12em;
	color: #fdba74; margin-bottom: 1rem;
	padding: 0.3rem 0.75rem; border-radius: 999px;
	background: rgba(253,186,116,0.1); border: 1px solid rgba(253,186,116,0.2);
}
.cwk-hero h1 {
	margin: 0 0 1.25rem; font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.1; letter-spacing: -0.035em; max-width: 20ch;
	color: #fff;
}
.cwk-hero p {
	margin: 0 0 2rem; max-width: 52ch;
	color: #94a3b8; font-size: 1.1rem; line-height: 1.7;
}
.cwk-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }

/* ─── Search Card ─── */
.cwk-search-card {
	background: var(--cwk-surface); border-radius: var(--cwk-radius);
	padding: 0.75rem; box-shadow: var(--cwk-shadow-lg);
	display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: stretch;
	max-width: 640px; border: 1px solid rgba(255,255,255,0.08);
}
.cwk-search-card input[type="search"],
.cwk-search-card select {
	flex: 1 1 200px; min-width: 0;
	padding: 0.85rem 1rem; border: 1px solid var(--cwk-border);
	border-radius: var(--cwk-radius-sm); font: inherit; font-size: 0.95rem;
	background: var(--cwk-bg); transition: border-color var(--cwk-transition);
}
.cwk-search-card input:focus, .cwk-search-card select:focus {
	outline: none; border-color: var(--cwk-accent);
	box-shadow: 0 0 0 3px var(--cwk-accent-glow);
}
.cwk-search-card button { flex: 0 0 auto; padding: 0.85rem 1.5rem; font-size: 0.95rem; }

.cwk-trust {
	display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.8125rem;
	color: rgba(148,163,184,0.7); margin-top: 1.5rem;
}
.cwk-trust span::before {
	content: ''; display: inline-block; width: 6px; height: 6px;
	background: var(--cwk-accent); border-radius: 50%;
	margin-right: 0.5rem; vertical-align: middle;
}

/* ─── Sections ─── */
.cwk-section { padding: 4rem 0; }
.cwk-section-head { margin-bottom: 2rem; }
.cwk-section-head h2 {
	margin: 0 0 0.5rem; font-size: 1.75rem; font-weight: 700;
}
.cwk-section-head p { margin: 0; color: var(--cwk-text-muted); max-width: 56ch; font-size: 1.05rem; }

/* ─── Grid ─── */
.cwk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }

/* ─── Card ─── */
.cwk-card {
	background: var(--cwk-surface); border-radius: var(--cwk-radius);
	padding: 1.5rem; border: 1px solid var(--cwk-border);
	display: flex; flex-direction: column; gap: 0.65rem;
	transition: all var(--cwk-transition); position: relative;
	box-shadow: var(--cwk-shadow-sm);
}
.cwk-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--cwk-shadow);
	border-color: #cbd5e1;
}
.cwk-card h3 { margin: 0; font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
.cwk-card h3 a { text-decoration: none; color: inherit; }
.cwk-card h3 a:hover { color: var(--cwk-accent); }
.cwk-card h2 { margin: 0; font-size: 1.1rem; font-weight: 600; line-height: 1.35; }
.cwk-card h2 a { text-decoration: none; color: inherit; }
.cwk-card h2 a:hover { color: var(--cwk-accent); }

.cwk-card-icon {
	width: 40px; height: 40px; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 0.25rem;
	background: var(--cwk-bg);
	border: 1px solid var(--cwk-border);
	color: var(--cwk-text-muted);
	flex-shrink: 0;
}
.cwk-card-icon svg { width: 1.15rem; height: 1.15rem; }
.cwk-card-row { display: flex; align-items: flex-start; gap: 0.85rem; }
.cwk-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.4rem; }

.cwk-meta {
	font-size: 0.8125rem; color: var(--cwk-text-muted); line-height: 1.5;
	display: flex; align-items: center; gap: 0.35rem;
}
.cwk-meta svg { width: 14px; height: 14px; opacity: 0.5; flex-shrink: 0; }

.cwk-card-footer {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: auto; padding-top: 0.75rem;
	border-top: 1px solid var(--cwk-border);
}
.cwk-card-link {
	font-size: 0.8125rem; font-weight: 600; color: var(--cwk-accent);
	display: inline-flex; align-items: center; gap: 0.25rem;
	transition: gap var(--cwk-transition);
}
.cwk-card-link:hover { gap: 0.5rem; color: var(--cwk-accent-hover); }

/* ─── Tags ─── */
.cwk-tag {
	display: inline-block; font-size: 0.6875rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.05em;
	padding: 0.2rem 0.6rem; border-radius: 5px;
	background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #1d4ed8;
}
.cwk-tag--accent { background: linear-gradient(135deg, #fff7ed, #fed7aa); color: #c2410c; }

/* ─── Split Layout ─── */
.cwk-split { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) {
	.cwk-split { grid-template-columns: minmax(0, 1fr) 420px; align-items: start; }
}

/* ─── Map ─── */
.cwk-map-wrap {
	position: sticky; top: 5rem;
	border-radius: var(--cwk-radius); overflow: hidden;
	border: 1px solid var(--cwk-border);
	min-height: 460px; background: #e2e8f0;
	box-shadow: var(--cwk-shadow);
}
.cwk-map-wrap .leaflet-container { height: 460px; width: 100%; font-family: inherit; }

/* ─── Filters ─── */
.cwk-filters {
	background: var(--cwk-surface); border: 1px solid var(--cwk-border);
	border-radius: var(--cwk-radius); padding: 1.25rem;
	margin-bottom: 1.5rem; box-shadow: var(--cwk-shadow-sm);
	display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.85rem;
}
.cwk-filters label {
	display: block; font-size: 0.6875rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.06em;
	color: var(--cwk-text-muted); margin-bottom: 0.35rem;
}
.cwk-filters select, .cwk-filters input[type="search"] {
	width: 100%; padding: 0.6rem 0.75rem; border-radius: var(--cwk-radius-sm);
	border: 1px solid var(--cwk-border); font: inherit; font-size: 0.9rem;
	background: var(--cwk-bg); transition: all var(--cwk-transition);
}
.cwk-filters select:focus, .cwk-filters input:focus {
	outline: none; border-color: var(--cwk-accent);
	box-shadow: 0 0 0 3px var(--cwk-accent-glow);
}

/* ─── CTA Band ─── */
.cwk-cta-band {
	background:
		radial-gradient(ellipse 100% 100% at 90% 50%, rgba(234,88,12,0.08), transparent),
		linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
	color: #cbd5e1; padding: 3.5rem 0; margin-top: 0;
	position: relative; overflow: hidden;
}
.cwk-cta-band::after {
	content: ''; position: absolute; top: -60px; right: -60px;
	width: 200px; height: 200px; border-radius: 50%;
	background: rgba(234,88,12,0.06); pointer-events: none;
}
.cwk-cta-band .cwk-wrap { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; }
.cwk-cta-band-text { flex: 1; min-width: 280px; }
.cwk-cta-band h2 { margin: 0 0 0.5rem; color: #fff; font-size: 1.5rem; }
.cwk-cta-band p { margin: 0 0 0; max-width: 50ch; line-height: 1.7; }
.cwk-cta-band-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ─── Footer ─── */
.cwk-footer {
	background: #020617; color: var(--cwk-text-faint);
	padding: 3.5rem 0 2rem; font-size: 0.875rem; margin-top: 0;
	border-top: 1px solid rgba(255,255,255,0.04);
}
.cwk-footer a { color: #cbd5e1; transition: color var(--cwk-transition); }
.cwk-footer a:hover { color: #fdba74; }
.cwk-footer-grid {
	display: grid; grid-template-columns: 1.5fr repeat(2, 1fr); gap: 3rem;
}
@media (max-width: 768px) {
	.cwk-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.cwk-footer .widget-title { color: #f1f5f9; font-size: 0.9rem; font-weight: 700; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.cwk-footer-brand { font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 0.75rem; }
.cwk-footer-copy {
	margin-top: 2.5rem; padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.06);
	font-size: 0.8rem; color: rgba(148,163,184,0.5);
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
}
.cwk-footer .cwk-nav { flex-direction: column; gap: 0; }
.cwk-footer .cwk-nav a {
	color: var(--cwk-text-faint); padding: 0.3rem 0;
	font-size: 0.875rem; font-weight: 400; border-radius: 0;
}
.cwk-footer .cwk-nav a:hover { color: #fdba74; background: none; }

/* ─── Breadcrumb ─── */
.cwk-breadcrumb {
	font-size: 0.8125rem; color: var(--cwk-text-muted);
	margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap;
}
.cwk-breadcrumb a { color: var(--cwk-text-muted); font-weight: 500; }
.cwk-breadcrumb a:hover { color: var(--cwk-accent); }
.cwk-breadcrumb-sep { opacity: 0.4; }

/* ─── Prose ─── */
.cwk-prose { max-width: 720px; }
.cwk-prose p:first-of-type { margin-top: 0; }

/* ─── Single Layout ─── */
.cwk-single-layout { display: grid; gap: 2rem; }
@media (min-width: 960px) { .cwk-single-layout { grid-template-columns: 1fr 380px; } }

.cwk-detail-card {
	background: var(--cwk-surface); border-radius: var(--cwk-radius);
	border: 1px solid var(--cwk-border); padding: 1.5rem;
	box-shadow: var(--cwk-shadow-sm);
}

.cwk-dl {
	display: grid; grid-template-columns: auto 1fr;
	gap: 0.6rem 1.25rem; font-size: 0.9rem;
}
.cwk-dl dt { font-weight: 600; color: var(--cwk-text-muted); white-space: nowrap; }
.cwk-dl dd { margin: 0; }
.cwk-dl a { color: var(--cwk-accent); font-weight: 500; }

.cwk-social-links {
	display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap;
}
.cwk-social-links a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 8px;
	background: var(--cwk-bg); border: 1px solid var(--cwk-border);
	color: var(--cwk-text-muted); font-size: 0.8rem; font-weight: 700;
	transition: all var(--cwk-transition);
}
.cwk-social-links a:hover {
	background: var(--cwk-accent); color: #fff; border-color: var(--cwk-accent);
}

/* ─── City Chips ─── */
.cwk-city-chips {
	display: flex; flex-wrap: wrap; gap: 0.5rem;
	list-style: none; margin: 0; padding: 0;
}
.cwk-city-chips .menu-item { list-style: none; }
.cwk-city-chips a, ul.cwk-city-chips a {
	display: inline-flex; align-items: center; gap: 0.3rem;
	padding: 0.45rem 0.9rem; background: var(--cwk-surface);
	border: 1px solid var(--cwk-border); border-radius: 999px;
	font-size: 0.8125rem; font-weight: 500; text-decoration: none;
	color: var(--cwk-text); transition: all var(--cwk-transition);
}
.cwk-city-chips a:hover, ul.cwk-city-chips a:hover {
	border-color: var(--cwk-accent); color: var(--cwk-accent);
	box-shadow: 0 2px 8px var(--cwk-accent-glow);
	transform: translateY(-1px);
}

/* ─── FAQ ─── */
.cwk-faq {
	margin-top: 2.5rem; padding: 2rem;
	background: var(--cwk-surface); border-radius: var(--cwk-radius);
	border: 1px solid var(--cwk-border); box-shadow: var(--cwk-shadow-sm);
}
.cwk-faq h2 { margin-top: 0; font-size: 1.25rem; }

/* ─── Pagination ─── */
.nav-links {
	display: flex; gap: 0.35rem; margin-top: 2rem;
	justify-content: center; flex-wrap: wrap;
}
.nav-links a, .nav-links span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 0.75rem;
	border-radius: var(--cwk-radius-sm); font-size: 0.875rem; font-weight: 600;
	border: 1px solid var(--cwk-border); color: var(--cwk-text); text-decoration: none;
	transition: all var(--cwk-transition); background: var(--cwk-surface);
}
.nav-links a:hover { border-color: var(--cwk-accent); color: var(--cwk-accent); }
.nav-links .current {
	background: var(--cwk-accent); color: #fff; border-color: var(--cwk-accent);
}

/* ─── Result Count ─── */
.cwk-result-count {
	font-size: 0.8125rem; color: var(--cwk-text-muted); font-weight: 500;
	margin-bottom: 1rem; display: flex; align-items: center; gap: 0.35rem;
}
.cwk-result-count strong { color: var(--cwk-text); }

/* ─── Stats Row (Home) ─── */
.cwk-stats {
	display: flex; flex-wrap: wrap; gap: 2.5rem;
	margin-top: 2rem; padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.06);
}
.cwk-stat { text-align: center; }
.cwk-stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.cwk-stat-label { display: block; font-size: 0.75rem; color: var(--cwk-text-faint); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── Category Badges (Home) ─── */
.cwk-categories {
	display: flex; flex-wrap: wrap; gap: 1rem;
	margin-top: 1rem;
}
.cwk-category-badge {
	display: flex; align-items: center; gap: 0.75rem;
	padding: 1rem 1.25rem; background: var(--cwk-surface);
	border: 1px solid var(--cwk-border); border-radius: var(--cwk-radius);
	text-decoration: none; color: var(--cwk-text);
	transition: all var(--cwk-transition); min-width: 200px; flex: 1;
	box-shadow: var(--cwk-shadow-sm);
}
.cwk-category-badge:hover {
	transform: translateY(-2px); box-shadow: var(--cwk-shadow);
	border-color: var(--cwk-accent); color: var(--cwk-accent);
}
.cwk-category-badge-icon {
	width: 44px; height: 44px; border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	background: var(--cwk-bg);
	border: 1px solid var(--cwk-border);
	color: var(--cwk-text-muted);
}
.cwk-category-badge-icon svg { width: 1.35rem; height: 1.35rem; }
.cwk-category-badge-text { font-weight: 600; font-size: 0.9rem; }

/* ─── Empty / 404 icons ─── */
.cwk-icon-hero {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--cwk-text-muted);
}
.cwk-icon-hero svg { width: 4rem; height: 4rem; }
.cwk-empty-state-icon {
	display: flex;
	justify-content: center;
	margin: 0 0 0.5rem;
	color: var(--cwk-text-muted);
}
.cwk-empty-state-icon svg { width: 2.5rem; height: 2.5rem; }

/* ─── CRM Kontaktformular (Plugin Shortcode) ─── */
.cwk-page-kontakt .cwk-page-header-block { margin-bottom: 2rem; max-width: 720px; }
.cwk-page-kontakt .cwk-page-title { font-size: 2rem; margin: 0 0 0.75rem; }
.cwk-page-kontakt .cwk-page-intro { color: var(--cwk-text-muted); font-size: 1.05rem; }
.cwk-crm-form-wrap { max-width: 640px; }
.cwk-crm-form {
	background: var(--cwk-surface);
	border: 1px solid var(--cwk-border);
	border-radius: var(--cwk-radius);
	padding: 1.75rem 1.5rem;
	box-shadow: var(--cwk-shadow-sm);
}
.cwk-crm-form-field { margin: 0 0 1.1rem; }
.cwk-crm-form-field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--cwk-text); }
.cwk-crm-form-field .cwk-req { color: var(--cwk-accent); }
.cwk-crm-form-field input[type="text"],
.cwk-crm-form-field input[type="email"],
.cwk-crm-form-field input[type="url"],
.cwk-crm-form-field textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--cwk-border);
	border-radius: var(--cwk-radius-sm);
	font: inherit;
	background: #fff;
	transition: border-color var(--cwk-transition);
}
.cwk-crm-form-field input:focus,
.cwk-crm-form-field textarea:focus {
	outline: none;
	border-color: var(--cwk-accent);
	box-shadow: 0 0 0 3px var(--cwk-accent-glow);
}
.cwk-crm-form-field--checkbox label {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-weight: 400;
	cursor: pointer;
}
.cwk-crm-form-field--checkbox input { margin-top: 0.2rem; flex-shrink: 0; }
.cwk-crm-form-field--honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.cwk-crm-form-actions { margin-top: 1.25rem; }
.cwk-crm-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font: inherit;
	font-weight: 600;
	color: #fff;
	background: var(--cwk-accent);
	border: none;
	border-radius: var(--cwk-radius-sm);
	cursor: pointer;
	transition: background var(--cwk-transition);
}
.cwk-crm-form-submit:hover { background: var(--cwk-accent-hover); color: #fff; }
.cwk-crm-form-notice {
	padding: 1rem 1.25rem;
	border-radius: var(--cwk-radius-sm);
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
}
.cwk-crm-form-notice--success {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
}
.cwk-crm-form-notice--error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

/* ─── Screen reader ─── */
.screen-reader-text {
	clip: rect(1px,1px,1px,1px); position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
	:root { --cwk-header-height: 5.5rem; }
	.cwk-header-inner { flex-wrap: wrap; }
	.cwk-header-buttons { display: none; }
	.cwk-nav a { font-size: 0.8rem; padding: 0.4rem 0.5rem; }
}
@media (max-width: 768px) {
	:root { --cwk-topbar-height: 0px; }
	.cwk-hero { padding: 3rem 0 2.5rem; }
	.cwk-hero h1 { font-size: 1.75rem; }
	.cwk-section { padding: 2.5rem 0; }
	.cwk-grid { grid-template-columns: 1fr; }
	.cwk-cta-band { padding: 2.5rem 0; }
	.cwk-filters { grid-template-columns: 1fr 1fr; }
	.cwk-topbar { display: none; }
}
