/* GRID */
.bestuur-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* KAART WRAPPER */
.bestuur-card-wrapper {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, #fdf6ee 0%, #f0e5d4 100%);
	border-radius: 24px;
	padding: 28px;
	color: #342f2e;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: start;
	box-shadow: 0 2px 20px rgba(58, 50, 48, 0.10);
}

/* decoratieve cirkel */
.bestuur-card-wrapper::before {
	content: "";
	position: absolute;
	top: -48px;
	right: -48px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(215, 160, 106, 0.22);
	pointer-events: none;
}

/* FOTO */
.bestuur-photo img,
.bestuur-photo-placeholder {
	display: block;
	width: 130px;
	height: 165px;
	object-fit: cover;
	object-position: center top;
	border-radius: 14px;
	border: 2px solid var(--nlkv-accent, #d7a06a);
	background: #e8d9c4;
}

/* RECHTERKOLOM */
.bestuur-right {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* FUNCTIETITEL */
.bestuur-title {
	margin: 0;
	font-family: "FontinSans", Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #b8783a;
}

/* INFO VLAK */
.bestuur-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: rgba(58, 50, 48, 0.06);
	border-radius: 14px;
	padding: 16px 18px;
}

.bestuur-item {
	font-size: 0.95rem;
	line-height: 1.4;
	color: #3a3230;
}

.bestuur-item strong {
	color: #b8783a;
	font-weight: 600;
}

.bestuur-item a {
	color: #b8783a;
	text-decoration: none;
}

.bestuur-item a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.bestuur-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.bestuur-card-wrapper {
		grid-template-columns: 1fr;
	}

	.bestuur-photo img,
	.bestuur-photo-placeholder {
		width: 130px;
		height: 165px;
	}
}
