.keurmeester-row {
	display: flex;
	gap: 32px;
	padding: 32px;
	margin-bottom: 32px;
	background: #dfcab76e;
	border-radius: 32px;
	align-items: flex-start;
	box-sizing: border-box;
	width: 100%;
}

/* FOTO */
.keurmeester-photo {
	flex: 0 0 140px;
}

.keurmeester-photo img {
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 12px;
}

/* NAAM + ADRES */
.keurmeester-info {
	flex: 0 0 260px;
}

.keurmeester-name {
	font-size: 1.8rem;
	font-weight: 500;
	margin: 0 0 8px 0;
}

.keurmeester-address {
	color: #666;
	line-height: 1.4;
}

/* BLOKKEN */
.keurmeester-boxes {
	display: flex;
	gap: 24px;
	align-items: stretch;
	flex: 1;          /* 🔑 DIT ONTBRAK */
	min-width: 0;     /* 🔑 voorkomt overflow */
}



/* Bevoegdheden = vult ruimte */
.keurmeester-box--bevoegdheden {
	flex: 1;
	min-width: 0;
}

/* Aangesloten bij = smal */
.keurmeester-box--aangesloten {
	flex: 0 0 220px;
}

/* BLOK BASIS */
.keurmeester-box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: #fff;
	border-radius: 20px;
	padding: 24px 24px; /* meer boven/onder */
	box-shadow: 0 6px 20px rgba(0,0,0,0.06);
	min-height: 140px;
}


.keurmeester-box p {
	margin: 0;
	line-height: 1.5;
}
