/* @override 
	http://mw-2026-dev-01.fxlb.de/style.css */

@font-face {
font-family: 'Akrobat Regular';
font-style: normal;
font-weight: normal;
src: local('Akrobat Regular'), url('fonts/Akrobat-Regular.woff') format('woff');
}

@font-face {
font-family: 'Akrobat SemiBold';
font-style: normal;
font-weight: normal;
src: local('Akrobat SemiBold'), url('fonts/Akrobat-SemiBold.woff') format('woff');
}

@font-face {
font-family: 'Akrobat ExtraBold Regular';
font-style: normal;
font-weight: normal;
src: local('Akrobat ExtraBold Regular'), url('fonts/akrobat-extrabold-webfont.woff') format('woff');
}

@font-face {
font-family: 'Akrobat Black';
font-style: normal;
font-weight: normal;
src: local('Akrobat Black'), url('fonts/Akrobat-Black.woff') format('woff');
}

/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */

:root {
	--red: #e5231b;   
	--red-k: #e30613;
	--red-dark: #b50016;  
	--navy: #1c1f2e;
	--gray-bg: #e6e6e6;
	--text-dark: #1c1f2e;  
	--text-mid: #444450; 
	--white: #ffffff;
	--focus: #005fcc; 
	--fb: 'Akrobat Black', sans-serif;
	--fr: 'Akrobat Regular', sans-serif;
	--feb: 'Akrobat ExtraBold Regular', sans-serif;
	--fsb: 'Akrobat SemiBold', sans-serif;
	
	/* Hero + Termine Höhe */
	--hero-h: 60svh;
	--termine-h: 40svh;

	/* FIX 1: Einheitliche Badge-Größe für pos-banner-icon und badge-landrat */
	--badge-size: clamp(120px, 14vw, 220px);
}

/* ══════════════════════════════════════
   RESET
══════════════════════════════════════ */

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	
	*, *::before, *::after {
		transition: none !important;
		animation: none !important;
	}
}
body {
	font-family: var(--fr);
	overflow-x: hidden;
	background: var(--gray-bg);
	color: var(--text-dark);
	line-height: 1.5;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

/* ══════════════════════════════════════
   FOKUS
══════════════════════════════════════ */

:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 3px;
	border-radius: 2px;
}

.on-dark:focus-visible, #hero :focus-visible, #positionen :focus-visible {
	outline-color: #fff;
}

#termine :focus-visible, footer :focus-visible {
	outline-color: #fff;
}

/* ══════════════════════════════════════
   SKIP-LINK
══════════════════════════════════════ */

.skip-link {
	position: absolute;
	top: -120px;
	left: 16px;
	z-index: 9999;
	background: var(--focus);
	color: #fff;
	font: 700 16px/1 var(--fb);
	padding: 12px 20px;
	border-radius: 0 0 4px 4px;
	text-decoration: none;
	transition: top .15s;
}

.skip-link:focus {
	top: 0;
	outline: 3px solid #fff;
	outline-offset: 2px;
}

body {
	max-width: 1500px;
	width: 100%;
	margin: 0 auto;
	background-color: var(--gray-bg);
}


.container {
	position: relative; 
	padding: 50px;  
	box-sizing: border-box; 
	background-color: white;
}

#main-content {
	background-color: var(--gray-bg);
}

/* ══════════════════════════════════════
   HAMBURGER
══════════════════════════════════════ */

.hamburger {
	position: absolute;
	top: 56px;
	right: 52px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	z-index: 500;
}

.hamburger span {
	display: block;
	height: 2px;
	width: 24px;
	background: #fff;
	border-radius: 2px;
	transition: transform .28s ease, opacity .2s ease;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}


/* NAV OVERLAY */

#navOverlay {
	position: fixed;
	inset: 0;
	z-index: 400;
	background: radial-gradient(
      circle at 8% 6%,
      rgba(255,150,90,0.45) 0%,
      rgba(255,110,60,0.2) 25%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 95% 130% at 0% 20%,
      #ff5a2a 0%,
      #c00018 18%,
      #7b000e 32%,
      rgba(80,0,50,0.35) 45%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 110% 90% at 45% 35%,
      rgba(110,100,200,0.3) 0%,
      rgba(70,60,150,0.25) 30%,
      transparent 65%
    ),
    linear-gradient(
      135deg,
      var(--navy) 20%,
      rgba(15,10,35,0.9) 55%,
      #000 100%
    );
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease;
}

#navOverlay.open {
	opacity: 1;
	visibility: visible;
}

#navOverlay nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

#navOverlay a {
	font: 700 clamp(22px,4vw,30px)/1 var(--fb);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 10px 20px;
	border-radius: 4px;
	transition: background .15s,color .15s;
}

#navOverlay a:hover {
	color: var(--red);
	background: rgba(255,255,255,.08);
}

#navOverlay a.cta {
	color: #ff5566;
}

/* ══════════════════════════════════════
   HERO
   FIX: Seitenverhältnis bleibt bei allen Breiten stabil.
   aspect-ratio statt svh als Basis, svh nur als min-height.
══════════════════════════════════════ */

#hero {
	position: relative;
	/* FIX: konstantes Seitenverhältnis statt svh */
	aspect-ratio: 16 / 7;
	min-height: 280px;
	max-height: 90svh;
	background: #0d0d0d;
	display: flex;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(
	    circle at 8% 6%,
	    rgba(255,150,90,0.65) 0%,
	    rgba(255,110,60,0.35) 25%,
	    rgba(255,80,40,0.15) 40%,
	    transparent 60%
	  ),
	  radial-gradient(
	    ellipse 95% 130% at 0% 20%,
	    #ff5a2a 0%,
	    #c00018 18%,
	    #7b000e 32%,
	    rgba(80,0,50,0.45) 45%,
	    transparent 68%
	  ),
	  radial-gradient(
	    ellipse 110% 90% at 45% 35%,
	    rgba(110,100,200,0.45) 0%,
	    rgba(70,60,150,0.35) 30%,
	    rgba(40,30,90,0.35) 55%,
	    transparent 75%
	  ),
	  linear-gradient(
	    135deg,
	    rgba(25,20,50,0) 30%,
	    rgba(15,10,35,0.55) 55%,
	    #000 85%
	  ),
	  #000;
}

.hero-img {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 92%;
	overflow: hidden;
	z-index: 1;
}

/* FIX: Verlauf rechts geht immer bis zum Rand, auch bei kleinen Querformaten */
.hero-img::after {
	content: '';
	position: absolute;
	inset: 0;
}

.hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 80% top;
}

.hero-text {
	position: relative;
	z-index: 2;
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 48px 36px 60px;
}

.hero-name {
	width: 100%;
	overflow: hidden;
}

.hero-name span {
	display: block;
	font-weight: 700;
	font-family: var(--feb);
	color: #fff;
	letter-spacing: -1.5px;
	line-height: 0.88;
	white-space: nowrap;
	font-size: 10vw;
}

.hero-slogan-top, .hero-slogan-bottom, .hero-date {
	margin: 0;
}

.hero-slogan-top span, .hero-slogan-bottom span, .hero-date span {
	display: inline-block;
	white-space: nowrap;
}

.hero-slogan-top span {
	display: block;
	font-family: var(--fb);
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 5vw;
}

.hero-slogan-date {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	width: 100%;
	margin-top: 0;
}

.hero-slogan-bottom span {
	font-family: var(--fb);
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.hero-date span {
	font-family: var(--fsb);
	color: #fff;
	text-align: right;
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
	margin-bottom: 0.15em;
}

.hero-arrow {
	display: inline-block;
	height: 0.75em;
	width: auto;
	vertical-align: middle;
	flex-shrink: 0;
}

.badge-landrat-wrap {
	position: relative;
	height: 0;
	overflow: visible;
	z-index: 20;
}

/* badge-landrat: Container ohne border-radius – SVG pulsiert direkt */
.badge-landrat {
	position: absolute;
	bottom: calc(var(--badge-size) * -0.55);
	right: 80px;
	z-index: 20;
	width: var(--badge-size);
	height: var(--badge-size);
	display: flex;
	align-items: center;
	justify-content: center;
}

.badge-landrat img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* span ausblenden, da jetzt SVG-Bild */
.badge-landrat span {
	display: none;
}


/* ══════════════════════════════════════
   TERMINE 
══════════════════════════════════════ */

#termine {
	background: var(--red-k);
	position: relative;
	min-height: var(--termine-h);
	/* FIX: links bündig mit hero-text padding-left (60px) */
	padding: 0 64px 0 60px;
	display: flex;
	align-items: center;
}

.termine-wrap {
	display: grid;
	grid-template-columns: minmax(260px, 420px) 1fr;
	gap: 32px;
	align-items: center;
	width: 100%;
	min-height: 0;
	padding: 24px 0;
}

.map-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	cursor: pointer;
	height: 100%;
}

.map-wrap svg,
.map-wrap img {
	/* Karte füllt die Spalte komplett aus */
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: contain;
	object-position: left center;
	cursor: pointer;
}

.map-tooltip {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.92);
	color: #fff;
	background: rgba(183, 0, 22, 1);
	padding: 10px 16px;
	border-left: 3px solid rgba(255, 255, 255, 0.6);
	text-align: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	white-space: nowrap;
	font: 13px/1.4 var(--fsb);
	letter-spacing: 0.3px;
	z-index: 10;
}

.map-wrap:hover .map-tooltip,
.map-wrap.active .map-tooltip {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.termine-head {
	font: 52px/1 var(--fsb);
	color: #fff;
	margin-bottom: 3px;
}

.termine-sub {
	font: 20px/1 var(--fb);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,.88);
	margin-top: 14px;
	margin-bottom: 28px;
}

.termine-scroll {
	display: flex;
	gap: 22px;
	align-items: stretch;
}

.termine-tbl-wrap {
	overflow-y: auto;
	/* max-height wird per JS auf 4 Zeilen gesetzt */
	flex: 1;
	min-width: 0;
	scrollbar-width: none;
}

.termine-tbl-wrap::-webkit-scrollbar {
	display: none;
}

.termine-tbl {
	width: 100%;
	border-collapse: collapse;
	/* FIX: Tabelle bricht nie ab, alle Spalten immer sichtbar */
	table-layout: auto;
}

.termine-tbl caption {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}

.termine-tbl td {
	padding: 6px 6px 6px 0;
	border-top: 1px solid white;
	color: #fff;
	font-size: clamp(13px, 1.4vw, 18px);
	vertical-align: top;
	white-space: nowrap;
}


.termine-tbl {
	width: 100%;
	border-collapse: collapse;
	table-layout: auto;
}

.termine-tbl tr:first-child td {
	border-top: none;
}

.termine-tbl td:first-child {
	font-family: var(--fb);
	width: 1%;
	white-space: nowrap;
	padding-right: 24px;
}

.termine-tbl td:nth-child(2) {
	color: rgba(255,255,255,.88);
	width: 1%;
	white-space: nowrap;
	padding-right: 24px;
}

.termine-tbl td:nth-child(3) {
	width: 50%;
	white-space: normal;
}

.termine-tbl td:last-child {
	width: 50%;
	text-align: left;
	padding-left: 10px;
	white-space: normal;
}

.termine-tbl .section-head th {
	text-align: left;
	padding-top: 1em;
	padding-bottom: 1em;
	font: 16px/1 var(--fb);
	text-transform: uppercase;
	color: white;
}

.termine-tbl .past {
	opacity: 0.7;
}

/* FIX: Timeline-dot per Drag scrollbar */
.timeline {
	position: relative;
	width: 18px;
	display: flex;
	justify-content: center;
	flex: 0 0 18px;
	cursor: ns-resize;
}

.timeline::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 100%;
	background: rgba(255,255,255,.45);
}

/* Scrollpunkt */
.timeline-dot {
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	top: 0;
	cursor: grab;
	touch-action: none;
}

.timeline-dot:active {
	cursor: grabbing;
}

/* ══════════════════════════════════════
   DIVIDER
══════════════════════════════════════ */

.divider {
	height: 22px;
	background: linear-gradient(90deg, #f59823 0%, #c8001a 38%, var(--navy) 100%);
	margin-left: 60px;
	margin-right: 0;
}

/* ══════════════════════════════════════
   STIMMEN
══════════════════════════════════════ */

#stimmen {
	background: var(--gray-bg);
	padding: 66px 0 76px;
}

.stimmen-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 60px;
}

.stimmen-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	list-style: none;
}

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

.stimmen-avatar {
	width: 128px;
	height: 128px;
	border-radius: 50%;
	background: #c5c2bc;
	margin: 0 auto 14px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stimmen-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stimmen-avatar svg {
	opacity: .5;
}

.stimmen-name {
	font-family: var(--fb);
	font-size: clamp(18px, 1.8vw, 23px);
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--red-dark);
	margin-bottom: 4px;
}

.stimmen-role {
	font-family: var(--fb);
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.35;
	color: var(--red-dark);
	margin-bottom: 10px;
}

.stimmen-text {
	font-family: var(--fb);
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.35;
	color: var(--text-mid);
}

/* ══════════════════════════════════════
   POSITIONEN
══════════════════════════════════════ */

#positionen {
	background: radial-gradient(ellipse at top left,    rgba(0,0,0,0.85) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(0,0,0,0.85) 0%, transparent 60%),
    linear-gradient(180deg, #0b3a75 0%, #042859 100%);
	position: relative;
	z-index: 10;
}

/* Unterer Container für Person + Footer */
.container--bottom {
	max-width: 1500px;
	margin: 0 auto;
	background-color: white;
	padding: 0 50px 50px;
}

.pos-body {
	position: relative;
}

.pos-body-content {
	position: relative;
	z-index: 2;
}

.pos-wave-cover-top, .pos-wave-cover-bottom {
	position: absolute;
	left: 0;
	width: 100%;
	height: auto;
	line-height: 0;
	pointer-events: none;
	z-index: 1;
}

.pos-wave-cover-top {
	top: -2px;
}

.pos-wave-cover-bottom {
	bottom: -2px;
}

.pos-wave-cover-top svg, .pos-wave-cover-bottom svg {
	display: block;
	height: auto;
}

/* ── Banner ── */

:root {
	--banner-svg-h: clamp(100px, 12vw, 300px);
}

.pos-banner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 80px 0 60px;
	margin-top: -80px;
	margin-bottom: 56px;
	position: relative;
	z-index: 3;
	overflow: visible;
}

.pos-banner-svg {
	width: auto;
	height: var(--banner-svg-h);
	max-width: 360px;
	object-fit: contain;
	flex-shrink: 0;
}

/* Icon überlappt die Wellenform nach oben */
.pos-banner-icon {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	width: var(--badge-size);
	height: var(--badge-size);
	flex-shrink: 0;
	overflow: visible;
	/* negatives margin-top: Icon ragt über die Wave-Linie */
	margin-top: calc(var(--badge-size) * -0.45);
}

.pos-banner-icon img {
	width: 100%;
	height: auto;
}

.pos-wrap {
	padding-bottom: 60px;
}

.pos-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 60px;
	list-style: none;
	column-gap: 24px;
	row-gap: 60px;
	position: relative;
}

.pos-item:nth-child(n+4)::before {
	content: "";
	position: absolute;
	left: 60px;
	right: 60px;
	height: 7px;
	background: var(--red);
	transform: translateY(-32px);
}

.pos-item:nth-child(n+5)::before {
	content: "";
	position: absolute;
	left: 60px;
	right: 60px;
	height: 7px;
	background: var(--red);
	transform: translateY(-32px);
}

.pos-item {
	padding-right: 24px;
}

.pos-item-title {
	font-family: var(--fb);
	font-size: clamp(18px, 1.8vw, 23px);
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--gray-bg);
	letter-spacing: .2px;
	margin-bottom: 9px;
}

.pos-item-text {
	font-family: var(--fsb);
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.35;
	color: var(--gray-bg);
}


/* ══════════════════════════════════════
   PERSON
══════════════════════════════════════ */

#person {
	position: relative;
	z-index: 20;
}

.person-banner {
	display: flex;
	justify-content: flex-end;
	margin-top: -150px;
	padding-right: 60px;
	position: relative;
	z-index: 2;
}

.person-banner-svg {
	width: auto;
	height: var(--banner-svg-h);
	max-width: 360px;
	object-fit: contain;
	flex-shrink: 0;
}

.person-grid {
	display: grid;
	grid-template-columns: 500px 1fr;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 40px;
	gap: 0px;
	border-bottom: 7px solid var(--red);
}

.person-photo {
	position: relative;
	align-self: end;
}

.person-photo img {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

.person-badge {
	position: absolute;
	top: 130px;
	left: -10px;
	width: 180px;
	height: 180px;
	border: 5px solid var(--red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	z-index: 1;
}

.person-badge span {
	font-size: calc(180px * 0.128);
	line-height: 1.1;
	font-family: var(--fb);
	color: var(--red);
	text-transform: uppercase;
}

.person-text {
	padding: 50px 50px 50px 50px
}

.person-intro {
	font-family: var(--fb);
	font-size: clamp(17px, 1.8vw, 23px);
	line-height: 1.4;
	color: #75044e;
	margin-bottom: 26px;
}

.bio-dl {
	line-height: 1.35;
}

.bio-dl dt {
	display: inline;
	color: #75044e;
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.35;
	font-family: var(--fb);
	font-weight: normal;
}

.bio-dl dt::before {
	content: ' | ';
	color: var(--red);
	font-family: var(--fb);
}

.bio-dl dt:first-of-type::before {
	content: '';
}

.bio-dl dd {
	display: inline;
	color: #75044e;
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.35;
	font-family: var(--fr);
	margin: 0;
}

.bio-dl dd::after {
	content: '';
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

footer {
	background: var(--red);
	padding: 0;
	display: flex;
	justify-content: center;
	border-top: 100px solid var(--gray-bg);
}

.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	max-width: 1400px;
	padding: 40px 60px;
	gap: 30px;
	box-sizing: border-box;
}

.footer-social {
	display: flex;
	gap: 25px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	justify-content: flex-start;
}

.footer-social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background .15s, transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
	padding: 0;
}

.footer-social a:hover {
	background: rgba(255,255,255,0.12);
	transform: scale(1.25);
}

.footer-social a img {
	display: block;
	width: 40px;
	height: 40px;
	pointer-events: none;
}

.insta-grid {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.insta-grid #sbi,
.insta-grid .sbi-feed-min-width,
.insta-grid .sbi-feed-max-width,
.insta-grid [class*="sbi-feed"],
.insta-grid .sbi_innerCont {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.insta-grid #sbi .sbi_item {
	width: 20% !important;
	padding: 0 !important;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.insta-grid #sbi .sbi_photo_wrap,
.insta-grid #sbi .sbi_photo {
	width: 100% !important;
	height: 100% !important;
	padding-bottom: 0 !important;
}

.insta-grid #sbi .sbi_photo img,
.insta-grid #sbi .sbi_photo_wrap img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}


.insta-box {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: rgba(255, 255, 255, 0.35);
	overflow: hidden;
}

.insta-box a {
	display: block;
	width: 100%;
	height: 100%;
}

.insta-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.insta-box:hover img {
	transform: scale(1.04);
}

.footer-meta {
	font-size: 14px;
	color: rgba(255,255,255,0.9);
	text-align: center;
	line-height: 1.6;
	margin: 0;
}

.footer-links {
	display: flex;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.footer-links a {
	font: 16px/1 var(--fb);
	color: #fff;
	text-decoration: none;
	transition: opacity .15s;
}

.footer-links a:hover {
	opacity: .75;
}

@media (max-width: 1200px) {
	.insta-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

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

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

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1250px) {
	.person-grid {
		grid-template-columns: 1fr 2fr;
		padding-left: 24px;
	}
	
	.person-badge {
		width: clamp(110px, 14vw, 160px);
		height: clamp(110px, 14vw, 160px);
		top: -150px;
		left: 12px;
		border-width: 4px;
	}
	
	.person-badge span {
		font-size: clamp(calc(110px * 0.128), calc(14vw * 0.128), calc(160px * 0.128));
	}
	
	.person-banner {
		margin-top: -120px;
		padding-right: 44px;
	}
	
	.person-text {
		padding: 40px 44px 44px 36px;
	}
	
	.person-intro {
		font-size: 22px;
		line-height: 1.35;
	}
	
	.bio-dl dt, .bio-dl dd {
		font-size: clamp(16px, 1.4vw, 18px);
		line-height: 1.35;
	}
}

/* ══════════════════════════════════════
   RESPONSIVE – TABLET ≤ 960px
══════════════════════════════════════ */

@media (max-width: 960px) {
	:root {
		--hero-h: 55svh;
		--termine-h: 45svh;
		--badge-size: clamp(100px, 15vw, 180px);
	}
	
	#hero {
		height: auto;
		aspect-ratio: 16 / 8;
		min-height: 280px;
		max-height: 70svh;
		overflow: hidden;
	}
	
	.hero-text {
		padding: 0 32px 32px 44px;
		width: 56%;
		height: 100%;
		justify-content: flex-end;
		overflow: hidden;
	}
	
	.hero-img {
		width: 58%;
	}
	
	.hamburger {
		top: 30px;
		right: 25px;
		gap: 6px;
		z-index: 500;
	}
	
	.container {
		padding: 30px;
	}

	.container--bottom {
		padding: 0 30px 30px;
	}

	.divider {
		height: 16px;
		margin-left: 44px;
		margin-right: 0;
	}
	
	#termine {
		height: auto;
		padding: 28px 44px 28px 44px;
		align-items: flex-start;
	}
	
	.map-wrap {
		display: none !important;
	}

	.termine-wrap {
		grid-template-columns: 1fr;
		gap: 0;
		height: auto;
		padding: 0;
		align-items: start;
	}

	.termine-head {
		font-size: clamp(36px, 5vw, 52px);
	}

	.termine-sub {
		font-size: clamp(16px, 2vw, 20px);
	}

	.termine-tbl td {
		font-size: clamp(15px, 1.8vw, 18px);
	}
	
	.stimmen-wrap {
		padding: 0 44px;
	}

	.stimmen-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.badge-landrat {
		right: 60px;
	}

	.pos-banner {
		padding: 0 60px 0 44px;
		margin-top: -52px;
	}
	
	.pos-list {
		padding: 0 44px;
		grid-template-columns: repeat(2, 1fr);
	}

	.pos-item:nth-child(n+3)::before {
		content: "";
		position: absolute;
		left: 44px;
		right: 44px;
		height: 7px;
		background: var(--red);
		transform: translateY(-32px);
	}

	.pos-item:nth-child(n+4)::before {
		left: 44px;
		right: 44px;
	}

	.pos-item:nth-child(n+5)::before {
		left: 44px;
		right: 44px;
	}
	
	.person-grid {
		display: flex;
		flex-direction: column-reverse;
		padding-left: 0;
	}
	
	.person-text {
		order: 1;
		padding: 28px 44px 32px;
	}
	
	.person-photo {
		align-self: flex-start;
	}
	
	.person-photo img {
		max-width: 500px;
	}
	
	.person-badge {
		width: clamp(110px, 12vw, 140px);
		height: clamp(110px, 12vw, 140px);
		top: clamp(14px, 3vw, 40px);
		left: clamp(14px, 3vw, 40px);
		border-width: 4px;
	}
	
	.person-badge span {
		font-size: clamp(calc(110px * 0.128), calc(12vw * 0.128), calc(140px * 0.128));
	}
	
	.person-banner {
		padding-right: 44px;
		margin-top: -54px;
	}
	
	.footer-inner {
		padding: 22px 44px;
	}
}

/* ══════════════════════════════════════
   RESPONSIVE – MOBILE ≤ 580px
══════════════════════════════════════ */

@media (max-width: 700px) {
	.pos-wrap {
		padding-bottom: 60px;
	}
}

@media (max-width: 580px) {
	:root {
		--hero-h: auto;
		--termine-h: auto;
		--badge-size: clamp(90px, 22vw, 140px);
		--banner-svg-h: clamp(80px, 20vw, 130px);
	}
	
	#hero {
		position: relative;
		display: flex;
		height: auto;
		aspect-ratio: 16 / 9;
		min-height: 180px;
		overflow: hidden;
	}
	
	.hero-img {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: 62%;
		height: 100%;
	}
	
	.hero-bg {
		position: absolute;
		inset: 0;
	}
	
	.hero-text {
		position: relative;
		z-index: 2;
		width: 50%;
		height: 100%;
		padding: 20px 0 5% 20px;
		background: transparent;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	/* Mobile: 7. Juni oben, Erfahrung + Name unten */
	.hero-text {
		justify-content: space-between;
	}

	/* hero-slogan-date nach oben, zeigt nur Datum */
	.hero-slogan-date {
		order: -1;
		flex-direction: row;
		align-items: baseline;
		justify-content: flex-start;
		margin-top: -5px !important;
	}

	/* Erfahrung in slogan-date ausblenden */
	.hero-slogan-date .hero-slogan-bottom {
		display: none;
	}

	/* Erfahrung direkt nach "Zukunft braucht" via ::after */
	.hero-slogan-top::after {
		content: "ERFAHRUNG";
		display: block;
		font-family: var(--fb);
		color: var(--red);
		text-transform: uppercase;
		letter-spacing: 0.3px;
		white-space: nowrap;
		font-size: var(--after-size, clamp(12px, 4.5vw, 20px));
		line-height: 1;
		margin-top: -0.1em;
	}

	.hero-date span {
		font-size: 22px !important;
		margin-bottom: 0;
	}

	.hero-arrow {
		height: 1em;
		width: auto;
	}

	.hero-slogan-top span {
		font-size: clamp(12px, 4.5vw, 20px);
	}
	
	#termine {
		height: auto;
		padding: 28px 28px 32px;
		align-items: flex-start;
	}
	
	.termine-wrap {
		grid-template-columns: 1fr;
		gap: 0;
		height: auto;
		padding: 0;
	}
	
	.termine-head {
		font-size: clamp(22px, 6vw, 32px);
		line-height: 1.1;
		margin-bottom: 2px;
	}
	
	.termine-sub {
		font-size: clamp(11px, 3vw, 14px);
		margin-top: 4px;
		margin-bottom: 0;
		letter-spacing: 1px;
	}
	
	.termine-scroll {
		margin-top: 16px;
		gap: 14px;
	}

	/* Mobile Termine: Block-Layout statt Tabelle */
	.termine-tbl,
	.termine-tbl tbody,
	.termine-tbl tr,
	.termine-tbl td {
		display: block;
		width: 100%;
	}

	.termine-tbl tr {
		border-top: 1px solid rgba(255,255,255,0.4);
		padding: 8px 0;
	}

	.termine-tbl tr:first-child {
		border-top: none;
	}

	/* Datum + Uhrzeit nebeneinander in einer Zeile */
	.termine-tbl td:first-child,
	.termine-tbl td:nth-child(2) {
		display: inline;
		width: auto;
		padding: 0;
		font-size: clamp(12px, 3.2vw, 15px);
		white-space: nowrap;
		border: none;
	}

	.termine-tbl td:first-child {
		font-family: var(--fb);
		padding-right: 6px;
	}

	.termine-tbl td:nth-child(2)::before {
		content: '| ';
		opacity: 0.6;
	}

	/* Ort: neue Zeile, groß */
	.termine-tbl td:nth-child(3) {
		display: block;
		width: 100%;
		white-space: normal;
		padding: 2px 0 0;
		font-size: clamp(14px, 3.8vw, 17px);
		font-family: var(--fb);
		color: #fff;
		border: none;
	}

	/* Veranstaltung: neue Zeile, kleiner */
	.termine-tbl td:last-child {
		display: block;
		width: 100%;
		white-space: normal;
		padding: 1px 0 0;
		font-size: clamp(12px, 3vw, 14px);
		text-align: left;
		color: rgba(255,255,255,0.75);
		border: none;
	}

	.termine-tbl .section-head th {
		font-size: clamp(11px, 3vw, 14px);
		padding-top: 14px;
		padding-bottom: 6px;
	}

	.termine-tbl .section-head {
		border-top: 2px solid rgba(255,255,255,0.3);
	}
	
	#stimmen {
		padding: 32px 0 40px;
	}
	
	.stimmen-wrap {
		padding: 0 24px;
	}
	
	.stimmen-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
		overflow-x: unset;
		padding-bottom: 0;
	}
	
	.stimmen-card {
		flex: unset;
	}
	
	.stimmen-avatar {
		width: 80px;
		height: 80px;
		margin-bottom: 8px;
	}
	
	.stimmen-name {
		font-size: clamp(18px, 4.5vw, 21px);
		line-height: 1.35;
	}
	
	.stimmen-role {
		font-size: 16px;
		line-height: 1.35;
		margin-bottom: 6px;
	}
	
	.stimmen-text {
		font-size: 16px;
		line-height: 1.35;
	}
	
	#positionen {
		/* kein padding-bottom – würde blauen Streifen unter der Wave erzeugen */
	}
	
	.pos-wrap {
		padding-bottom: 0;
	}

	.divider {
		height: 8px;
		margin-left: 24px;
		margin-right: 0;
	}
	
	.badge-landrat {
		right: 36px;
	}

	.pos-banner {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: 12px;
		padding: 0 36px 0 24px;
		margin-top: calc(var(--badge-size) * -0.55);
		margin-bottom: 28px;
	}
	
	.pos-banner-svg {
		height: var(--banner-svg-h);
		max-width: none;
		flex: 1;
	}
	
	.pos-banner-icon {
		width: var(--badge-size);
		height: var(--badge-size);
		margin-top: 0;
		flex-shrink: 0;
	}
	
	.pos-list {
		padding: 0 24px;
		grid-template-columns: 1fr;
		column-gap: 20px;
		row-gap: 40px;
	}

	.pos-item:nth-child(n+2)::before {
		content: "";
		position: absolute;
		left: 24px;
		right: 24px;
		height: 7px;
		background: var(--red);
		transform: translateY(-22px);
	}

	.pos-item:nth-child(n+3)::before,
	.pos-item:nth-child(n+4)::before,
	.pos-item:nth-child(n+5)::before {
		left: 24px;
		right: 24px;
		transform: translateY(-22px);
	}
	
	.pos-item {
		padding: 0;
	}
	
	.pos-item-title {
		font-size: 18px;
		line-height: 1.35;
		margin-bottom: 8px;
		color: var(--gray-bg);
	}
	
	.pos-item-text {
		font-size: 16px;
		line-height: 1.35;
	}
	
	.person-banner {
		padding-right: 24px;
		margin-top: -60px;
	}
	
	.person-grid {
		display: flex;
		flex-direction: column-reverse;
		padding-left: 0;
		border-bottom: 7px solid var(--red);
	}
	
	.person-text {
		order: 1;
		padding: 20px 24px 24px;
	}
	
	.person-photo {
		order: 2;
		padding-top: 0;
		position: relative;
		padding-left: 24px;
		padding-right: 24px;
	}
	
	.person-badge {
		width: clamp(110px, 16vw, 120px);
		height: clamp(110px, 16vw, 120px);
		left: clamp(12px, 4vw, 28px);
		top: clamp(10px, 4vw, 40px);
		border-width: clamp(2px, 0.6vw, 5px);
	}
	
	.person-badge span {
		font-size: clamp(calc(110px * 0.128), calc(16vw * 0.128), calc(120px * 0.128));
		line-height: 1.15;
	}
	
	.container--bottom {
		padding: 0 20px 20px;
	}

	.footer-inner {
		flex-direction: column;
		gap: 16px;
		padding: 22px 24px;
		text-align: center;
	}
	
	.footer-social {
		justify-content: center;
	}
	
	.footer-links {
		justify-content: center;
	}
}

@media (max-width: 400px) {
	#hero {
		aspect-ratio: 4 / 3;
	}
}


/* ══════════════════════════════════════
   ANIMATIONEN
══════════════════════════════════════ */

@keyframes pulse-badge {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.07);
	}
}

.badge-landrat {
	animation: none;
}

.badge-landrat img {
	animation: pulse-badge 2.8s ease-in-out infinite;
	animation-delay: 1.2s;
	transform-origin: center center;
}

.anim-pop {
	opacity: 0;
	transform: translateY(28px) scale(0.97);
	transition: opacity    0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform  0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-pop.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.anim-pop:nth-child(2)  { transition-delay: 0.08s; }
.anim-pop:nth-child(3)  { transition-delay: 0.16s; }
.anim-pop:nth-child(4)  { transition-delay: 0.24s; }
.anim-pop:nth-child(5)  { transition-delay: 0.32s; }
.anim-pop:nth-child(6)  { transition-delay: 0.40s; }
.anim-pop:nth-child(7)  { transition-delay: 0.48s; }
.anim-pop:nth-child(8)  { transition-delay: 0.56s; }
.anim-pop:nth-child(9)  { transition-delay: 0.64s; }
.anim-pop:nth-child(10) { transition-delay: 0.72s; }

.pos-item.anim-pop {
	opacity: 0;
	transform: none;
	transition: opacity   0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pos-item.anim-pop.visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.badge-landrat { animation: none; }
	.badge-landrat img { animation: none; }
	.anim-pop { opacity: 1; transform: none; transition: none; }
}