/* ================================
   Dekkater container
================================ */

.dekkater-row {
	background: #f4eee6;
	border-radius: 32px;
	padding: 32px;
	margin-bottom: 32px;
	box-sizing: border-box;
	width: 100%;
}

/* ================================
   Titel (helemaal bovenaan)
================================ */

.dekkater-title {
	margin: 0 0 24px 0;
	font-size: 1.9rem;
	font-weight: 500;
	color: #222;
}

/* ================================
   Body: foto + wit blok
================================ */

.dekkater-body {
	display: flex;
	gap: 32px;
	align-items: flex-start; /* 🔑 bovenkanten gelijk */
}

/* ================================
   Foto
================================ */

.dekkater-photo img,
.dekkater-photo-placeholder {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 16px;
	background: #ddd;
	display: block;
}

/* ================================
   Witte kaart (gegevens)
================================ */

.dekkater-card {
	background: #fff;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.06);
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-sizing: border-box;
}

/* ================================
   Rij per gegeven (label + waarde)
================================ */

.dekkater-row-item {
	display: grid;
	grid-template-columns: 220px 1fr;
	column-gap: 24px;
	align-items: start;
}

/* Label links */

.dekkater-label {
	color: #8a8a8a;
	font-weight: 600;
	white-space: nowrap;
}

/* Waarde rechts */

.dekkater-value {
	color: #444;
	line-height: 1.5;
}

/* ================================
   Responsive
================================ */

@media (max-width: 900px) {

	.dekkater-body {
		flex-direction: column;
	}

	.dekkater-photo img,
	.dekkater-photo-placeholder {
		width: 140px;
		height: 140px;
	}

	.dekkater-row-item {
		grid-template-columns: 1fr;
	}

	.dekkater-label {
		margin-bottom: 4px;
	}
}
