/*
 * SVSR theme styles — huisstijl uit het aanleverpakket v1.0, layout
 * geinspireerd op moderne referentiesites (o.a. emboost.nl): grote
 * display-typografie met kleuraccentpunt, kaarten met datum-badges,
 * diagonale sectie-overgangen en rustige micro-interacties.
 * Tokens in :root; --svsr-green wordt overschreven vanuit de
 * site-instellingen (ACF).
 */

:root {
	--svsr-green: #186B3A;
	--svsr-green-dark: #125230;
	--svsr-black: #171717;
	--svsr-grey: #F4F4F1;
	--svsr-green-light: #E6F1E9;
	--svsr-white: #FFFFFF;
	--svsr-font-sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
	--svsr-font-serif: "Source Serif 4", Georgia, serif;
	--svsr-radius: 0.5rem;
	--svsr-radius-lg: 1rem;
	--svsr-shadow: 0 10px 30px rgba(23, 23, 23, 0.08);
	--svsr-shadow-hover: 0 18px 44px rgba(23, 23, 23, 0.14);
	--svsr-nav-height: 5rem;
}

/* ---------- Basis ---------- */

.container {
	padding-left: clamp(1.5rem, 4vw, 3.5rem);
	padding-right: clamp(1.5rem, 4vw, 3.5rem);
}

body {
	font-family: var(--svsr-font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--svsr-black);
	background: var(--svsr-white);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--svsr-font-sans);
	font-weight: 700;
	color: var(--svsr-black);
	line-height: 1.2;
}

h2 {
	margin-bottom: 1rem;
}

a {
	color: var(--svsr-green);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

a:hover,
a:focus {
	color: var(--svsr-green-dark);
}

:focus-visible {
	outline: 3px solid var(--svsr-green);
	outline-offset: 2px;
}

html {
	scroll-padding-top: var(--svsr-nav-height);
}

.svsr-skiplink {
	position: absolute;
	z-index: 2000;
	background: var(--svsr-white);
	color: var(--svsr-green);
	padding: 0.5rem 1rem;
}

/* ---------- Accentpunt & verbindingslijn ---------- */

.svsr-dot {
	color: var(--svsr-green);
}

.svsr-hero .svsr-dot,
.svsr-ctaband .svsr-dot {
	color: #7FC79B;
}

.svsr-lijn {
	display: block;
	width: 4.5rem;
	height: 2px;
	background: var(--svsr-green);
	margin-bottom: 1rem;
}

.svsr-lijn-kort {
	width: 2.5rem;
}

.svsr-reveal .svsr-lijn {
	width: 0;
	transition: width 0.7s ease 0.25s;
}

.svsr-revealed .svsr-lijn {
	width: 4.5rem;
}

.svsr-revealed .svsr-lijn-kort {
	width: 2.5rem;
}

/* ---------- Typografische accenten ---------- */

.svsr-kicker {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--svsr-green);
	margin-bottom: 0.5rem;
}

.svsr-kicker-light {
	color: #9ED8B5;
}

.svsr-serif-lead p,
.svsr-serif-lead {
	font-family: var(--svsr-font-serif);
	font-size: 1.3rem;
	line-height: 1.7;
}

.svsr-serif-title {
	font-family: var(--svsr-font-serif);
	font-weight: 600;
}

.svsr-section-title {
	font-family: var(--svsr-font-serif);
	font-weight: 600;
	font-size: clamp(1.9rem, 3.4vw, 2.75rem);
	margin-bottom: 0.5rem;
}

/* ---------- Knoppen & tekstlinks ---------- */

.svsr-pijl {
	display: inline-block;
	transition: transform 0.2s ease;
}

a:hover .svsr-pijl,
a:focus .svsr-pijl,
.btn:hover .svsr-pijl {
	transform: translateX(4px);
}

.btn-svsr-primary {
	background: var(--svsr-green);
	border: 1px solid var(--svsr-green);
	color: var(--svsr-white);
	font-weight: 600;
	padding: 0.7rem 1.5rem;
	border-radius: var(--svsr-radius);
	text-decoration: none;
}

.btn-svsr-primary:hover,
.btn-svsr-primary:focus {
	background: var(--svsr-green-dark);
	border-color: var(--svsr-green-dark);
	color: var(--svsr-white);
}

.btn-svsr-secondary {
	background: var(--svsr-white);
	border: 1px solid var(--svsr-green);
	color: var(--svsr-green);
	font-weight: 600;
	padding: 0.7rem 1.5rem;
	border-radius: var(--svsr-radius);
	text-decoration: none;
}

.btn-svsr-secondary:hover,
.btn-svsr-secondary:focus {
	background: var(--svsr-green-light);
	color: var(--svsr-green-dark);
	border-color: var(--svsr-green-dark);
}

.btn-svsr-ghost {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: var(--svsr-white);
	font-weight: 600;
	padding: 0.7rem 1.5rem;
	border-radius: var(--svsr-radius);
	text-decoration: none;
	backdrop-filter: blur(4px);
}

.btn-svsr-ghost:hover,
.btn-svsr-ghost:focus {
	background: rgba(255, 255, 255, 0.25);
	color: var(--svsr-white);
	border-color: var(--svsr-white);
}

.btn-svsr-light {
	background: var(--svsr-white);
	border: 1px solid var(--svsr-white);
	color: var(--svsr-green);
	font-weight: 600;
	padding: 0.7rem 1.5rem;
	border-radius: var(--svsr-radius);
	text-decoration: none;
}

.btn-svsr-light:hover,
.btn-svsr-light:focus {
	background: var(--svsr-green-light);
	border-color: var(--svsr-green-light);
	color: var(--svsr-green-dark);
}

.svsr-textlink {
	color: var(--svsr-green);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.svsr-textlink:hover,
.svsr-textlink:focus {
	color: var(--svsr-green-dark);
	text-decoration: underline;
}

/* ---------- Header / navigatie ---------- */

.svsr-header {
	background: var(--svsr-white);
	transition: box-shadow 0.2s ease;
}

.svsr-header.svsr-scrolled {
	box-shadow: 0 2px 14px rgba(23, 23, 23, 0.1);
}

.svsr-navbar {
	min-height: var(--svsr-nav-height);
}

.svsr-brand .custom-logo,
.svsr-brand img {
	height: 3.25rem;
	max-height: 3.25rem;
	width: auto;
}

.svsr-brand-text {
	font-weight: 700;
	color: var(--svsr-black);
	text-decoration: none;
}

.svsr-nav .nav-link,
.svsr-nav a {
	color: var(--svsr-black);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	padding: 0.5rem 0.75rem;
	white-space: nowrap;
	display: inline-block;
}

.svsr-nav a:hover,
.svsr-nav a:focus {
	color: var(--svsr-green);
}

.svsr-nav .current-menu-item > a,
.svsr-nav .current_page_item > a {
	color: var(--svsr-green);
	box-shadow: inset 0 -2px 0 var(--svsr-green);
}

.svsr-nav-cta {
	white-space: nowrap;
}

/* ---------- Hero ---------- */

.svsr-hero {
	position: relative;
	background: #131a15;
	color: var(--svsr-white);
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: min(44rem, 86vh);
}

.svsr-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(55rem 30rem at 85% 10%, rgba(24, 107, 58, 0.35) 0%, rgba(19, 26, 21, 0) 65%),
		radial-gradient(40rem 24rem at 5% 100%, rgba(24, 107, 58, 0.28) 0%, rgba(19, 26, 21, 0) 70%);
	pointer-events: none;
}

.svsr-hero-paneel {
	position: relative;
	margin: 0;
	border-radius: var(--svsr-radius-lg);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	max-width: 40rem;
	opacity: 0;
	animation: svsrOpkomst 0.8s ease-out 0.5s forwards;
}

.svsr-hero-paneel img {
	width: 100%;
	height: auto;
	display: block;
}

.svsr-hero-lijn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 14rem;
	color: var(--svsr-green);
	opacity: 0.55;
	pointer-events: none;
}

.svsr-hero-lijn polyline {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	animation: svsrLijnTekenen 1.8s ease-out 0.4s forwards;
}

.svsr-hero-punt {
	fill: currentColor;
	opacity: 0;
	animation: svsrPuntOp 0.5s ease-out 1.3s forwards;
}

.svsr-hero-punt-twee {
	animation-delay: 1.7s;
}

.svsr-hero-punt-drie {
	animation-delay: 2.05s;
}

@keyframes svsrLijnTekenen {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes svsrPuntOp {
	to {
		opacity: 1;
	}
}

.svsr-hero-inner {
	position: relative;
	z-index: 1;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.svsr-hero-content {
	max-width: 46rem;
}

.svsr-hero-content > * {
	opacity: 0;
	transform: translateY(16px);
	animation: svsrOpkomst 0.65s ease-out forwards;
}

.svsr-hero-content > *:nth-child(1) {
	animation-delay: 0.1s;
}

.svsr-hero-content > *:nth-child(2) {
	animation-delay: 0.22s;
}

.svsr-hero-content > *:nth-child(3) {
	animation-delay: 0.38s;
}

.svsr-hero-content > *:nth-child(4) {
	animation-delay: 0.52s;
}

.svsr-hero-title .svsr-dot {
	display: inline-block;
	opacity: 0;
	transform: scale(0);
	animation: svsrDotLanden 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

@keyframes svsrOpkomst {
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes svsrDotLanden {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.svsr-hero-title {
	font-family: var(--svsr-font-serif);
	font-weight: 600;
	font-size: clamp(3rem, 7.5vw, 5.25rem);
	line-height: 1.05;
	color: var(--svsr-white);
	margin: 0.5rem 0 1.5rem;
}

.svsr-hero-text {
	font-size: 1.25rem;
	line-height: 1.6;
	max-width: 36rem;
	margin: 0 0 2.25rem;
	color: rgba(255, 255, 255, 0.92);
}

.svsr-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* ---------- Secties ---------- */

.svsr-section {
	padding: 5rem 0;
}

.svsr-section-grey {
	background: var(--svsr-grey);
}

.svsr-section-lightgreen {
	background: var(--svsr-green-light);
}

.svsr-section-diagonal {
	clip-path: polygon(0 2.5rem, 100% 0, 100% 100%, 0 100%);
	padding-top: 7rem;
}

.svsr-section-head {
	margin-bottom: 2.25rem;
}

.svsr-section-head-split {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
}

.svsr-intro {
	margin-bottom: 3.5rem;
}

/* ---------- Pijlers ---------- */

.svsr-pijler {
	position: relative;
	background: var(--svsr-grey);
	border-radius: var(--svsr-radius-lg);
	padding: 2.25rem 2rem;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svsr-pijler:hover {
	transform: translateY(-4px);
	box-shadow: var(--svsr-shadow);
}

.svsr-pijler-nummer {
	position: absolute;
	top: 0.75rem;
	right: 1.25rem;
	font-family: var(--svsr-font-serif);
	font-size: 3.25rem;
	font-weight: 600;
	color: rgba(24, 107, 58, 0.14);
	line-height: 1;
}

.svsr-pijler-titel {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
}

/* ---------- Kaarten ---------- */

.svsr-card {
	background: var(--svsr-white);
	border: 0;
	border-radius: var(--svsr-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--svsr-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svsr-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--svsr-shadow-hover);
}

.svsr-card-wide {
	flex-direction: row;
}

.svsr-card-media {
	position: relative;
	display: block;
}

.svsr-card-media > a {
	position: relative;
	display: block;
	height: 100%;
}

.svsr-card-media img {
	width: 100%;
	height: 100%;
	min-height: 14rem;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
}

.svsr-card-wide .svsr-card-media img {
	aspect-ratio: auto;
	min-height: 18rem;
}

.svsr-card-placeholder {
	display: block;
	position: relative;
	min-height: 14rem;
	height: 100%;
	background: linear-gradient(120deg, var(--svsr-green-light) 0%, #d7e9dd 100%);
	overflow: hidden;
}

.svsr-card-placeholder-lijn {
	position: absolute;
	inset: auto 0 0 0;
	width: 100%;
	height: 70%;
	color: var(--svsr-green);
	opacity: 0.45;
}

.svsr-chip {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(255, 255, 255, 0.92);
	color: var(--svsr-green-dark);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}

.svsr-reveal .svsr-datum-badge {
	opacity: 0;
	transform: scale(0.7);
	transition: opacity 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.svsr-revealed .svsr-datum-badge {
	opacity: 1;
	transform: scale(1);
}

.svsr-reveal .svsr-card-placeholder-lijn polyline {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	transition: stroke-dashoffset 1.3s ease-out 0.3s;
}

.svsr-revealed .svsr-card-placeholder-lijn polyline {
	stroke-dashoffset: 0;
}

.svsr-datum-badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	background: var(--svsr-black);
	color: var(--svsr-white);
	border-radius: 0.65rem;
	padding: 0.5rem 0.9rem 0.45rem;
	text-align: center;
	line-height: 1.1;
	display: inline-flex;
	flex-direction: column;
	box-shadow: 0 6px 18px rgba(23, 23, 23, 0.35);
}

.svsr-datum-dag {
	font-family: var(--svsr-font-serif);
	font-size: 1.6rem;
	font-weight: 600;
}

.svsr-datum-maand {
	font-size: 0.72rem;
	text-transform: lowercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.85);
}

.svsr-card-body-wrap {
	display: flex;
}

.svsr-card-body {
	padding: 1.9rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.45rem;
}

.svsr-card-title {
	font-family: var(--svsr-font-serif);
	font-weight: 600;
	font-size: 1.55rem;
	margin-bottom: 0;
}

.svsr-card-title a {
	color: var(--svsr-black);
	text-decoration: none;
}

.svsr-card-title a:hover,
.svsr-card-title a:focus {
	color: var(--svsr-green);
}

.svsr-card-meta {
	color: rgba(23, 23, 23, 0.62);
	font-size: 0.92rem;
	margin-bottom: 0.1rem;
	order: -1;
}

.svsr-card-intro {
	margin-bottom: 0.5rem;
}

.svsr-card-pub .svsr-card-body {
	justify-content: flex-start;
}

.svsr-card-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--svsr-green);
	margin-bottom: 0;
}

/* ---------- Badges ---------- */

.svsr-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	margin-bottom: 0.5rem;
}

.svsr-badge {
	display: inline-block;
	background: var(--svsr-green-light);
	color: var(--svsr-green-dark);
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.2rem 0.7rem;
	border-radius: 999px;
	text-decoration: none;
}

a.svsr-badge:hover,
a.svsr-badge:focus {
	background: var(--svsr-green);
	color: var(--svsr-white);
}

/* ---------- Personen ---------- */

.svsr-persoon {
	background: var(--svsr-white);
	border: 0;
	border-radius: var(--svsr-radius-lg);
	overflow: hidden;
	box-shadow: var(--svsr-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svsr-persoon:hover {
	transform: translateY(-4px);
	box-shadow: var(--svsr-shadow-hover);
}

.svsr-persoon-foto img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: top;
	display: block;
}

.svsr-persoon-body {
	padding: 1.6rem;
}

.svsr-persoon-naam {
	font-size: 1.2rem;
	margin-bottom: 0.125rem;
}

.svsr-persoon-functie {
	color: var(--svsr-green);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.svsr-persoon-bio {
	font-size: 0.95rem;
}

/* ---------- Thema-kaarten ---------- */

.svsr-thema-card {
	display: flex;
	flex-direction: column;
	background: var(--svsr-grey);
	border-radius: var(--svsr-radius-lg);
	padding: 1.9rem;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svsr-thema-card:hover,
.svsr-thema-card:focus {
	transform: translateY(-4px);
	box-shadow: var(--svsr-shadow);
}

.svsr-thema-naam {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--svsr-black);
}

.svsr-thema-count {
	color: rgba(23, 23, 23, 0.6);
	font-size: 0.9rem;
}

/* ---------- Pagina-onderdelen ---------- */

.svsr-page-head {
	padding: 4rem 0 2.25rem;
}

.svsr-page-title {
	font-family: var(--svsr-font-serif);
	font-weight: 600;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	line-height: 1.1;
}

.svsr-page-lead {
	font-size: 1.1875rem;
	max-width: 46rem;
}

.svsr-page-main {
	padding-bottom: 3rem;
}

.svsr-prose-container {
	max-width: 50rem;
}

.svsr-prose {
	max-width: 46rem;
}

.svsr-prose h2 {
	margin-top: 2.25rem;
	font-family: var(--svsr-font-serif);
	font-weight: 600;
}

.svsr-prose h3 {
	margin-top: 1.5rem;
	font-size: 1.2rem;
}

.svsr-prose ul {
	padding-left: 1.25rem;
}

.svsr-prose-small {
	font-size: 0.95rem;
}

.svsr-aside {
	background: var(--svsr-grey);
	border-radius: var(--svsr-radius-lg);
	padding: 2rem;
}

.svsr-aside-title {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--svsr-green);
	margin-bottom: 1rem;
}

.svsr-kernwaarden {
	font-family: var(--svsr-font-serif);
	font-size: 1.1rem;
	line-height: 1.9;
}

.svsr-over-tekst {
	font-size: 1.1rem;
	margin-bottom: 1.75rem;
}

.svsr-foto-rond {
	border-radius: var(--svsr-radius-lg);
	overflow: hidden;
	margin: 0 auto;
	box-shadow: var(--svsr-shadow);
	max-width: 27rem;
}

.svsr-foto-rond img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.svsr-featured-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.svsr-event-meta {
	color: rgba(23, 23, 23, 0.7);
	font-size: 1.05rem;
}

.svsr-event-cover img {
	width: 100%;
	max-height: 26rem;
	object-fit: cover;
	border-radius: var(--svsr-radius-lg);
}

.svsr-spreker {
	margin-bottom: 1.75rem;
}

.svsr-spreker-naam {
	font-size: 1.15rem;
	margin-bottom: 0.375rem;
}

.svsr-programma {
	max-width: 40rem;
}

.svsr-programma-tijd {
	white-space: nowrap;
	font-weight: 600;
}

.svsr-galerij-foto {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--svsr-radius);
}

/* ---------- CTA-band ---------- */

.svsr-ctaband {
	position: relative;
	background: var(--svsr-black);
	color: var(--svsr-white);
	padding: 5.5rem 0;
	overflow: hidden;
}

.svsr-ctaband::before {
	content: "";
	position: absolute;
	inset: -10%;
	background:
		linear-gradient(115deg, rgba(24, 107, 58, 0.35) 0%, rgba(23, 23, 23, 0) 55%),
		radial-gradient(60rem 20rem at 85% 120%, rgba(24, 107, 58, 0.4) 0%, rgba(23, 23, 23, 0) 70%);
	pointer-events: none;
	animation: svsrGloed 14s ease-in-out infinite alternate;
}

@keyframes svsrGloed {
	from {
		transform: translateX(-2%) scale(1);
	}
	to {
		transform: translateX(2%) scale(1.06);
	}
}

.svsr-ctaband .container {
	position: relative;
}

.svsr-ctaband-title {
	font-family: var(--svsr-font-serif);
	font-weight: 600;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	color: var(--svsr-white);
	margin-bottom: 1rem;
}

.svsr-ctaband-text {
	max-width: 40rem;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.15rem;
}

/* ---------- Formulier ---------- */

.svsr-form .form-control,
.svsr-form .form-select {
	border-radius: var(--svsr-radius);
	padding: 0.6rem 0.85rem;
}

.svsr-form .form-control:focus,
.svsr-form .form-select:focus {
	border-color: var(--svsr-green);
	box-shadow: 0 0 0 0.2rem rgba(24, 107, 58, 0.15);
}

.svsr-form .form-check-input:checked {
	background-color: var(--svsr-green);
	border-color: var(--svsr-green);
}

.svsr-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.svsr-alert-success {
	background: var(--svsr-green-light);
	border: 1px solid var(--svsr-green);
	color: var(--svsr-green-dark);
	border-radius: var(--svsr-radius);
	padding: 1rem 1.25rem;
}

.svsr-alert-error {
	background: #FBEDEA;
	border: 1px solid #B4331B;
	color: #7C2312;
	border-radius: var(--svsr-radius);
	padding: 1rem 1.25rem;
}

/* ---------- Footer ---------- */

.svsr-footer {
	background: var(--svsr-black);
	color: rgba(255, 255, 255, 0.85);
	padding: 4.5rem 0 2rem;
}

.svsr-footer a {
	color: var(--svsr-white);
}

.svsr-footer a:hover,
.svsr-footer a:focus {
	color: #9ED8B5;
}

.svsr-footer-heading {
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #9ED8B5;
	margin-bottom: 1rem;
}

.svsr-footer-logo img {
	height: 3.5rem;
	max-height: 3.5rem;
	width: auto;
}

.svsr-footer-name {
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--svsr-white);
}

.svsr-footer-payoff {
	font-family: var(--svsr-font-serif);
	font-size: 1.35rem;
	color: var(--svsr-white);
}

.svsr-footer-note {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
}

.svsr-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	margin-top: 3rem;
	padding-top: 1.5rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
}

/* ---------- Reveal-animatie (alleen met JS en zonder reduced-motion) ---------- */

.svsr-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.svsr-revealed {
	opacity: 1;
	transform: none;
}

/* ---------- Toegankelijkheid / motion ---------- */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.svsr-header,
	.svsr-card,
	.svsr-persoon,
	.svsr-pijler,
	.svsr-thema-card,
	.svsr-pijl,
	.svsr-reveal,
	.svsr-reveal .svsr-lijn,
	.svsr-reveal .svsr-datum-badge,
	.svsr-reveal .svsr-card-placeholder-lijn polyline {
		transition: none;
	}
	.svsr-reveal,
	.svsr-reveal .svsr-datum-badge {
		opacity: 1;
		transform: none;
	}
	.svsr-reveal .svsr-lijn {
		width: 4.5rem;
	}
	.svsr-reveal .svsr-lijn-kort {
		width: 2.5rem;
	}
	.svsr-hero-content > *,
	.svsr-hero-paneel,
	.svsr-hero-title .svsr-dot,
	.svsr-hero-lijn polyline,
	.svsr-hero-punt,
	.svsr-ctaband::before,
	.svsr-reveal .svsr-card-placeholder-lijn polyline {
		animation: none;
		opacity: 1;
		transform: none;
		stroke-dashoffset: 0;
	}
}

/* ---------- Responsief ---------- */

@media (max-width: 991.98px) {
	.svsr-card-wide {
		flex-direction: column;
	}
	.svsr-card-wide .svsr-card-media img {
		min-height: 14rem;
	}
}

@media (max-width: 767.98px) {
	.svsr-card-body {
		padding: 1.5rem;
	}
	.svsr-hero {
		min-height: 70vh;
	}
	.svsr-hero-inner {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.svsr-section {
		padding: 3.25rem 0;
	}
	.svsr-section-diagonal {
		clip-path: polygon(0 1.25rem, 100% 0, 100% 100%, 0 100%);
		padding-top: 4.5rem;
	}
	.svsr-ctaband {
		padding: 4rem 0;
	}
}
