/* ==========================================================================
   KRATOS PURMEREND — main stylesheet
   Mobile-first. Breakpoints: 375 / 768 / 1200.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Design tokens (CSS custom properties)
   -------------------------------------------------------------------------- */
:root {
	/* Palette */
	--color-primary: #061e40;        /* navy — exact logo color */
	--color-primary-dark: #03122a;
	--color-primary-light: #0e2f5a;
	--color-accent: #d6a11a;         /* gold */
	--color-accent-dark: #b3871a;
	--color-accent-soft: #efd070;
	--color-text: #1c1f26;
	--color-text-soft: #5b6470;
	--color-muted: #8a93a2;
	--color-bg: #ffffff;
	--color-bg-alt: #f6f5f1;         /* warm off-white panels */
	--color-card-bg: #ffffff;
	--color-border: #e5e3dd;
	--color-border-strong: #cdcac1;

	/* Badge colors — motie status */
	--color-badge-aangenomen: #2e7d4f;
	--color-badge-verworpen: #b7343a;
	--color-badge-ingetrokken: #6b6b6b;
	--color-badge-in-behandeling: #c78a1a;
	--color-badge-aangehouden: #5c78a8;

	/* Typography */
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;

	/* Sizing */
	--container: 1200px;
	--radius: 2px;
	--radius-lg: 4px;
	--shadow-sm: 0 1px 2px rgba(12, 23, 48, .06);
	--shadow-md: 0 4px 18px rgba(12, 23, 48, .08);

	/* Transitions */
	--ease: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------------------
   1. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.55;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--color-accent-dark); }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; margin: 0 0 .5em; color: var(--color-text); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; padding: .5em 1em; background: var(--color-accent); color: var(--color-primary); z-index: 100; font-weight: 700;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.is-muted { color: var(--color-muted); }

/* --------------------------------------------------------------------------
   2. Header — navy brand bar (logo left · social + search right)
   -------------------------------------------------------------------------- */
/* ── Blauwe header: logo links · nav + social rechts ── */
.site-header {
	background: var(--color-primary);
	color: #fff;
	position: relative;
	z-index: 50;
}
.site-header__inner {
	display: flex;
	align-items: stretch;
	padding: 0 20px;
	min-height: 90px;
}

/* Brand / logo */
.site-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
	padding: 10px 20px 10px 0;
}
.site-brand__img {
	display: block;
	height: 70px;
	width: auto;
	max-width: 320px;
	object-fit: contain;
}
@media (min-width: 768px) { .site-brand__img { height: 78px; } }

/* Rechterkolom: social bovenin, nav onderin */
.site-header__right {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: space-between;
	align-items: flex-end;
	padding: 10px 0;
}

/* Bovenste rij: social + zoekbalk (+ hamburger mobiel) */
.site-header__top-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* Social icons — goud op blauwe header */
.site-social {
	display: flex;
	align-items: center;
	gap: 14px;
}
.site-social__link {
	color: var(--color-accent);
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px;
	transition: color .15s var(--ease);
}
.site-social__link:hover { color: #fff; }

/* Zoekbalk inline */
.site-search-inline {
	display: flex;
	align-items: center;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: var(--radius);
	overflow: hidden;
	height: 30px;
}
.site-search-inline__icon { color: var(--color-accent); margin: 0 7px; flex-shrink: 0; }
.site-search-inline input {
	background: transparent; border: 0;
	color: #fff; font: inherit; font-size: 13px;
	padding: 0 6px; width: 140px; outline: none;
}
.site-search-inline input::placeholder { color: rgba(255,255,255,.5); }
.site-search-inline button {
	background: var(--color-accent); border: 0;
	color: var(--color-primary); padding: 0 10px;
	height: 30px; font-weight: 700; font-size: 14px;
	cursor: pointer; flex-shrink: 0;
	transition: background .15s var(--ease);
}
.site-search-inline button:hover { background: var(--color-accent-dark); }

/* Nav toggle (hamburger — mobiel) */
.nav-toggle {
	background: transparent; border: 0;
	width: 36px; height: 36px;
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	padding: 6px; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: transform .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav — in de header, onderaan rechterkolom */
.site-nav { display: flex; align-items: flex-end; }
.site-nav__list {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: row; gap: 0;
}
.site-nav__list li { border: 0; }
.site-nav__list a {
	display: block;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 8px 16px;
	text-transform: uppercase;
	transition: color .15s var(--ease);
	position: relative;
}
.site-nav__list a:hover { color: var(--color-accent); }
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a { color: var(--color-accent); }
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after {
	content: "";
	position: absolute;
	left: 16px; right: 16px; bottom: 0;
	height: 2px; background: var(--color-accent);
}

/* Mobiel: social + zoek verbergen, hamburger tonen */
@media (max-width: 1023px) {
	.site-header__inner { flex-wrap: wrap; align-items: center; min-height: auto; padding: 12px 20px; }
	.site-brand { padding: 0; }
	.site-header__right { flex-direction: row; align-items: center; padding: 0; flex: 1; justify-content: flex-end; }
	.site-header__top-row { gap: 0; }
	.site-social { display: none; }
	.site-search-inline { display: none; }
	.nav-toggle { display: inline-flex; }
	.site-nav {
		display: none;
		width: 100%;
		order: 3;
	}
	.site-nav.is-open { display: block; }
	.site-nav__list { flex-direction: column; }
	.site-nav__list li { border-top: 1px solid rgba(255,255,255,.1); }
	.site-nav__list a { padding: 12px 4px; }
}

/* Nav-balk eronder: niet meer gebruikt, verborgen houden */
.site-nav-bar { display: none !important; }

/* --------------------------------------------------------------------------
   3. Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	background: var(--color-primary-dark);
	color: #fff;
	overflow: hidden;
	min-height: 360px;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--placeholder {
	background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
	width: 100%; height: 100%;
}
.hero__gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to right, rgba(12,23,48,.85) 0%, rgba(12,23,48,.55) 50%, rgba(12,23,48,.15) 100%);
}
.hero__inner {
	position: relative;
	padding: 44px 20px 48px;
	max-width: 1200px;
}
.hero__kicker {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .25em;
	color: var(--color-accent);
	margin-bottom: 14px;
	text-transform: uppercase;
}
.hero__title {
	font-size: clamp(28px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.05;
	margin: 0 0 16px;
	max-width: 620px;
}
.hero__title a { color: #fff; }
.hero__title a:hover { color: var(--color-accent-soft); }
.hero__excerpt {
	font-size: 16px;
	line-height: 1.55;
	max-width: 460px;
	color: rgba(255,255,255,.88);
	margin: 0 0 24px;
}
@media (min-width: 768px) {
	.hero { min-height: 460px; }
	.hero__inner { padding: 72px 20px 88px; }
}
@media (min-width: 1200px) {
	.hero { min-height: 520px; }
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.btn--primary { background: var(--color-accent); color: var(--color-primary); }
.btn--primary:hover { background: var(--color-accent-dark); color: var(--color-primary); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn--sm { padding: 10px 16px; font-size: 11px; }
.btn--block { width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   5. Sections / section head
   -------------------------------------------------------------------------- */
.section { padding-top: 48px; padding-bottom: 48px; }
.news-section { padding-top: 56px; padding-bottom: 56px; }

.section-head {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	gap: 16px;
}
.section-head__title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .2em;
	color: var(--color-primary);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;           /* neemt alle ruimte — rule vult de rest */
	white-space: nowrap;
}
.section-head__rule {
	display: block;
	height: 2px;
	flex: 1;           /* strekt zich uit tussen titel-tekst en link */
	min-width: 20px;
	background: var(--color-accent);
}
.section-head__link {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	color: var(--color-accent-dark);
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}
.section-head__link:hover { color: var(--color-primary); }

/* --------------------------------------------------------------------------
   6. Front-page grid layout
   -------------------------------------------------------------------------- */
.news-section__grid {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
	.news-section__grid {
		grid-template-columns: 1fr 280px;
		gap: 48px;
	}
}

/* --------------------------------------------------------------------------
   7. Card grid
   -------------------------------------------------------------------------- */
.card-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.card-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
	background: var(--color-card-bg);
	display: flex;
	flex-direction: column;
	transition: transform .2s var(--ease);
}
.card:hover { transform: translateY(-3px); }
.card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--color-border);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card__media img { transform: scale(1.03); }
.card__placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}
.card__body { padding: 14px 0 0; }
.card__date {
	display: block;
	font-size: 11px;
	letter-spacing: .2em;
	font-weight: 600;
	color: var(--color-text-soft);
	margin-bottom: 8px;
	text-transform: uppercase;
}
.card__title {
	font-size: 19px;
	line-height: 1.25;
	margin: 0 0 8px;
	font-weight: 700;
}
.card__title a { color: var(--color-text); }
.card__title a:hover { color: var(--color-accent-dark); }
.card__excerpt { font-size: 14px; color: var(--color-text-soft); margin: 0; }
.card__topic {
	display: inline-block;
	font-size: 10px;
	letter-spacing: .22em;
	font-weight: 700;
	color: var(--color-accent-dark);
	margin-top: 4px;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   8. Promo (podcast + newsletter)
   -------------------------------------------------------------------------- */
.news-section__side {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.promo {
	padding: 24px;
	border-radius: var(--radius);
}
.promo--podcast {
	background: var(--color-primary);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.promo--podcast .promo__kicker {
	display: inline-block;
	font-size: 10px;
	letter-spacing: .28em;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 8px;
	text-transform: uppercase;
}
.promo--podcast .promo__title {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: .02em;
	margin: 0 0 12px;
	color: #fff;
}
.promo--podcast .promo__icon {
	position: absolute;
	top: 20px; right: 20px;
	color: var(--color-accent);
	opacity: .9;
}
.promo--podcast .promo__copy {
	font-size: 13px;
	color: rgba(255,255,255,.85);
	margin-bottom: 18px;
	max-width: 180px;
}

.promo--newsletter {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
}
.promo--newsletter .promo__title {
	font-size: 14px;
	letter-spacing: .2em;
	color: var(--color-primary);
	margin: 0 0 8px;
}
.promo--newsletter .promo__copy { font-size: 13px; color: var(--color-text-soft); margin-bottom: 14px; }

.newsletter {
	display: flex;
	gap: 0;
	border: 1px solid var(--color-border-strong);
	background: #fff;
}
.newsletter input {
	flex: 1;
	border: 0;
	padding: 10px 12px;
	font: inherit;
	font-size: 14px;
	background: transparent;
}
.newsletter input:focus { outline: none; }
.newsletter button {
	background: var(--color-accent);
	border: 0;
	color: var(--color-primary);
	padding: 0 16px;
	font-size: 16px;
	font-weight: 700;
}
.newsletter button:hover { background: var(--color-accent-dark); }

/* --------------------------------------------------------------------------
   9. Page lede (generic page header)
   -------------------------------------------------------------------------- */
.page-lede {
	background: var(--color-bg-alt);
	padding: 48px 0 32px;
	border-bottom: 1px solid var(--color-border);
}
.page-lede__title {
	font-size: clamp(28px, 4vw, 40px);
	color: var(--color-primary);
	margin: 0 0 10px;
}
.page-lede__desc {
	color: var(--color-text-soft);
	max-width: 640px;
	font-size: 16px;
}

/* --------------------------------------------------------------------------
   10. Article / single
   -------------------------------------------------------------------------- */
.article__header {
	background: var(--color-bg);
	padding: 44px 0 28px;
}
.article__header-inner { max-width: 820px; margin: 0 auto; }
.article__topic {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .22em;
	font-weight: 700;
	color: var(--color-accent-dark);
	margin-bottom: 12px;
	text-transform: uppercase;
}
.article__title {
	font-size: clamp(28px, 4.2vw, 44px);
	line-height: 1.15;
	margin: 0 0 16px;
	color: var(--color-primary);
}
.article__lede {
	font-family: var(--font-serif);
	font-size: 19px;
	line-height: 1.55;
	color: var(--color-text-soft);
	margin-bottom: 18px;
}
.article__meta {
	font-size: 13px;
	color: var(--color-text-soft);
}
.article__meta .sep { margin: 0 6px; color: var(--color-muted); }

.article__hero {
	margin: 0 auto;
	max-width: 820px;      /* zelfde breedte als artikel-body */
	padding: 0 20px;       /* zelfde zijmarges als de body */
}
.article__hero img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	display: block;
}
.article__hero figcaption {
	margin-top: 6px;
	font-size: 12px;
	color: var(--color-text-soft);
}

.article__body {
	max-width: 820px;
	padding: 40px 20px 24px;
}
.article__tags {
	padding-top: 20px;
	border-top: 1px solid var(--color-border);
	font-size: 13px;
	color: var(--color-text-soft);
}
.article__tags .label {
	font-weight: 700;
	color: var(--color-primary);
	margin-right: 6px;
	margin-left: 12px;
}
.article__tags .label:first-child { margin-left: 0; }

/* Prose body */
.prose {
	font-family: var(--font-serif);
	font-size: 18px;
	line-height: 1.7;
	color: var(--color-text);
}
.prose p, .prose ul, .prose ol, .prose blockquote, .prose pre { margin: 0 0 1.2em; }
.prose h2 {
	font-family: var(--font-sans);
	font-size: 26px;
	margin: 1.8em 0 .6em;
	color: var(--color-primary);
}
.prose h3 {
	font-family: var(--font-sans);
	font-size: 20px;
	margin: 1.4em 0 .4em;
	color: var(--color-primary);
}
.prose a { color: var(--color-accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--color-primary); }
.prose blockquote {
	border-left: 3px solid var(--color-accent);
	padding: 6px 0 6px 20px;
	color: var(--color-text-soft);
	font-style: italic;
}
.prose img { margin: 1.5em 0; }
.prose ul, .prose ol { padding-left: 1.3em; }

/* Chips/tags inside meta */
.kratos-chip, .kratos-tag {
	display: inline-block;
	padding: 3px 9px;
	margin-right: 4px;
	border-radius: 20px;
	font-size: 12px;
	font-family: var(--font-sans);
	font-style: normal;
}
.kratos-chip { background: var(--color-primary); color: #fff; }
.kratos-tag { background: var(--color-bg-alt); color: var(--color-text); border: 1px solid var(--color-border); }

/* --------------------------------------------------------------------------
   11. Profile (raadslid)
   -------------------------------------------------------------------------- */
.profile-card {
	background: var(--color-card-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.profile-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.profile-card__media {
	display: block;
	aspect-ratio: 4 / 5;
	background: var(--color-border);
	overflow: hidden;
}
.profile-card__media img { width: 100%; height: 100%; object-fit: cover; }
.profile-card__placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}
.profile-card__placeholder--lg { aspect-ratio: 1 / 1; }
.profile-card__body { padding: 14px 16px 18px; }
.profile-card__name { font-size: 17px; margin: 0 0 4px; }
.profile-card__name a { color: var(--color-text); }
.profile-card__name a:hover { color: var(--color-accent-dark); }
.profile-card__meta { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-accent-dark); margin-bottom: 4px; }
.profile-card__role { display: block; font-size: 13px; color: var(--color-text-soft); }
.profile-card__period { display: block; font-size: 12px; color: var(--color-muted); margin-top: 2px; }

.profile { padding: 40px 0; }
.profile__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 900px) {
	.profile__grid { grid-template-columns: 320px 1fr; }
}
.profile__media {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--color-border);
}
.profile__media img { width: 100%; height: 100%; object-fit: cover; }
.profile__party {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .22em;
	color: var(--color-accent-dark);
	margin-bottom: 8px;
	text-transform: uppercase;
}
.profile__name { font-size: clamp(26px, 3vw, 36px); color: var(--color-primary); margin: 0 0 4px; }
.profile__role { font-size: 16px; color: var(--color-text-soft); margin-bottom: 16px; }
.profile__facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 24px;
	padding: 18px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	margin: 0 0 20px;
}
.profile__facts div { display: flex; flex-direction: column; gap: 2px; }
.profile__facts dt { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--color-muted); font-weight: 700; }
.profile__facts dd { margin: 0; font-size: 14px; color: var(--color-text); }
.profile__bio { font-size: 17px; }

/* --------------------------------------------------------------------------
   12. Moties (list + detail)
   -------------------------------------------------------------------------- */
.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 24px;
	padding-bottom: 8px;
}
.filter-bar--double { flex-direction: column; gap: 12px; padding-bottom: 16px; }
.filter-bar__row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-bar__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--color-text-soft);
	margin-right: 6px;
}
.filter-bar__chip {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	background: var(--color-bg-alt);
	color: var(--color-text);
	border: 1px solid var(--color-border);
}
.filter-bar__chip:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.filter-bar__chip.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Motie table */
.motie-table {
	border-top: 2px solid var(--color-primary);
	border-bottom: 1px solid var(--color-border);
	background: #fff;
}
.motie-table__head {
	display: none;
	grid-template-columns: 3fr 1.2fr 1fr .8fr;
	padding: 12px 16px;
	background: var(--color-bg-alt);
	font-size: 11px;
	letter-spacing: .15em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color-text-soft);
	border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) { .motie-table__head { display: grid; } }
.motie-table__row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	padding: 16px;
	border-bottom: 1px solid var(--color-border);
	align-items: center;
}
@media (min-width: 768px) {
	.motie-table__row { grid-template-columns: 3fr 1.2fr 1fr .8fr; gap: 16px; }
}
.motie-table__title { color: var(--color-text); }
.motie-table__title span { display: block; font-weight: 700; font-size: 15px; }
.motie-table__title:hover span { color: var(--color-accent-dark); }
.motie-table__excerpt { display: block; font-size: 13px; color: var(--color-text-soft); margin-top: 4px; line-height: 1.4; }
.motie-table__indiener,
.motie-table__datum { font-size: 13px; color: var(--color-text-soft); }
.motie-table__status { text-align: right; }
.is-hide-sm { display: none; }
@media (min-width: 768px) { .is-hide-sm { display: block; } }

/* Motie list compact variant (on raadslid page) */
.motie-list { list-style: none; padding: 0; margin: 0; }
.motie-list__row {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--color-border);
	align-items: center;
}
.motie-list__title { font-weight: 600; }
.motie-list__date { font-size: 13px; color: var(--color-text-soft); }

/* Badges */
.badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-radius: 20px;
	color: #fff;
	background: var(--color-muted);
	white-space: nowrap;
}
.badge--lg { padding: 8px 16px; font-size: 13px; }
.badge--aangenomen      { background: var(--color-badge-aangenomen); }
.badge--verworpen        { background: var(--color-badge-verworpen); }
.badge--ingetrokken      { background: var(--color-badge-ingetrokken); }
.badge--in-behandeling   { background: var(--color-badge-in-behandeling); }
.badge--aangehouden      { background: var(--color-badge-aangehouden); }

/* Motie single */
.motie__header {
	background: var(--color-bg-alt);
	padding: 36px 0;
	border-bottom: 1px solid var(--color-border);
}
.motie__kicker {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .25em;
	font-weight: 700;
	color: var(--color-accent-dark);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.motie__title {
	font-size: clamp(24px, 3.4vw, 36px);
	color: var(--color-primary);
	margin: 0 0 14px;
	max-width: 900px;
}
.motie__grid {
	display: grid;
	gap: 36px;
	grid-template-columns: 1fr;
	padding: 40px 20px;
}
@media (min-width: 900px) { .motie__grid { grid-template-columns: 260px 1fr; } }
.motie__facts {
	background: var(--color-bg-alt);
	padding: 20px;
	border-radius: var(--radius);
	font-size: 14px;
}
.motie__facts dl { margin: 0; }
.motie__facts div { padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.motie__facts div:last-child { border-bottom: 0; }
.motie__facts dt { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--color-muted); font-weight: 700; margin-bottom: 3px; }
.motie__facts dd { margin: 0; color: var(--color-text); }
.motie__facts .btn { margin-top: 16px; }
.motie__body { font-size: 17px; }

/* --------------------------------------------------------------------------
   13. Pagination
   -------------------------------------------------------------------------- */
.pagination {
	display: flex; flex-wrap: wrap; gap: 6px;
	margin-top: 32px;
	justify-content: center;
}
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; padding: 0 12px;
	border: 1px solid var(--color-border);
	font-size: 14px; font-weight: 600;
	color: var(--color-text);
	background: #fff;
	text-decoration: none;
}
.pagination .page-numbers.current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination .page-numbers:hover { background: var(--color-bg-alt); }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--color-primary-dark);
	color: rgba(255,255,255,.75);
	padding: 44px 0 28px;
	margin-top: 60px;
}
.site-footer__inner {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.site-footer__inner { grid-template-columns: 1.2fr 1fr 1fr; }
}
.site-footer__brand { }

/* Footer logo */
.site-footer__logo {
	display: inline-block;
	line-height: 0;
	background: #fff;
	border-radius: 4px;
	padding: 10px 14px;
}
.site-footer__logo-img {
	display: block;
	height: 52px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}
.site-footer__logo:hover { opacity: .9; }

.site-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__list a { color: rgba(255,255,255,.85); font-size: 14px; }
.site-footer__list a:hover { color: var(--color-accent); }
.site-footer__meta p { margin: 0 0 6px; font-size: 13px; color: rgba(255,255,255,.55); }

/* --------------------------------------------------------------------------
   15. Moties & Raadsleden sectie
   -------------------------------------------------------------------------- */
.news-section__grid--full {
	display: block;
}

.motie-raadslid-grid {
	display: grid;
	gap: 48px;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.motie-raadslid-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Raadslid list */
.raadslid-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.raadslid-list__item {
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 20px;
}
.raadslid-list__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.raadslid-list__profile {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 10px;
}
.raadslid-list__avatar {
	flex-shrink: 0;
	display: block;
	width: 52px;
	height: 52px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--color-border);
}
.raadslid-list__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.raadslid-list__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.raadslid-list__name {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}
.raadslid-list__name a { color: var(--color-text); }
.raadslid-list__name a:hover { color: var(--color-accent-dark); }
.raadslid-list__party {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--color-accent-dark);
}
.raadslid-list__role {
	font-size: 12px;
	color: var(--color-text-soft);
}
.raadslid-list__articles {
	list-style: none;
	padding: 0 0 0 64px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.raadslid-list__articles li::before {
	content: "→ ";
	color: var(--color-accent);
	font-weight: 700;
	font-size: 11px;
}
.raadslid-list__articles a {
	font-size: 13px;
	color: var(--color-text-soft);
}
.raadslid-list__articles a:hover {
	color: var(--color-accent-dark);
}
.profile-card__placeholder--sm {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

/* --------------------------------------------------------------------------
   16. Utility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
}
