/*
 * ProHaltefrist — design system
 * Order: tokens → reset → utilities → header → hero → supporters → why → news
 *        → mp-cta → petition+donation → faq → page → article → footer → responsive
 */

/* ── 1. Tokens ─────────────────────────────────────────────── */
:root {
	--color-orange: #ef7c23;
	--color-orange-hover: #E07F0A;
	--color-orange-tint: #FEF1DC;
	--color-ink: #0B1B2D;
	--color-ink-soft: #13243A;
	--color-cream: #FAF5EE;
	--color-cream-strong: #F2EBDE;
	--color-card: #FFFFFF;
	--color-border: #E6E1D7;
	--color-border-cool: #E5E7EB;
	--color-text: #1F2937;
	--color-text-muted: #6B7280;
	--color-text-inverse: #FFFFFF;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--shadow-card: 0 1px 2px rgba(11, 27, 45, .04), 0 4px 16px rgba(11, 27, 45, .06);
	--container: 1200px;
	--gutter: clamp(16px, 4vw, 32px);
	--font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ── 2. Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-card);
}
/* On the front page the hero is full-bleed dark and the WP admin bar adds a 32px html margin-top.
   Set the body bg to the hero's ink color so no white stripe shows above the hero. */
body.home,
body.page-template-front-page,
body.front-page { background: var(--color-ink); }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.page__content a:not(.btn),
.entry-content a:not(.btn) {
	color: var(--color-orange);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
.page__content a:not(.btn):hover,
.page__content a:not(.btn):focus-visible,
.entry-content a:not(.btn):hover,
.entry-content a:not(.btn):focus-visible {
	color: var(--color-orange-hover);
	text-decoration-thickness: 2px;
}
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 3px; }

.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link { position: absolute; top: -40px; left: 8px; background: var(--color-ink); color: #fff; padding: 8px 12px; z-index: 100; border-radius: 0 0 8px 8px; }
.skip-link:focus-visible { top: 0; }

/* ── 3. Utilities ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 760px; }
.eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--color-text-muted); }
.section-eyebrow { display: block; text-align: center; font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--color-ink); margin: 0 0 2rem; }
.site-main { display: block; }
.site-main:not(.site-main--front) { padding: 80px 0 100px; }

/* ── 4. Buttons ────────────────────────────────────────────── */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	border-radius: var(--radius-sm); font-weight: 600; line-height: 1;
	padding: 12px 18px; border: 1px solid transparent; transition: background-color .15s, color .15s, border-color .15s;
	text-align: center; white-space: nowrap;
}
.btn:hover, .btn:focus-visible { text-decoration: none; }
.btn--sm { padding: 8px 12px; font-size: 14px; }
.btn--md { padding: 12px 18px; font-size: 15px; }
.btn--lg { padding: 14px 22px; font-size: 16px; }
.btn__icon { display: inline-flex; }

.btn--primary { background: var(--color-orange); color: #fff; }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--color-orange-hover); }
.btn--secondary { background: #fff; color: var(--color-ink); border-color: rgba(255,255,255,.65); }
.site-header--on-light .btn--secondary { border-color: var(--color-border-cool); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.40); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: rgba(255,255,255,.08); }
.btn--outline-orange { background: #fff; color: var(--color-orange); border-color: var(--color-orange); }
.btn--outline-orange:hover, .btn--outline-orange:focus-visible { background: var(--color-orange); color: #fff; }

/* hero button context: secondary and ghost both render as visible white-outline on darker semi-transparent bg, matching the mockup. */
.hero .btn--secondary,
.hero .btn--ghost {
	background: rgba(11, 27, 45, .55);
	color: #fff;
	border-color: rgba(255, 255, 255, .75);
}
.hero .btn--secondary:hover,
.hero .btn--ghost:hover,
.hero .btn--secondary:focus-visible,
.hero .btn--ghost:focus-visible {
	background: rgba(11, 27, 45, .80);
	border-color: #fff;
}

/* ── 5. Site Header ─────────────────────────────────────────── */
.site-header { position: relative; z-index: 5; }
.site-header__inner { display: flex; align-items: center;  padding-top: 10px; justify-content: space-between; gap: 24px; min-height: 88px; }
.site-header--on-dark { color: #fff; }
.site-header--on-dark .primary-nav__list a { color: #fff; }

.site-branding { display: inline-flex; align-items: center; }
.site-branding__logo { height: 80px; width: auto; flex-shrink: 0; display: block; }

.primary-nav { display: flex; align-items: center; gap: 20px; position: relative; }
.primary-nav__list { display: flex; gap: 26px; list-style: none; align-items: center; }
.primary-nav__list > .menu-item { position: relative; }
.primary-nav__list a { font-size: 14px; font-weight: 600; color: var(--color-ink); }
.primary-nav__list a:hover { color: var(--color-orange); text-decoration: none; }

/* Dropdown parent: chevron + interaction targets. */
.primary-nav__list .menu-item-has-children > a {
	display: inline-flex; align-items: center; gap: 6px;
}
.primary-nav__list .menu-item-has-children > a::after {
	content: ""; width: 8px; height: 8px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg); transition: transform .15s;
}
.primary-nav__list .menu-item-has-children.is-open > a::after,
.primary-nav__list .menu-item-has-children:hover > a::after,
.primary-nav__list .menu-item-has-children:focus-within > a::after {
	transform: translateY(1px) rotate(225deg);
}

/* Submenu panel (desktop). */
.primary-nav__list .sub-menu {
	position: absolute; top: calc(100% + 8px); left: -16px;
	min-width: 240px;
	background: #fff; color: var(--color-ink);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: 8px;
	list-style: none;
	display: flex; flex-direction: column; gap: 2px;
	opacity: 0; visibility: hidden; transform: translateY(-4px);
	transition: opacity .12s, transform .12s, visibility 0s linear .12s;
	z-index: 10;
}
.primary-nav__list .sub-menu::before {
	content: ""; position: absolute; left: 0; right: 0; top: -8px; height: 8px;
}
.primary-nav__list .menu-item-has-children:hover > .sub-menu,
.primary-nav__list .menu-item-has-children:focus-within > .sub-menu,
.primary-nav__list .menu-item-has-children.is-open > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
	transition-delay: 0s;
}
.primary-nav__list .sub-menu a {
	display: block; padding: 8px 12px; border-radius: var(--radius-sm);
	color: var(--color-ink); font-weight: 500;
}
.primary-nav__list .sub-menu a:hover,
.primary-nav__list .sub-menu a:focus-visible {
	background: var(--color-cream); color: var(--color-orange); text-decoration: none;
}

/* CTA button alongside the menu. */
.primary-nav__cta { flex-shrink: 0; }

.primary-nav__toggle { display: none; background: transparent; border: 0; padding: 8px; width: 44px; height: 44px; color: currentColor; }
.primary-nav__toggle-bar { display: block; width: 22px; height: 2px; background: currentColor; margin: 4px auto; }

/* ── 6. Hero ───────────────────────────────────────────────── */
.site-main--front .hero { margin-top: -110px; }
.hero { position: relative; color: #fff; padding: calc(110px + 64px) 0 96px; background: var(--color-ink); overflow: hidden; isolation: isolate; }
.hero::before {
	content: ""; position: absolute; inset: 0; z-index: -2;
	background-image: var(--hero-bg, none), linear-gradient(135deg, #0B1B2D 0%, #1A3554 60%, #0B1B2D 100%);
	background-size: cover; background-position: center right;
}
.hero__overlay {
	position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(90deg, rgba(11,27,45,.92) 0%, rgba(11,27,45,.78) 45%, rgba(11,27,45,.30) 100%);
}
.hero__inner { max-width: 1200px; }
.hero__copy { max-width: 640px; }
.hero__headline { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; font-weight: 800; margin-bottom: 16px; }
.hero__subline { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.85); margin-bottom: 32px; }
.hero__cta-cluster { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── 7. Supporters Strip ───────────────────────────────────── */
.supporters-strip { background: var(--color-cream); padding: 88px 0 96px; border-bottom: 1px solid var(--color-cream-strong); }

.supporters-strip__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	align-items: end;
	margin-bottom: 56px;
}
.supporters-strip__header-lhs { max-width: 56ch; }
.supporters-strip__eyebrow {
	font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--color-orange); margin: 0 0 12px;
}
.supporters-strip__headline {
	font-size: 36px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15;
	color: var(--color-ink); margin: 0; max-width: 30ch;
}
.supporters-strip__stat { text-align: right; }
.supporters-strip__stat-num {
	font-size: 72px; font-weight: 800; line-height: 1;
	color: var(--color-orange); letter-spacing: -0.03em;
}
.supporters-strip__stat-label {
	display: block;
	font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--color-text-muted); margin-top: 8px;
}

/* Bands */
.supporters-strip__band { margin-bottom: 44px; }
.supporters-strip__band:last-of-type { margin-bottom: 0; }
.supporters-strip__band-head {
	display: flex; align-items: baseline; gap: 14px;
	margin-bottom: 20px;
}
.supporters-strip__band-label {
	font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--color-ink);
}
.supporters-strip__band-count {
	font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--color-text-muted);
	font-variant-numeric: tabular-nums;
}
.supporters-strip__band-rule {
	flex: 1 1 auto; height: 1px;
	background: var(--color-border);
}
.supporters-strip__band-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
}

/* Cells */
.supporters-strip__cell {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex; flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.supporters-strip__cell:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card);
	border-color: var(--color-orange);
}
.supporters-strip__cell:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px var(--color-orange-tint), 0 0 0 4px var(--color-orange);
	text-decoration: none;
}
.supporters-strip__cell-media {
	flex: 1 1 auto;
	display: flex; align-items: center; justify-content: center;
	padding: 16px;
	min-height: 0;
}
.supporters-strip__cell-media img {
	max-width: 80%; max-height: 80%;
	width: auto; height: auto;
	object-fit: contain;
}
.supporters-strip__cell--face .supporters-strip__cell-media {
	padding: 0;
	align-items: stretch; justify-content: stretch;
}
.supporters-strip__cell--face .supporters-strip__cell-media img {
	width: 100%; height: 100%;
	max-width: none; max-height: none;
	object-fit: cover;
}
.supporters-strip__cell-name {
	position: absolute; bottom: 0; left: 0; right: 0;
	padding: 10px 12px 11px;
	background: linear-gradient(to top, rgba(11,27,45,0.86), rgba(11,27,45,0));
	color: #fff;
	font-size: 11.5px; font-weight: 600; letter-spacing: 0.01em;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Footer */
.supporters-strip__foot {
	display: flex; justify-content: space-between; align-items: center;
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid var(--color-border);
}
.supporters-strip__foot-note {
	font-size: 12px; color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1100px) {
	.supporters-strip__band-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
	.supporters-strip { padding: 64px 0 72px; }
	.supporters-strip__header { grid-template-columns: 1fr; align-items: start; }
	.supporters-strip__stat { text-align: left; }
	.supporters-strip__stat-num { font-size: 56px; }
	.supporters-strip__headline { font-size: 26px; }
	.supporters-strip__band-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.supporters-strip__foot { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
	.supporters-strip__cell { transition: none; }
	.supporters-strip__cell:hover { transform: none; }
}


/* ── 8. Why-Haltefrist ─────────────────────────────────────── */
.why-haltefrist { background: var(--color-card); padding: 72px 0 80px; }
.why-haltefrist__grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; text-align: center; padding: 0; }
.why-haltefrist__icon { display: inline-flex; margin-bottom: 16px; }
.why-haltefrist__title { font-size: 20px; }
.why-haltefrist__desc { color: var(--color-text-muted); max-width: 32ch; margin-inline: auto; }
.why-haltefrist__cta { display: flex; justify-content: center; margin-top: 32px; }

/* ── 9. News cards ─────────────────────────────────────────── */
.news-cards { background: var(--color-cream); padding: 72px 0 80px; }
.news-cards__title { margin-bottom: 32px; }
.news-cards__layout { display: grid; gap: 40px; }
.news-cards__grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 0; }
.news-cards__grid--archive { grid-template-columns: repeat(3, 1fr); }
.news-cards__cta { display: flex; justify-content: center; }
.meldung-card { background: transparent; }
.meldung-card__media { display: block; aspect-ratio: 16 / 10; border-radius: var(--radius-md); overflow: hidden; background: var(--color-cream-strong); }
.meldung-card__image, .meldung-card__media img { width: 100%; height: 100%; object-fit: cover; }
.meldung-card__image-placeholder { width: 100%; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #ddd 0%, #eee 100%); display: block; }
.meldung-card__body { padding-top: 14px; }
.meldung-card__eyebrow { color: var(--color-orange); margin-bottom: 6px; }
.meldung-card__title {
	font-size: 17px;
	line-height: 1.35;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.meldung-card__title a { color: var(--color-ink); }
.meldung-card__teaser {
	color: var(--color-text-muted);
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 12px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.meldung-card__meta { color: var(--color-text-muted); font-size: 13px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; }
.meldung-card__category {
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.04em;
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--color-cream-strong);
	color: var(--color-ink);
}
.meldung-card__readmore { color: var(--color-orange); font-weight: 600; }
.meldung-card__sep { opacity: .6; }

/* ── 10. MP CTA ────────────────────────────────────────────── */
.mp-cta { background: var(--color-ink); color: #fff; padding: 56px 0; }
.mp-cta__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.mp-cta__headline { font-size: 28px; margin-bottom: 12px; }
.mp-cta__text { color: rgba(255,255,255,.78); max-width: 48ch; margin-bottom: 20px; }
.mp-cta__visual { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
.mp-cta__map { width: 160px; height: auto; }
.mp-cta__steps-intro { color: rgba(255,255,255,.85); margin-bottom: 8px; }
.mp-cta__steps-list { list-style: decimal inside; color: rgba(255,255,255,.85); padding: 0; margin: 0 0 12px; }
.mp-cta__steps-list li { margin-bottom: 4px; }
.mp-cta__help { color: var(--color-orange); font-weight: 600; }

/* ── 11. Petition + Donation row ───────────────────────────── */
.petition-donation { background: var(--color-card); padding: 56px 0; }
.petition-donation__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.card__title { font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-orange); margin-bottom: 12px; }
.card__body { display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.card--petition { background: var(--color-orange-tint); border-color: #F4D9AE; }
.card--petition .card__title { color: var(--color-orange); }
.petition-form { display: flex; gap: 8px; }
.petition-form input[type="email"] { flex: 1; min-width: 0; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--color-border); background: #fff; }
.petition-form input[type="email"]:focus-visible { outline-offset: 0; border-color: var(--color-orange); }
.card__note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-muted); margin-top: 8px; }
.card__note-icon { display: inline-flex; color: var(--color-text-muted); }
.card--donation { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 24px; align-items: center; }
.card--donation .card__title { color: var(--color-ink); }
.card__benefits { list-style: none; display: grid; gap: 10px; padding: 0; }
.card__benefits li { display: flex; align-items: center; gap: 8px; color: var(--color-text); }
.card--donation__qr { text-align: center; }
.card--donation__qr-title { font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-ink); margin-bottom: 12px; }
.card--donation__qr-frame { background: #fff; border: 1px solid var(--color-border-cool); border-radius: var(--radius-md); padding: 12px; display: inline-block; }
.card--donation__qr-placeholder { width: 220px; height: 220px; background-image: repeating-linear-gradient(45deg, #1F2937 0 6px, #fff 6px 12px); border-radius: var(--radius-sm); }
.card--donation__powered { font-size: 12px; color: var(--color-text-muted); margin-top: 8px; }

/* ── 11b. Media Kit page ───────────────────────────────────── */
.page-media-kit .page__header { margin-bottom: 40px; }
.media-kit__lede { font-size: 17px; color: var(--color-text-muted); margin-top: 12px; max-width: 64ch; }
.media-kit__section { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--color-border); }
.media-kit__section:first-of-type { border-top: 0; padding-top: 0; }
.media-kit__section > h2 { font-size: 28px; margin-bottom: 8px; }
.media-kit__section-lede { color: var(--color-text-muted); margin-bottom: 24px; }

.media-kit__logo-grid,
.media-kit__color-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.media-kit__logo { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column; }
.media-kit__logo-preview { display: flex; align-items: center; justify-content: center; min-height: 180px; padding: 32px; }
.media-kit__logo-preview img { max-height: 96px; width: auto; }
.media-kit__logo-preview--dark { background: var(--color-ink); }
.media-kit__logo-preview--light { background: var(--color-cream); border-bottom: 1px solid var(--color-border); }
.media-kit__logo-body { padding: 20px 22px 24px; }
.media-kit__logo-body h3 { font-size: 18px; margin-bottom: 4px; }
.media-kit__logo-body p { color: var(--color-text-muted); font-size: 14px; margin-bottom: 16px; }
.media-kit__downloads { display: flex; gap: 8px; flex-wrap: wrap; }

.media-kit__color { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; }
.media-kit__color-swatch { min-height: 140px; display: flex; align-items: flex-end; justify-content: flex-start; padding: 16px 20px; font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; font-size: 13px; letter-spacing: .04em; }
.media-kit__color-meta { padding: 16px 22px 20px; }
.media-kit__color-meta h3 { font-size: 18px; margin-bottom: 8px; }
.media-kit__color-meta dl { margin: 0; display: grid; gap: 4px; }
.media-kit__color-meta dl > div { display: grid; grid-template-columns: 64px 1fr; align-items: baseline; gap: 12px; }
.media-kit__color-meta dt { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--color-text-muted); }
.media-kit__color-meta dd { margin: 0; font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; font-size: 14px; color: var(--color-ink); }

.media-kit__type-list { list-style: none; padding: 0; display: grid; gap: 16px; margin: 0 0 24px; }
.media-kit__type-list li { display: flex; align-items: baseline; gap: 16px; padding: 14px 18px; background: var(--color-cream); border-radius: var(--radius-sm); }
.media-kit__type-sample { font-size: 22px; color: var(--color-ink); line-height: 1.2; }
.media-kit__type-meta { font-size: 12px; color: var(--color-text-muted); letter-spacing: .06em; text-transform: uppercase; margin-left: auto; }

.media-kit__quote { margin: 0 0 1em; padding: 16px 20px; border-left: 3px solid var(--color-orange); background: var(--color-cream); border-radius: 4px; }
.media-kit__quote p { margin: 0; font-size: 16px; }

@media (max-width: 720px) {
	.media-kit__logo-grid,
	.media-kit__color-grid { grid-template-columns: 1fr; }
	.media-kit__type-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
	.media-kit__type-meta { margin-left: 0; }
}

/* ── 12. FAQ row ───────────────────────────────────────────── */
.faq-row { background: var(--color-cream); padding: 56px 0 80px; }
.faq-row__grid { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; padding: 0; }
.faq-row__item { display: block; }
.faq-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 16px 18px; height: 100%; box-shadow: var(--shadow-card); }
.faq-card[open] { background: #fff; border-color: var(--color-orange); }
.faq-card__summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; font-weight: 600; color: var(--color-ink); }
.faq-card__summary::-webkit-details-marker { display: none; }
.faq-card__question { font-size: 14px; line-height: 1.35; }
.faq-card__chevron { color: var(--color-text-muted); transition: transform .2s; }
.faq-card[open] .faq-card__chevron { transform: rotate(180deg); color: var(--color-orange); }
.faq-card__answer { margin-top: 12px; font-size: 14px; color: var(--color-text); }

/* ── 13. Page + article ────────────────────────────────────── */
.page__header { margin-bottom: 32px; text-align: left; }
.page__title { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 8px; }
.page__content { font-size: 17px; }
.page__content p { line-height: 1.7; }
.page__content h2 { font-size: 26px; margin-top: 2em; }
.page__content h3 { font-size: 20px; margin-top: 1.5em; }
.page__content h4 { font-size: 16px; margin-top: 1.25em; margin-bottom: 4px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .04em; }
.page__content ul, .page__content ol { padding-left: 1.4em; margin-bottom: 1em; }
.page__content li { margin-bottom: 4px; }
.page__content blockquote { margin: 0 0 1em; padding: 16px 20px; border-left: 3px solid var(--color-orange); background: var(--color-cream); border-radius: 4px; }
.page__content blockquote p { margin: 0; }
.page__content blockquote p + p { margin-top: .5em; }
.page__content code { background: var(--color-cream-strong); padding: 2px 6px; border-radius: 3px; font-size: 0.95em; }

.article { padding: 0; }
.article__header { margin-bottom: 24px; }
.article__title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.article__meta { color: var(--color-text-muted); font-size: 14px; display: flex; gap: 8px; align-items: center; }
.article__media { margin: 0 0 24px; border-radius: var(--radius-md); overflow: hidden; }
.article__body { font-size: 17px; line-height: 1.7; }
.article__external { margin-top: 32px; }
.article__pagination { display: flex; justify-content: space-between; margin-top: 48px; gap: 16px; }
.article__pagination a { color: var(--color-orange); font-weight: 600; }

.archive-list { list-style: none; padding: 0; }
.archive-list li { padding: 12px 0; border-bottom: 1px solid var(--color-border-cool); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.archive-list a { font-weight: 600; color: var(--color-ink); }
.archive-list__date { color: var(--color-text-muted); font-size: 14px; }

/* Pagination — used by archive-meldung.php via the_posts_pagination(). */
.archive-meldungen .pagination { margin-top: 56px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 12px;
	border: 1px solid var(--color-border-cool); border-radius: 999px;
	background: var(--color-card); color: var(--color-ink);
	font-size: 14px; font-weight: 600; line-height: 1;
	transition: border-color .15s ease, background-color .15s ease, color .15s ease, transform .15s ease;
}
.pagination a.page-numbers:hover,
.pagination a.page-numbers:focus-visible {
	border-color: var(--color-orange);
	background: var(--color-orange-tint);
	color: var(--color-ink);
	text-decoration: none;
}
.pagination .page-numbers.current {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: var(--color-text-inverse);
}
.pagination .page-numbers.dots {
	border-color: transparent; background: transparent; color: var(--color-text-muted);
	letter-spacing: .1em;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next { padding: 0 16px; gap: 4px; }
.pagination .page-numbers.prev { margin-right: 4px; }
.pagination .page-numbers.next { margin-left: 4px; }

/* ── 14. Site footer ───────────────────────────────────────── */
.site-footer { background: var(--color-ink); color: rgba(255,255,255,.85); padding: 56px 0 48px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; }
.footer-grid__brand { display: flex; flex-direction: column; gap: 12px; max-width: 280px; }
.footer-grid__brand .site-branding__logo { height: 56px; }
.footer-grid__about { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-grid__initiator { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-grid__heading { font-size: 13px; letter-spacing: .14em; color: #fff; text-transform: uppercase; margin: 0 0 16px; }
.footer-grid__menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid__menu a { color: rgba(255,255,255,.78); font-size: 14px; }
.footer-grid__menu a:hover { color: var(--color-orange); text-decoration: none; }
.footer-grid__menu--secondary li { padding-left: 14px; position: relative; }
.footer-grid__menu--secondary li::before { content: "›"; position: absolute; left: 0; color: var(--color-orange); }

.footer-grid__social { list-style: none; padding: 0; margin: 0; display: flex; gap: 12px; }
.footer-grid__social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; transition: border-color .15s, background-color .15s; color: #fff; }
.footer-grid__social-link:hover { border-color: var(--color-orange); background: rgba(247,147,26,.08); }
.footer-grid__social-glyph { width: 16px; height: 16px; background: currentColor; -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: contain; mask-size: contain; display: inline-block; }
.footer-grid__social-glyph[data-platform="x"]        { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817-5.97 6.817H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231Zm-1.161 17.52h1.833L7.084 4.126H5.117Z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817-5.97 6.817H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231Zm-1.161 17.52h1.833L7.084 4.126H5.117Z'/></svg>"); }
.footer-grid__social-glyph[data-platform="linkedin"] { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20.45 20.45h-3.555v-5.57c0-1.328-.027-3.036-1.85-3.036-1.852 0-2.136 1.445-2.136 2.94v5.666H9.354V9h3.414v1.561h.047c.476-.9 1.637-1.85 3.37-1.85 3.602 0 4.265 2.37 4.265 5.456v6.283ZM5.337 7.433a2.062 2.062 0 1 1 0-4.125 2.062 2.062 0 0 1 0 4.125ZM7.119 20.45H3.554V9h3.565v11.45Z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20.45 20.45h-3.555v-5.57c0-1.328-.027-3.036-1.85-3.036-1.852 0-2.136 1.445-2.136 2.94v5.666H9.354V9h3.414v1.561h.047c.476-.9 1.637-1.85 3.37-1.85 3.602 0 4.265 2.37 4.265 5.456v6.283ZM5.337 7.433a2.062 2.062 0 1 1 0-4.125 2.062 2.062 0 0 1 0 4.125ZM7.119 20.45H3.554V9h3.565v11.45Z'/></svg>"); }
.footer-grid__social-glyph[data-platform="telegram"] { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z'/></svg>"); }
.footer-grid__social-glyph[data-platform="link"]     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M10.59 13.41a1 1 0 0 0 1.41 0l5-5a1 1 0 1 0-1.41-1.41l-5 5a1 1 0 0 0 0 1.41ZM7 17a3 3 0 0 1 0-4.24l3-3a3 3 0 0 1 4.24 0 1 1 0 0 1-1.41 1.41 1 1 0 0 0-1.42 0l-3 3a1 1 0 0 0 1.42 1.41 1 1 0 1 1 1.41 1.42A3 3 0 0 1 7 17Zm10-10a3 3 0 0 1 0 4.24l-3 3a3 3 0 0 1-4.24 0 1 1 0 1 1 1.41-1.41 1 1 0 0 0 1.42 0l3-3a1 1 0 1 0-1.42-1.41 1 1 0 1 1-1.41-1.42A3 3 0 0 1 17 7Z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M10.59 13.41a1 1 0 0 0 1.41 0l5-5a1 1 0 1 0-1.41-1.41l-5 5a1 1 0 0 0 0 1.41ZM7 17a3 3 0 0 1 0-4.24l3-3a3 3 0 0 1 4.24 0 1 1 0 0 1-1.41 1.41 1 1 0 0 0-1.42 0l-3 3a1 1 0 0 0 1.42 1.41 1 1 0 1 1 1.41 1.42A3 3 0 0 1 7 17Zm10-10a3 3 0 0 1 0 4.24l-3 3a3 3 0 0 1-4.24 0 1 1 0 1 1 1.41-1.41 1 1 0 0 0 1.42 0l3-3a1 1 0 1 0-1.42-1.41 1 1 0 1 1-1.41-1.42A3 3 0 0 1 17 7Z'/></svg>"); }

/* ── 15. Page-specific: Unterstützer & FAQ overflow tweaks ── */
.supporter-group { padding: 32px 0; border-bottom: 1px solid var(--color-border-cool); }
.supporter-group__heading { text-align: left; margin-bottom: 16px; }
.supporter-group__logos {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(0, 150px));
	gap: 16px;
}
.supporter-group__logo {
	display: flex;
	aspect-ratio: 1 / 1;
	background: var(--color-card);
	border: 1px solid var(--color-cream-strong);
	border-radius: var(--radius-md);
}
.supporter-group__logo > a,
.supporter-group__logo > a:hover,
.supporter-group__logo > a:focus,
.supporter-group__logo > a:focus-visible {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	width: 100%; height: 100%;
	padding: 14px;
	gap: 10px;
	text-decoration: none !important;
	color: inherit;
}
.supporter-group__logo-media {
	display: flex; align-items: center; justify-content: center;
	flex: 1;
	width: 100%;
	min-height: 0;
}
.supporter-group__logos img {
	max-height: 100%;
	max-width: 100%;
	width: auto; height: auto;
	object-fit: contain;
}
.supporter-group__logos img[src*=".svg"] { max-height: 100%; max-width: 100%; height: auto; width: auto; }
.supporter-group__logo-name {
	display: block;
	font-size: 11px;
	font-weight: 500;
	color: var(--color-text-muted);
	text-align: center;
	line-height: 1.3;
	word-break: break-word;
	text-decoration: none;
}
.page-mp__external { margin-top: 32px; }

/* ── 16. Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
	.faq-row__grid { grid-template-columns: repeat(3, 1fr); }
	.footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
	.news-cards__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
	.news-cards__grid { grid-template-columns: repeat(2, 1fr); }
	.mp-cta__inner { grid-template-columns: 1fr; }
	.mp-cta__visual { grid-template-columns: auto 1fr; }
	.petition-donation__grid { grid-template-columns: 1fr; }
	.card--donation { grid-template-columns: 1fr; }
	.why-haltefrist__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.primary-nav { gap: 12px; }
	.primary-nav__toggle { display: inline-flex; align-items: center; justify-content: center; order: 2; }
	.primary-nav__cta { order: 1; }
	.primary-nav__list { position: absolute; top: 100%; right: 0; left: auto; min-width: 260px; background: var(--color-ink); padding: 16px var(--gutter); flex-direction: column; align-items: stretch; gap: 4px; display: none; border-radius: 0 0 var(--radius-md) var(--radius-md); order: 3; }
	.primary-nav__list a { color: #fff; }
	.primary-nav.is-open .primary-nav__list { display: flex; }

	/* Mobile: submenu renders inline as an accordion, not as a desktop popover. */
	.primary-nav__list .sub-menu {
		position: static; background: transparent; border: 0; box-shadow: none; padding: 4px 0 4px 12px;
		min-width: 0; color: #fff;
		opacity: 1; visibility: visible; transform: none; transition: none;
		display: none;
	}
	.primary-nav__list .menu-item-has-children.is-open > .sub-menu { display: flex; }
	.primary-nav__list .sub-menu::before { content: none; }
	.primary-nav__list .sub-menu a { color: rgba(255,255,255,.85); font-weight: 500; padding: 6px 8px; }
	.primary-nav__list .sub-menu a:hover,
	.primary-nav__list .sub-menu a:focus-visible { background: rgba(255,255,255,.06); color: #fff; }
	/* Disable desktop hover/focus reveal on mobile — accordion is click-driven only. */
	.primary-nav__list .menu-item-has-children:hover > .sub-menu,
	.primary-nav__list .menu-item-has-children:focus-within > .sub-menu { display: none; }
	.primary-nav__list .menu-item-has-children.is-open > .sub-menu { display: flex; }
	.news-cards__grid { grid-template-columns: 1fr; }
	.faq-row__grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.site-main--front .hero { margin-top: -88px; }
	.hero { padding: calc(88px + 32px) 0 64px; }
	.site-main:not(.site-main--front) { padding: 48px 0 64px; }
	.pagination .nav-links { gap: 6px; }
	.pagination .page-numbers { min-width: 36px; height: 36px; padding: 0 10px; font-size: 13px; }
	.pagination .page-numbers.prev,
	.pagination .page-numbers.next { padding: 0 12px; }
}
