/* ==========================================================================
   Stemkracht: rood-geel straatposterstijl voor participatiecampagnes.
   Eén opvallend element per scherm: de campagnekop. De rest is rustig.
   ========================================================================== */

:root {
	--sk-red: var(--wp--preset--color--rood, #E30613);
	--sk-red-deep: var(--wp--preset--color--rood-diep, #9C0A10);
	--sk-yellow: var(--wp--preset--color--geel, #FFD200);
	--sk-ink: #000;
	--sk-paper: #fff;
	--sk-mist: var(--wp--preset--color--mist, #F2F1EE);
	--sk-font: var(--wp--preset--font-family--poppins, Poppins, "Arial Black", Arial, sans-serif);
	--sk-wide: 1280px;
	--sk-gutter: clamp(1rem, 4vw, 2.5rem);
	--sk-radius-card: 10px;
	--sk-radius-panel: 16px;
	--sk-focus: 0 0 0 3px var(--sk-paper), 0 0 0 6px var(--sk-ink);
}

/* Kleurschema's per campagne ------------------------------------------------ */
.sk-scheme-rood   { --bg: var(--sk-red);    --bg-deep: var(--sk-red-deep); --fg: #fff; --hl: var(--sk-yellow); --hl-shadow: var(--sk-red-deep); --bubble-fg: var(--sk-red); }
.sk-scheme-donker { --bg: #000;             --bg-deep: #2a2a2a;            --fg: #fff; --hl: var(--sk-yellow); --hl-shadow: #3a3a3a;         --bubble-fg: #000; }
.sk-scheme-geel   { --bg: var(--sk-yellow); --bg-deep: #E0B400;            --fg: #000; --hl: var(--sk-red);    --hl-shadow: #000;            --bubble-fg: var(--sk-red); }

/* Basis ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body { margin: 0; font-family: var(--sk-font); color: var(--sk-ink); background: var(--sk-paper); line-height: 1.6; text-rendering: optimizeLegibility; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible { outline: none; box-shadow: var(--sk-focus); border-radius: 4px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.sk-skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--sk-yellow); color: var(--sk-ink); padding: .75rem 1rem; font-weight: 800; }
.sk-skip:focus { top: 1rem; }
.sk-main:focus { outline: none; }

/* Knoppen --------------------------------------------------------------------- */
.sk-btn, .skc-button, .wp-element-button {
	display: inline-flex; align-items: center; gap: .5em;
	background: var(--sk-yellow); color: var(--sk-ink);
	font: 800 1.0625rem/1 var(--sk-font);
	padding: .9em 1.5em; border: 0; border-radius: 999px;
	text-decoration: none; cursor: pointer;
	box-shadow: 0 3px 0 rgba(0,0,0,.35);
	transition: transform .12s ease, box-shadow .12s ease;
}
.sk-btn:hover, .skc-button:hover { transform: translateY(-1px); box-shadow: 0 4px 0 rgba(0,0,0,.35); }
.sk-btn:active, .skc-button:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(0,0,0,.35); }
.sk-btn .sk-icon { width: 1.1em; height: 1.1em; }
.sk-btn--small { font-size: .9375rem; padding: .7em 1.2em; }
.sk-btn--outline, .skc-button--ghost { background: transparent; box-shadow: inset 0 0 0 2.5px currentColor; color: inherit; }
.skc-button[disabled] { opacity: .6; cursor: progress; }

/* Kop ------------------------------------------------------------------------- */
.sk-header { position: sticky; top: 0; z-index: 50; background: var(--sk-paper); border-bottom: 4px solid var(--sk-red); }
.admin-bar .sk-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .sk-header { top: 0; position: relative; } }
.sk-header__inner { max-width: var(--sk-wide); margin: 0 auto; padding: .75rem var(--sk-gutter); display: flex; align-items: center; gap: 1.5rem; }
.sk-brand { margin-right: auto; }
.sk-brand__name { font-weight: 900; font-size: 1.375rem; text-decoration: none; text-transform: uppercase; letter-spacing: -.01em; }
.sk-brand img { max-height: 52px; width: auto; }
.sk-nav { display: flex; align-items: center; gap: 1.5rem; }
.sk-nav__list { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.sk-nav__list a { font-weight: 600; text-decoration: none; padding: .25rem 0; border-bottom: 3px solid transparent; }
.sk-nav__list a:hover, .sk-nav__list .current-menu-item > a { border-color: var(--sk-red); }
.sk-nav-toggle { display: none; align-items: center; gap: .4rem; background: none; border: 2px solid var(--sk-ink); border-radius: 999px; padding: .45rem .9rem; font: 700 .9375rem var(--sk-font); cursor: pointer; }
.sk-nav-toggle .sk-icon { width: 1.2rem; height: 1.2rem; }
@media (max-width: 860px) {
	.sk-nav-toggle { display: inline-flex; }
	.sk-nav { position: absolute; inset: 100% 0 auto; background: var(--sk-paper); flex-direction: column; align-items: stretch; padding: 1rem var(--sk-gutter) 1.5rem; border-bottom: 4px solid var(--sk-red); display: none; }
	.sk-nav.is-open { display: flex; }
	.sk-nav__list { flex-direction: column; gap: 0; }
	.sk-nav__list a { display: block; padding: .8rem 0; border-bottom: 1px solid #ddd; font-size: 1.125rem; }
	.sk-nav .sk-btn { justify-content: center; }
}

/* Gedeelde campagne-onderdelen ------------------------------------------------ */
.sk-bubble {
	position: relative; display: inline-block; margin: 0 0 1.25rem;
	background: #fff; color: var(--bubble-fg, var(--sk-red));
	font-weight: 800; font-size: clamp(1.125rem, 2vw, 1.5rem); line-height: 1;
	padding: .55em .9em; border-radius: .6em;
	box-shadow: 0 4px 0 rgba(0,0,0,.18);
}
.sk-bubble::after { content: ""; position: absolute; left: 1.1em; bottom: -.5em; border: .5em solid transparent; border-top-color: #fff; border-bottom: 0; border-left-width: .15em; }

.sk-title { margin: 0; font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: -.02em; }
.sk-title__line { display: block; color: var(--fg); font-size: clamp(2.1rem, 4.5vw, 3.9rem); }
.sk-title__hl {
	display: block; color: var(--hl); font-size: clamp(2.7rem, 6vw, 4.9rem);
	text-shadow: .045em .05em 0 var(--hl-shadow);
	hyphens: manual; overflow-wrap: break-word;
}

.sk-teasers { list-style: none; margin: 0; padding: 0; counter-reset: teaser; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .75rem; }
.sk-teaser {
	counter-increment: teaser; display: flex; align-items: center; gap: .75rem;
	background: #fff; color: var(--sk-ink); border-radius: var(--sk-radius-card);
	padding: .8rem 1rem; font-weight: 600; font-size: .9375rem; line-height: 1.3;
	box-shadow: 0 4px 0 rgba(0,0,0,.2);
}
.sk-teaser::before {
	content: counter(teaser); flex: none; display: grid; place-items: center;
	width: 2.1rem; height: 2.1rem; border-radius: 50%;
	background: var(--sk-red); color: #fff; font-weight: 900; font-size: 1.05rem;
}
.sk-scheme-donker .sk-teaser::before { background: var(--sk-ink); box-shadow: inset 0 0 0 2px var(--sk-yellow); }

.sk-sticker {
	position: absolute; top: -1.6rem; right: -1rem; z-index: 2;
	display: grid; place-items: center; text-align: center;
	width: 3.9rem; height: 3.9rem; border-radius: 50%;
	background: var(--sk-yellow); color: var(--sk-red); border: 3px solid #fff;
	font-weight: 900; font-size: .8rem; line-height: 1; text-transform: uppercase;
	transform: rotate(12deg); padding: .3rem;
	box-shadow: 0 3px 0 rgba(0,0,0,.25);
}

.sk-skyline { position: absolute; left: 0; bottom: 0; width: 55%; height: 38%; pointer-events: none; }
.sk-skyline__city { fill: var(--bg-deep, var(--sk-red-deep)); }
.sk-skyline__windows { fill: var(--hl, var(--sk-yellow)); opacity: .55; }

/* Hero ------------------------------------------------------------------------ */
.sk-hero { position: relative; overflow: hidden; background: var(--bg); color: var(--fg); isolation: isolate; }
.sk-hero__skyline { z-index: -1; opacity: .9; }
.sk-hero__media { position: absolute; inset: 0 0 0 auto; width: 58%; margin: 0; z-index: -1; }
.sk-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 20%; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28%); mask-image: linear-gradient(90deg, transparent 0, #000 28%); }
.sk-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg) 0, transparent 30%); opacity: .6; }
.sk-hero__sign { position: absolute; top: 12%; right: 4%; background: #1d1d1d; color: #fff; border: 3px solid #fff; padding: .35rem .8rem; font-weight: 800; font-size: .95rem; line-height: 1.15; max-width: 11ch; box-shadow: 0 4px 0 rgba(0,0,0,.35); }

.sk-hero__inner {
	max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2rem, 5vw, 3.75rem) var(--sk-gutter);
	min-height: min(640px, 82vh);
	display: grid; gap: 1.75rem clamp(1.5rem, 3vw, 3rem);
	grid-template-columns: minmax(0, 1.25fr) minmax(0, .6fr) minmax(290px, 330px);
	grid-template-areas: "copy copy ." "teasers teasers action";
	align-content: space-between;
}
.sk-hero__copy { grid-area: copy; max-width: 44rem; }
.sk-hero__sub { margin: 1rem 0 0; font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.sk-hero .sk-teasers { grid-area: teasers; align-self: end; }

.sk-action { grid-area: action; align-self: end; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: end; }
.sk-action__qr { position: relative; background: #fff; padding: .6rem; border-radius: var(--sk-radius-card); box-shadow: 0 5px 0 rgba(0,0,0,.25); }
.sk-action__qr .skc-qr { display: block; }
.sk-action__qr .skc-qr__code { display: block; width: 118px; aspect-ratio: 1; }
.sk-action__qr svg { width: 100%; height: auto; }
.sk-action__kicker { margin: 0; color: var(--hl); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .02em; }
.sk-action__title { margin: .2rem 0 .8rem; font-weight: 900; font-size: 1.45rem; line-height: 1.05; text-transform: uppercase; }
.sk-action__title--small { font-size: 1.05rem; text-transform: none; font-weight: 700; }
.sk-action .sk-btn { font-size: 1rem; white-space: nowrap; }
.sk-action:not(:has(.sk-action__qr)) { grid-template-columns: 1fr; background: rgba(0,0,0,.35); padding: 1.25rem; border-radius: var(--sk-radius-panel); }

@media (max-width: 1080px) {
	.sk-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(220px, 280px); grid-template-areas: "copy copy" "teasers teasers" "action action"; }
	.sk-action { justify-self: start; }
}
@media (max-width: 760px) {
	/* Op mobiel: kop, foto, vragen, actie onder elkaar. */
	.sk-hero { display: flex; flex-direction: column; }
	.sk-hero__inner { display: contents; }
	.sk-hero__copy { order: 1; padding: 2rem var(--sk-gutter) 1.5rem; }
	.sk-hero__media { order: 2; position: relative; inset: auto; width: 100%; height: 64vw; z-index: 0; }
	.sk-hero__media img { -webkit-mask-image: none; mask-image: none; }
	.sk-hero .sk-teasers { order: 3; align-self: stretch; padding: 1.25rem var(--sk-gutter) 0; grid-template-columns: 1fr; }
	.sk-action { order: 4; align-self: stretch; margin: 1.25rem var(--sk-gutter) 2rem; grid-template-columns: 1fr; }
	.sk-action__qr { display: none; }
	.sk-action .sk-btn { width: 100%; justify-content: center; font-size: 1.125rem; padding-block: 1.05em; }
	.sk-skyline { width: 100%; height: 18%; }
}

/* Partnerbalk ----------------------------------------------------------------- */
.sk-partnerbar { background: var(--sk-yellow); color: var(--sk-ink); }
.sk-partnerbar__inner { max-width: var(--sk-wide); margin: 0 auto; padding: 1rem var(--sk-gutter); display: grid; grid-template-columns: auto minmax(0, 1.6fr) minmax(0, 1fr); gap: 1rem 2rem; align-items: center; }
.sk-partnerbar__cell { display: flex; align-items: center; gap: .75rem; }
.sk-partnerbar__cell + .sk-partnerbar__cell { border-left: 2px solid rgba(0,0,0,.18); padding-left: 2rem; }
.sk-partnerbar .sk-icon { width: 2rem; height: 2rem; flex: none; }
.sk-partnerbar p { margin: 0; line-height: 1.3; font-size: .875rem; }
.sk-partnerbar__label { display: block; font-size: .75rem; font-weight: 600; }
.sk-partnerbar strong { font-weight: 800; }
.sk-partnerbar__list span:not(:last-child)::after { content: ", "; }
.sk-partnerbar__mission { font-weight: 600; }
@media (max-width: 860px) {
	.sk-partnerbar__inner { grid-template-columns: 1fr; }
	.sk-partnerbar__cell + .sk-partnerbar__cell { border-left: 0; padding-left: 0; border-top: 2px solid rgba(0,0,0,.18); padding-top: 1rem; }
}

/* Paginakop voor overzichten -------------------------------------------------- */
.sk-pagehead { position: relative; overflow: hidden; background: var(--bg, var(--sk-red)); color: var(--fg, #fff); isolation: isolate; }
.sk-pagehead__skyline { z-index: -1; width: 70%; }
.sk-pagehead__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) var(--sk-gutter); }
.sk-pagehead__desc { max-width: 40rem; font-weight: 600; margin-top: 1rem; }
.sk-pagehead--plain { background: var(--sk-mist); color: var(--sk-ink); border-bottom: 4px solid var(--sk-red); }
.sk-pagehead__title { margin: 0; font-weight: 900; font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.1; }

/* Secties en kaarten ---------------------------------------------------------- */
.sk-section { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) var(--sk-gutter); }
.sk-section__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 1.75rem; }
.sk-section__title { margin: 0; font-weight: 900; font-size: clamp(1.75rem, 3.5vw, 2.5rem); line-height: 1.05; text-transform: uppercase; }
.sk-section__more { margin: 2rem 0 0; }

.sk-chips { list-style: none; margin: 0 0 1.75rem; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.sk-section__head .sk-chips { margin: 0; }
.sk-chip { display: inline-block; padding: .45rem 1rem; border-radius: 999px; background: var(--sk-mist); font-weight: 700; font-size: .9375rem; text-decoration: none; }
.sk-chip:hover { background: var(--sk-yellow); }
.sk-chip.is-active { background: var(--sk-ink); color: #fff; }

.sk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 1.5rem; }
.sk-card { position: relative; display: flex; flex-direction: column; background: var(--bg); color: var(--fg); border-radius: var(--sk-radius-panel); overflow: hidden; }
.sk-card__media { position: relative; aspect-ratio: 10 / 7; background: var(--bg-deep); overflow: hidden; }
.sk-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sk-card__skyline { width: 100%; height: 70%; }
.sk-card__status { position: absolute; top: .75rem; left: .75rem; background: #fff; color: var(--sk-ink); font-weight: 800; font-size: .8rem; padding: .3rem .7rem; border-radius: 999px; }
.sk-card__status--open { background: var(--sk-yellow); }
.sk-card__body { padding: 1.1rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.sk-card__topic { margin: 0; font-weight: 700; font-size: .875rem; }
.sk-card__title { margin: 0; font-weight: 900; text-transform: uppercase; line-height: 1; }
.sk-card__title a { text-decoration: none; }
.sk-card__title a::after { content: ""; position: absolute; inset: 0; }
.sk-card__line { display: block; font-size: 1.1rem; }
.sk-card__hl { display: block; color: var(--hl); font-size: 1.75rem; text-shadow: .04em .05em 0 var(--hl-shadow); overflow-wrap: anywhere; }
.sk-card__count { margin: auto 0 0; padding-top: .5rem; font-weight: 700; font-size: .875rem; }
.sk-card:focus-within { box-shadow: var(--sk-focus); }
.sk-card__title a:focus-visible { box-shadow: none; }

.sk-empty { background: var(--sk-mist); border-left: 6px solid var(--sk-yellow); padding: 1.5rem; border-radius: 0 var(--sk-radius-card) var(--sk-radius-card) 0; }
.sk-empty p { margin-top: 0; font-weight: 600; }

/* Enquête --------------------------------------------------------------------- */
.sk-survey-section { background: var(--sk-mist); border-top: 8px solid var(--bg, var(--sk-red)); scroll-margin-top: 90px; }
.sk-survey-section:focus { outline: none; }
.sk-survey-section__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) var(--sk-gutter); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 2rem clamp(2rem, 5vw, 4rem); align-items: start; }
.sk-survey-section__title { margin: 0 0 1rem; font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; text-transform: uppercase; }
.sk-survey-section__intro p { font-size: 1.0625rem; max-width: 34rem; }
.sk-survey-section__count { font-weight: 800; }
@media (max-width: 860px) { .sk-survey-section__inner { grid-template-columns: 1fr; } }

.skc-survey, .skc-survey__done, .skc-survey--closed {
	background: #fff; border: 3px solid var(--sk-ink); border-radius: var(--sk-radius-panel);
	padding: clamp(1.25rem, 3vw, 2rem); box-shadow: 8px 8px 0 var(--sk-yellow);
}
.skc-survey--external { display: flex; justify-content: flex-start; }
.skc-survey--closed p { margin: 0; font-weight: 700; }
.skc-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.skc-survey__alert { background: #fde7e8; border-left: 4px solid var(--sk-red); padding: .75rem 1rem; font-weight: 700; margin-top: 0; }

.skc-survey__progress { margin-bottom: 1.25rem; }
.skc-survey__progress-text { font-weight: 700; font-size: .875rem; }
.skc-survey__progress-bar { display: block; height: 8px; background: var(--sk-mist); border-radius: 4px; overflow: hidden; margin-top: .4rem; }
.skc-survey__progress-bar span { display: block; height: 100%; width: 0; background: var(--sk-red); transition: width .3s ease; }

.skc-q { border: 0; padding: 0; margin: 0 0 2rem; min-width: 0; }
.skc-survey.is-stepped .skc-q { margin-bottom: 0; }
.skc-survey.is-stepped [data-skc-step][hidden] { display: none; }
.skc-q__label { display: flex; gap: .75rem; align-items: flex-start; font-weight: 800; font-size: clamp(1.15rem, 2.2vw, 1.45rem); line-height: 1.25; padding: 0; margin-bottom: .75rem; }
.skc-q__num { flex: none; display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--sk-red); color: #fff; font-weight: 900; font-size: 1rem; }
.skc-q__optional { font-style: normal; font-weight: 600; font-size: .875rem; opacity: .7; }
.skc-q__help { margin: 0 0 1rem; color: #444; }
.skc-q__error { color: #B00012; font-weight: 700; margin: .75rem 0 0; min-height: 1.2em; }
.skc-q__error:empty { min-height: 0; margin: 0; }

.skc-scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; max-width: 26rem; }
.skc-scale__item { position: relative; }
.skc-scale__item input, .skc-option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.skc-scale__item span { display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; border: 3px solid var(--sk-ink); font-weight: 900; font-size: 1.25rem; cursor: pointer; transition: background .15s, color .15s; }
.skc-scale__item span:hover { background: var(--sk-mist); }
.skc-scale__item input:checked + span { background: var(--sk-red); border-color: var(--sk-red); color: #fff; }
.skc-scale__item input:focus-visible + span, .skc-option input:focus-visible + span { box-shadow: var(--sk-focus); }
.skc-scale__legend { display: flex; justify-content: space-between; max-width: 26rem; font-size: .8125rem; font-weight: 600; color: #444; margin: .5rem 0 0; gap: 1rem; }

.skc-options { display: grid; gap: .5rem; }
.skc-option span { display: block; padding: .8rem 1rem .8rem 2.75rem; border: 2.5px solid var(--sk-ink); border-radius: var(--sk-radius-card); font-weight: 600; cursor: pointer; position: relative; }
.skc-option span::before { content: ""; position: absolute; left: .9rem; top: 50%; width: 1.1rem; height: 1.1rem; margin-top: -.55rem; border: 2.5px solid var(--sk-ink); border-radius: 50%; }
.skc-q--multi .skc-option span::before { border-radius: 4px; }
.skc-option input:checked + span { background: var(--sk-yellow); }
.skc-option input:checked + span::before { background: var(--sk-ink); box-shadow: inset 0 0 0 2.5px var(--sk-yellow); }

.skc-q textarea, .skc-q input[type="text"], .sk-search input {
	width: 100%; font: inherit; padding: .85rem 1rem; border: 2.5px solid var(--sk-ink); border-radius: var(--sk-radius-card); background: #fff;
}
.skc-consent { display: flex; gap: .75rem; align-items: flex-start; font-weight: 600; cursor: pointer; }
.skc-consent input { width: 1.4rem; height: 1.4rem; margin: .1rem 0 0; accent-color: var(--sk-red); flex: none; }
.skc-survey__nav { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.skc-survey__nav .skc-button { border: 2.5px solid var(--sk-ink); }
.skc-survey__nav .skc-button--ghost { border: 0; }

.skc-thanks__title { margin: 0 0 .5rem; font-weight: 900; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; }
.skc-share { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 0; }
.skc-survey__done:focus { outline: none; }

/* Inhoud ---------------------------------------------------------------------- */
.sk-content { max-width: calc(760px + var(--sk-gutter) * 2); margin: 0 auto; padding: clamp(2rem, 5vw, 3.5rem) var(--sk-gutter); }
.sk-entry > * { max-width: 760px; }
.sk-entry > .alignwide { max-width: var(--sk-wide); margin-left: calc((760px - var(--sk-wide)) / 2); margin-right: calc((760px - var(--sk-wide)) / 2); }
@media (max-width: 1340px) { .sk-entry > .alignwide { margin-left: 0; margin-right: 0; max-width: 100%; } }
.sk-entry > .alignfull { max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.sk-entry h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.5rem 0 .75rem; }
.sk-entry h3 { font-size: 1.3rem; margin: 2rem 0 .5rem; }
.sk-entry a { color: var(--sk-red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.sk-entry blockquote { margin: 2rem 0; padding: 1rem 1.5rem; border-left: 6px solid var(--sk-yellow); font-size: 1.25rem; font-weight: 700; }
.sk-entry__title { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.05; margin: 0 0 .5rem; }
.sk-entry__meta { color: #555; font-size: .875rem; font-weight: 600; margin: 0 0 1.5rem; }
.sk-entry__media { margin: 0 0 2rem; }
.sk-entry__media img { border-radius: var(--sk-radius-panel); }
.sk-listitem { padding: 1.5rem 0; border-bottom: 2px solid var(--sk-mist); }
.sk-listitem__title { margin: 0 0 .25rem; font-size: 1.5rem; }
.sk-listitem__title a { text-decoration: none; }
.sk-listitem__title a:hover { color: var(--sk-red); }
.sk-search { display: flex; gap: .5rem; }
.sk-pagination .nav-links { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.sk-pagination .page-numbers { padding: .5rem .9rem; border-radius: 999px; background: var(--sk-mist); font-weight: 700; text-decoration: none; }
.sk-pagination .current { background: var(--sk-ink); color: #fff; }

/* Blokpatronen */
.sk-callout { padding: clamp(2.5rem, 6vw, 4rem) var(--sk-gutter) !important; }
.sk-callout h2 { text-transform: uppercase; margin: .5rem 0; }
.sk-bubble-inline { display: inline-block; background: #fff; color: var(--sk-red); font-weight: 800; padding: .4em .8em; border-radius: .6em; }
.sk-numbered { list-style: none; padding: 0; counter-reset: n; display: grid; gap: .75rem; }
.sk-numbered li { counter-increment: n; display: flex; gap: .75rem; align-items: center; background: #fff; border: 2.5px solid var(--sk-ink); border-radius: var(--sk-radius-card); padding: .75rem 1rem; font-weight: 600; }
.sk-numbered li::before { content: counter(n); display: grid; place-items: center; flex: none; width: 2rem; height: 2rem; border-radius: 50%; background: var(--sk-red); color: #fff; font-weight: 900; }
.sk-partnerband { padding: 1.25rem var(--sk-gutter) !important; font-size: .9375rem; }

/* Voet ------------------------------------------------------------------------ */
.sk-footer { background: var(--sk-ink); color: #fff; margin-top: 0; }
.sk-footer__inner { max-width: var(--sk-wide); margin: 0 auto; padding: 3rem var(--sk-gutter) 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.sk-footer__name { font-weight: 900; font-size: 1.375rem; text-transform: uppercase; margin: 0 0 .5rem; color: var(--sk-yellow); }
.sk-footer__menu, .sk-footer__social { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; align-content: start; }
.sk-footer a { text-decoration: none; font-weight: 600; }
.sk-footer a:hover { color: var(--sk-yellow); text-decoration: underline; }
.sk-footer__title { font-size: 1rem; color: var(--sk-yellow); }
.sk-footer__base { max-width: var(--sk-wide); margin: 0 auto; padding: 1rem var(--sk-gutter) 2rem; border-top: 1px solid #333; display: flex; flex-wrap: wrap; gap: 1rem 2rem; font-size: .875rem; color: #bbb; }
.sk-footer a:focus-visible { box-shadow: 0 0 0 3px var(--sk-yellow); }

/* ==========================================================================
   2.0: Nieuwsplatform. Nieuwskoppen in gewone letters voor leesbaarheid;
   de campagnekop blijft het ene luide element.
   ========================================================================== */

/* Live-balk --------------------------------------------------------------- */
.sk-livebar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .35rem 1rem; padding: .55rem var(--sk-gutter); background: var(--sk-ink); color: #fff; font-size: .9375rem; }
.sk-livebar--on { background: var(--sk-red); }
.sk-livebar__title { font-weight: 600; }
.sk-livebar__count { font-variant-numeric: tabular-nums; font-weight: 800; color: var(--sk-yellow); }
.sk-livebar__cta { background: var(--sk-yellow); color: var(--sk-ink); font-weight: 800; padding: .3rem .85rem; border-radius: 999px; text-decoration: none; font-size: .875rem; }
.sk-livebar__dot { width: .7rem; height: .7rem; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: sk-pulse 1.6s infinite; }
@keyframes sk-pulse { 70% { box-shadow: 0 0 0 .6rem rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

/* Sectiekoppen ------------------------------------------------------------ */
.sk-section__link { font-weight: 700; text-decoration: none; border-bottom: 3px solid var(--sk-yellow); padding-bottom: 2px; }
.sk-section__link:hover { border-color: var(--sk-red); }
.sk-section__intro { margin: -1rem 0 1.5rem; color: #444; max-width: 40rem; }
.sk-section--narrow { max-width: calc(880px + var(--sk-gutter) * 2); }
.sk-section + .sk-section { padding-top: 0; }

/* Nieuwskaarten ----------------------------------------------------------- */
.sk-newsgrid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 2rem; }
.sk-newsgrid__side { display: grid; align-content: start; gap: 0; border-top: 4px solid var(--sk-ink); }
.sk-newsgrid__row { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 1.5rem; }
@media (max-width: 900px) { .sk-newsgrid { grid-template-columns: 1fr; } }

.sk-news { position: relative; display: flex; flex-direction: column; }
.sk-news__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--sk-radius-card); background: var(--sk-red-deep); }
.sk-news__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sk-news:hover .sk-news__media img { transform: scale(1.03); }
.sk-news__skyline { width: 100%; height: 70%; --bg-deep: #7a0a0e; --hl: var(--sk-yellow); }
.sk-news__format { position: absolute; left: .75rem; bottom: .75rem; background: var(--sk-yellow); color: var(--sk-ink); font-weight: 800; font-size: .8rem; padding: .25rem .65rem; border-radius: 999px; }
.sk-news__body { padding-top: .8rem; }
.sk-news__kicker { display: flex; flex-wrap: wrap; gap: .25rem .75rem; margin: 0 0 .35rem; font-size: .8125rem; font-weight: 600; color: #555; }
.sk-news__wijk { color: var(--sk-red); font-weight: 800; }
.sk-news__fmt { background: var(--sk-ink); color: #fff; font-weight: 700; font-size: .75rem; padding: .05rem .5rem; border-radius: 4px; }
.sk-news__title { margin: 0; font-weight: 800; font-size: 1.2rem; line-height: 1.25; letter-spacing: -.01em; }
.sk-news__title a { text-decoration: none; }
.sk-news__title a::after { content: ""; position: absolute; inset: 0; }
.sk-news__title a:hover { text-decoration: underline; text-decoration-thickness: 3px; text-decoration-color: var(--sk-yellow); text-underline-offset: 4px; }
.sk-news:focus-within { outline: 3px solid var(--sk-ink); outline-offset: 4px; border-radius: var(--sk-radius-card); }
.sk-news__title a:focus-visible { box-shadow: none; }
.sk-news--lead .sk-news__media { aspect-ratio: 16 / 9; }
.sk-news--lead .sk-news__title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; line-height: 1.1; }
.sk-news__excerpt { margin: .6rem 0 0; font-size: 1.0625rem; color: #333; }
.sk-news--compact { padding: 1rem 0; border-bottom: 1px solid #ddd; }
.sk-news--compact .sk-news__body { padding-top: 0; }
.sk-news--compact .sk-news__title { font-size: 1.0625rem; }

/* Buurtnieuws --------------------------------------------------------------- */
.sk-section--feed { background: var(--sk-mist); max-width: none; }
.sk-section--feed > * { max-width: var(--sk-wide); margin-left: auto; margin-right: auto; }
.sk-feedlist { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 0 2.5rem; }
.sk-feedlist--full { grid-template-columns: 1fr; }
.sk-feed { display: flex; gap: 1rem; padding: 1rem 0; border-top: 1px solid rgba(0,0,0,.14); }
.sk-feed__img { width: 88px; height: 66px; object-fit: cover; border-radius: 6px; flex: none; }
.sk-feed__meta { display: flex; flex-wrap: wrap; gap: .2rem .6rem; margin: 0 0 .25rem; font-size: .78rem; color: #555; }
.sk-feed__meta strong { color: var(--sk-ink); }
.sk-feed__title { margin: 0; font-size: 1rem; font-weight: 700; line-height: 1.35; }
.sk-feed__title a { text-decoration: none; }
.sk-feed__title a::after { content: " ↗"; color: var(--sk-red); font-weight: 800; }
.sk-feed__title a:hover { text-decoration: underline; }
.sk-feed__excerpt { margin: .35rem 0 0; color: #444; font-size: .9375rem; }

/* TikTok ------------------------------------------------------------------- */
.sk-tiktok { background: var(--sk-ink); color: #fff; }
.sk-tiktok__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) var(--sk-gutter); }
.sk-tiktok .sk-section__title { color: #fff; }
.sk-tiktok__row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(200px, 1fr); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem; }
.sk-tiktok__item { margin: 0; scroll-snap-align: start; }
.sk-tiktok__item figcaption { margin-top: .6rem; font-size: .875rem; font-weight: 600; line-height: 1.35; }
.sk-tiktok__item figcaption span { display: block; color: var(--sk-yellow); font-weight: 700; font-size: .8rem; margin-top: .2rem; }
.sk-tiktok__empty { color: #ccc; }
.skn-tt { position: relative; aspect-ratio: 9 / 16; border-radius: 12px; overflow: hidden; background: #1c1c1c; }
.skn-tt iframe { width: 100%; height: 100%; border: 0; }
.skn-tt__facade { all: unset; box-sizing: border-box; position: absolute; inset: 0; cursor: pointer; display: grid; place-items: center; background: linear-gradient(160deg, #2b2b2b, #111); }
.skn-tt__facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.skn-tt__play { position: relative; width: 4rem; height: 4rem; border-radius: 50%; background: var(--sk-yellow); box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.skn-tt__play::after { content: ""; position: absolute; left: 1.55rem; top: 1.2rem; border: 0.8rem solid transparent; border-left: 1.2rem solid var(--sk-ink); border-right: 0; }
.skn-tt__note { position: absolute; left: .6rem; right: .6rem; bottom: 2.4rem; font-size: .7rem; color: #fff; text-align: center; background: rgba(0,0,0,.55); padding: .25rem .4rem; border-radius: 4px; }
.skn-tt__link { position: absolute; left: 0; right: 0; bottom: 0; padding: .45rem; text-align: center; background: rgba(0,0,0,.7); color: #fff; font-size: .8rem; font-weight: 700; text-decoration: none; }
.skn-tt__facade:focus-visible { box-shadow: inset 0 0 0 4px var(--sk-yellow); }
.sk-article__tiktok .skn-tt { max-width: 340px; margin: 2rem 0; }

/* Live-hero ---------------------------------------------------------------- */
.sk-livehero { background: var(--sk-ink); color: #fff; position: relative; overflow: hidden; }
.sk-livehero.is-live { background: var(--sk-red); }
.sk-livehero__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2rem, 5vw, 3.5rem) var(--sk-gutter); }
.sk-livehero__badge { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 .75rem; font-weight: 800; color: var(--sk-yellow); }
.is-live .sk-livehero__badge { color: #fff; }
.sk-livehero__title { margin: 0; font-weight: 900; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; }
.sk-livehero__text { max-width: 44rem; font-size: 1.0625rem; margin: .9rem 0 0; }
.sk-livehero__when { font-weight: 700; font-size: 1.125rem; margin: 1rem 0 0; }
.sk-livehero__count { display: inline-block; margin-left: .5rem; font-variant-numeric: tabular-nums; background: var(--sk-yellow); color: var(--sk-ink); padding: .1rem .6rem; border-radius: 6px; font-weight: 900; }
.sk-livehero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; margin: 1.5rem 0 0; }
.sk-livehero__all { color: #fff; font-weight: 700; }

/* Podcast ------------------------------------------------------------------ */
.sk-podcast { background: #141414; color: #fff; }
.sk-podcast__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) var(--sk-gutter); display: grid; grid-template-columns: minmax(180px, 320px) 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 760px) { .sk-podcast__inner { grid-template-columns: 1fr; } .sk-podcast__cover { max-width: 220px; } }
.sk-podcast__cover img { width: 100%; height: auto; border-radius: 14px; box-shadow: 10px 10px 0 var(--sk-yellow); }
.sk-podcast__show { margin: 0; color: var(--sk-yellow); font-weight: 800; }
.sk-podcast__show a { color: inherit; }
.sk-podcast__title { margin: .3rem 0 .4rem; font-weight: 900; font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.1; }
.sk-podcast__title a { text-decoration: none; }
.sk-podcast__meta { margin: 0 0 1rem; color: #bbb; font-weight: 600; }
.sk-podcast__player { width: 100%; max-width: 560px; margin-bottom: 1rem; }
.sk-podcast__subs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1rem; }
.sk-podcast__more { list-style: none; padding: 0; margin: 0; border-top: 1px solid #333; max-width: 560px; }
.sk-podcast__more li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid #333; }
.sk-podcast__more a { font-weight: 700; text-decoration: none; }
.sk-podcast__more span { color: #999; font-variant-numeric: tabular-nums; }
.sk-chip--dark { background: #2a2a2a; color: #fff; }
.sk-chip--dark:hover { background: var(--sk-yellow); color: var(--sk-ink); }
.sk-chips--light .sk-chip { background: rgba(255,255,255,.9); }
.sk-chips--head { margin: 1rem 0 0; }

/* Afleveringen ------------------------------------------------------------ */
.sk-episodes { list-style: none; margin: 0; padding: 0; }
.sk-episode { display: grid; grid-template-columns: 96px 1fr; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid #ddd; }
.sk-episode__art img { width: 96px; height: 96px; object-fit: cover; border-radius: 10px; }
.sk-episode__meta { display: flex; gap: .75rem; margin: 0; font-size: .8125rem; font-weight: 700; color: #555; }
.sk-episode__title { margin: .2rem 0 .4rem; font-size: 1.35rem; font-weight: 800; line-height: 1.2; }
.sk-episode__title a { text-decoration: none; }
.sk-episode audio { width: 100%; max-width: 520px; margin-top: .5rem; }

/* Live-programma ----------------------------------------------------------- */
.sk-schedule { list-style: none; margin: 0; padding: 0; }
.sk-schedule__item { display: grid; grid-template-columns: 76px 1fr auto; gap: 1.25rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid #ddd; }
.sk-schedule__item.is-live { background: #fff2f2; border-left: 6px solid var(--sk-red); padding-left: 1rem; }
.sk-schedule__date { display: grid; justify-items: center; background: var(--sk-ink); color: #fff; border-radius: 10px; padding: .5rem 0; text-transform: uppercase; font-size: .75rem; font-weight: 700; }
.sk-schedule__date strong { font-size: 1.75rem; line-height: 1; color: var(--sk-yellow); }
.sk-schedule__time { margin: 0; font-weight: 800; color: var(--sk-red); }
.sk-schedule__title { margin: .15rem 0; font-size: 1.3rem; font-weight: 800; line-height: 1.2; }
.sk-schedule__title a { text-decoration: none; }
.sk-schedule__hosts { margin: 0; color: #555; font-size: .9375rem; }
.sk-schedule__count { margin: .35rem 0 0; font-weight: 900; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) { .sk-schedule__item { grid-template-columns: 64px 1fr; } .sk-schedule__actions { grid-column: 2; } }

/* Tipband ------------------------------------------------------------------ */
.sk-tipband { background: var(--sk-yellow); color: var(--sk-ink); }
.sk-tipband__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) var(--sk-gutter); }
.sk-tipband .sk-bubble { --bubble-fg: var(--sk-red); }
.sk-tipband__title { margin: 0 0 .75rem; font-weight: 900; font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.05; max-width: 20ch; }
.sk-tipband__text { max-width: 40rem; font-size: 1.125rem; margin: 0 0 1.5rem; }
.sk-tipband .sk-btn { background: var(--sk-ink); color: #fff; }

/* Artikel ------------------------------------------------------------------ */
.sk-article { max-width: calc(760px + var(--sk-gutter) * 2); margin: 0 auto; padding: clamp(2rem, 5vw, 3.5rem) var(--sk-gutter) 1rem; }
.sk-article__kicker { display: flex; gap: .75rem; align-items: center; margin: 0 0 .75rem; font-weight: 800; }
.sk-article__kicker a { color: var(--sk-red); text-decoration: none; }
.sk-article__title { margin: 0; font-weight: 900; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; letter-spacing: -.02em; }
.sk-article__lead { font-size: 1.3rem; font-weight: 600; line-height: 1.45; margin: 1rem 0 0; }
.sk-article__byline { display: flex; flex-wrap: wrap; gap: .25rem 1rem; margin: 1.25rem 0 0; padding-top: 1rem; border-top: 1px solid #ddd; font-size: .875rem; color: #555; font-weight: 600; }
.sk-article__media { margin: 2rem 0; }
.sk-article__media img { width: 100%; border-radius: var(--sk-radius-card); }
.sk-article__media figcaption { font-size: .8125rem; color: #555; margin-top: .4rem; }
.sk-article__body { padding: 0; font-size: 1.125rem; line-height: 1.7; }
.sk-article__body > p:first-child::first-line { font-weight: 700; }
.sk-article__foot { margin: 2.5rem 0 0; padding-top: 1.5rem; border-top: 4px solid var(--sk-ink); }
.sk-article__tip { font-weight: 700; margin-top: 1.25rem; }
.sk-article__tip a { color: var(--sk-red); }
.skn-credit { font-size: .875rem; color: #555; font-style: italic; }
.sk-note { background: var(--sk-mist); border-left: 5px solid var(--sk-yellow); padding: .8rem 1rem; font-weight: 600; }

/* Delen -------------------------------------------------------------------- */
.sk-share { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.sk-share__label { font-weight: 800; margin-right: .25rem; }
.sk-share__btn { padding: .4rem .85rem; border-radius: 999px; background: var(--sk-mist); font-weight: 700; font-size: .875rem; text-decoration: none; }
.sk-share__btn:hover { background: var(--sk-yellow); }
.sk-share__btn--whatsapp { background: #075E54; color: #fff; }

/* Paginakoppen ------------------------------------------------------------- */
.sk-pagehead--dark { background: #141414; color: #fff; }
.sk-pagehead--dark .sk-pagehead__desc { color: #ddd; }
.sk-pagehead__inner--split { display: grid; grid-template-columns: 1fr minmax(160px, 280px); gap: 2rem; align-items: center; }
@media (max-width: 760px) { .sk-pagehead__inner--split { grid-template-columns: 1fr; } }
.sk-pagehead--plain .sk-pagehead__desc { max-width: 44rem; color: #333; }

/* Inzendformulier ------------------------------------------------------------ */
.skn-ugc { background: #fff; border: 3px solid var(--sk-ink); border-radius: var(--sk-radius-panel); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: 8px 8px 0 var(--sk-yellow); margin: 1.5rem 0; }
.skn-ugc label { font-weight: 700; display: block; margin-bottom: .35rem; }
.skn-ugc input[type=text], .skn-ugc input[type=email], .skn-ugc textarea, .skn-ugc select { width: 100%; font: inherit; padding: .75rem .9rem; border: 2.5px solid var(--sk-ink); border-radius: var(--sk-radius-card); background: #fff; }
.skn-ugc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 640px) { .skn-ugc__row { grid-template-columns: 1fr; } }
.skn-ugc fieldset { border: 0; padding: 0; margin: 0 0 1.25rem; }
.skn-ugc legend { font-weight: 800; margin-bottom: .5rem; font-size: 1.125rem; }
.skn-ugc__types { display: flex; flex-wrap: wrap; gap: .5rem; }
.skn-chip-radio { margin: 0 !important; }
.skn-chip-radio input { position: absolute; opacity: 0; }
.skn-chip-radio span { display: inline-block; padding: .5rem 1rem; border: 2.5px solid var(--sk-ink); border-radius: 999px; cursor: pointer; font-weight: 700; }
.skn-chip-radio input:checked + span { background: var(--sk-ink); color: #fff; }
.skn-chip-radio input:focus-visible + span { box-shadow: var(--sk-focus); }
.skn-ugc__publish label { font-weight: 600; display: flex; gap: .5rem; align-items: center; }
.skn-ugc__hint { display: block; font-size: .8125rem; color: #555; margin-top: .3rem; font-weight: 500; }
.skn-ugc__preview { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.skn-ugc__preview img { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; }
.skn-ugc__preview span { font-size: .8125rem; background: var(--sk-mist); padding: .25rem .5rem; border-radius: 4px; }
.skn-ugc__alert, .skn-ugc__error:not(:empty) { background: #fde7e8; border-left: 4px solid var(--sk-red); padding: .75rem 1rem; font-weight: 700; }
.skn-ugc__privacy { font-size: .8125rem; color: #555; }
.skn-ugc--done h3 { margin-top: 0; font-size: 1.6rem; }
.skn-ugc .skc-consent { display: flex; font-weight: 600; margin-bottom: .6rem; }
.sk-comments { margin-top: 2rem; }
.sk-comments__list { list-style: none; padding: 0; }
.sk-comments__list .comment-body { border-top: 1px solid #ddd; padding: 1rem 0; }
.sk-comments textarea, .sk-comments input[type=text], .sk-comments input[type=email], .sk-comments input[type=url] { width: 100%; font: inherit; padding: .7rem; border: 2px solid var(--sk-ink); border-radius: var(--sk-radius-card); }
.sk-entry .sk-share__btn { color: var(--sk-ink); text-decoration: none; }
.sk-entry .sk-share__btn--whatsapp { color: #fff; }

/* 2.1: meest gelezen, agenda, nieuwsbrief, steun, correcties -------------- */
.sk-popular { list-style: none; margin: 0; padding: 0; counter-reset: pop; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 1.25rem; }
.sk-popular__item { counter-increment: pop; position: relative; padding-top: 3.1rem; border-top: 4px solid var(--sk-ink); }
.sk-popular__item::before { content: counter(pop); position: absolute; top: .4rem; left: 0; font-weight: 900; font-size: 2.2rem; line-height: 1; color: var(--sk-red); }
.sk-popular__item a { font-weight: 800; text-decoration: none; line-height: 1.3; display: block; }
.sk-popular__item a:hover { text-decoration: underline; text-decoration-color: var(--sk-yellow); text-decoration-thickness: 3px; }
.sk-popular__item span { display: block; margin-top: .35rem; font-size: .8125rem; color: #555; font-weight: 600; }
.sk-events { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 1rem 1.5rem; }
.sk-events--list { grid-template-columns: 1fr; }
.sk-event { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; align-items: start; padding: 1rem 0; border-top: 1px solid #ddd; }
.sk-event__time { margin: 0; color: var(--sk-red-deep); font-weight: 800; font-size: .875rem; }
.sk-event__title { margin: .15rem 0; font-size: 1.1rem; font-weight: 800; line-height: 1.25; }
.sk-event__title a { text-decoration: none; }
.sk-event__place { margin: 0; color: #444; font-size: .9375rem; }
.sk-eventfacts { display: grid; grid-template-columns: max-content 1fr; gap: .4rem 1.25rem; margin: 1.5rem 0; padding: 1.25rem; background: var(--sk-mist); border-radius: var(--sk-radius-card); }
.sk-eventfacts dt { font-weight: 800; }
.sk-eventfacts dd { margin: 0; }
.sk-nlband { background: var(--sk-red); color: #fff; }
.sk-nlband__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2.5rem, 6vw, 3.5rem) var(--sk-gutter); display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem 3rem; align-items: center; }
@media (max-width: 860px) { .sk-nlband__inner { grid-template-columns: 1fr; } }
.sk-nlband__title { margin: 0 0 .5rem; font-weight: 900; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.1; }
.skn-nl__row { display: flex; gap: .5rem; flex-wrap: wrap; }
.skn-nl__row input { flex: 1; min-width: 200px; font: inherit; padding: .85rem 1rem; border: 2.5px solid var(--sk-ink); border-radius: 999px; }
.skn-nl__wijken { border: 0; padding: 0; margin: .9rem 0 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.skn-nl__wijken legend { font-weight: 700; font-size: .875rem; margin-bottom: .4rem; }
.sk-nlband .skn-chip-radio span { border-color: #fff; color: #fff; padding: .3rem .8rem; font-size: .875rem; }
.sk-nlband .skn-chip-radio input:checked + span { background: #fff; color: var(--sk-ink); }
.sk-nlband .sk-btn { background: var(--sk-ink); color: #fff; }
.skn-nl__note { font-size: .8125rem; margin: .75rem 0 0; }
.skn-nl__msg { background: #fff; color: var(--sk-ink); padding: .6rem .9rem; border-radius: 8px; font-weight: 700; }
.skn-nl--compact .skn-nl__wijken, .skn-nl--compact .skn-nl__note { display: none; }
.skn-nl--compact .skn-nl__row input { border-color: #fff; }
.sk-footer__nl { grid-column: span 2; }
.sk-support { background: var(--sk-mist); border-top: 8px solid var(--sk-yellow); }
.sk-support__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(2rem, 5vw, 3rem) var(--sk-gutter); }
.sk-support__title { margin: 0 0 .5rem; font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.skn-support__links { display: flex; flex-wrap: wrap; gap: .75rem; }
.skn-corrections { margin: 2.5rem 0 0; padding: 1rem 1.25rem; background: #fff8d6; border-left: 6px solid var(--sk-yellow); font-size: 1rem; }
.skn-corrections h2 { margin: 0 0 .5rem; font-size: 1.1rem; }
.skn-corrections ul { margin: 0; padding-left: 1.1rem; }
.skn-corrections time { font-weight: 700; }
.sk-section--feed + .sk-section, .sk-section--popular + .sk-section--feed { padding-top: clamp(2.5rem, 6vw, 4.5rem); }

/* Livegang / coming soon ------------------------------------------------------ */
.sk-launch { position: relative; min-height: 100vh; overflow: hidden; background: var(--bg); color: var(--fg); isolation: isolate; }
.sk-launch__skyline { z-index: -1; width: 100%; height: 34%; }
.sk-launch__inner { max-width: var(--sk-wide); margin: 0 auto; padding: clamp(1.25rem, 3vw, 2rem) var(--sk-gutter) 2rem; min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 460px); grid-template-rows: auto 1fr auto; grid-template-areas: "brand brand" "copy card" "foot foot"; gap: 1.5rem clamp(2rem, 5vw, 4.5rem); align-items: center; }
.sk-launch__brand { grid-area: brand; }
.sk-launch__brand img { max-height: 56px; width: auto; }
.sk-launch__name { font-weight: 900; font-size: 1.4rem; text-transform: uppercase; letter-spacing: -.01em; }
.sk-launch__copy { grid-area: copy; }
.sk-launch .sk-title__hl { font-size: clamp(2.8rem, 8vw, 6.5rem); line-height: .92; }
.sk-launch__text { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 600; max-width: 36rem; margin: 1.25rem 0 0; }
.sk-launch__count { display: flex; gap: .6rem; margin: 1.75rem 0 .5rem; }
.sk-launch__cell { display: grid; justify-items: center; min-width: 4.6rem; padding: .6rem .5rem; background: var(--sk-ink); border-radius: 12px; box-shadow: 0 4px 0 rgba(0,0,0,.25); }
.sk-launch__cell strong { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; line-height: 1; color: var(--sk-yellow); font-variant-numeric: tabular-nums; }
.sk-launch__cell span { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: #fff; margin-top: .25rem; }
.sk-launch__date { margin: 0; font-weight: 700; }
.sk-launch__points { margin-top: 1.75rem; grid-template-columns: 1fr; max-width: 30rem; }
.sk-launch__card { grid-area: card; background: #fff; color: var(--sk-ink); border: 3px solid var(--sk-ink); border-radius: var(--sk-radius-panel); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: 10px 10px 0 var(--sk-yellow); }
.sk-launch__cardtitle { margin: 0 0 .75rem; font-weight: 900; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; }
.sk-launch__social { font-weight: 800; color: var(--sk-red-deep); margin: 0 0 1rem; }
.sk-launch__card .skn-nl__row input { border-color: var(--sk-ink); }
.sk-launch__card .skn-chip-radio span { border-color: var(--sk-ink); color: var(--sk-ink); padding: .3rem .8rem; font-size: .875rem; }
.sk-launch__card .skn-chip-radio input:checked + span { background: var(--sk-ink); color: #fff; }
.sk-launch__card .skn-nl__note { color: #444; }
.sk-launch__card .skn-nl__msg { background: var(--sk-mist); }
.sk-launch__share { display: flex; flex-wrap: wrap; gap: .6rem; }
.sk-launch__share .sk-btn { font-size: .95rem; }
.sk-launch__sharetitle { font-weight: 800; margin: 1.25rem 0 .5rem; }
.sk-launch__foot { grid-area: foot; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-weight: 700; font-size: .9375rem; }
.sk-launch__foot a { color: #fff; }
@media (max-width: 900px) {
	.sk-launch__inner { grid-template-columns: 1fr; grid-template-areas: "brand" "copy" "card" "foot"; }
	.sk-launch__cell { min-width: 0; flex: 1; }
}
.sk-launch .sk-title__hl { font-size: clamp(2.6rem, 5.6vw, 5.2rem); overflow-wrap: normal; word-break: keep-all; hyphens: none; }
.sk-launch__foot { position: relative; width: fit-content; background: var(--bg-deep); padding: .55rem 1rem; border-radius: 10px; }
