.dekkater-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.dekkater-card {
	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: 28px;
	align-items: start;
	box-shadow: 0 2px 20px rgba(58, 50, 48, 0.10);
}

.dekkater-card::before {
	content: "";
	position: absolute;
	top: -48px;
	right: -48px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(215, 160, 106, 0.22);
	pointer-events: none;
}

.dekkater-photo img,
.dekkater-photo-placeholder {
	display: block;
	width: 150px;
	height: 190px;
	object-fit: cover;
	object-position: center top;
	border-radius: 14px;
	border: 2px solid var(--nlkv-accent, #d7a06a);
	background: #e8d9c4;
}

.dekkater-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

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

.dekkater-info-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: rgba(58, 50, 48, 0.06);
	border-radius: 14px;
	padding: 18px 20px;
}

.dekkater-row-item {
	display: grid;
	grid-template-columns: 180px 1fr;
	column-gap: 16px;
	align-items: start;
}

.dekkater-label strong {
	font-size: 0.88rem;
	font-weight: 600;
	color: #b8783a;
}

.dekkater-value {
	font-size: 0.92rem;
	line-height: 1.5;
	color: #3a3230;
}

.dekkater-value a {
	color: #b8783a;
	text-decoration: none;
}

.dekkater-value a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

@media (max-width: 900px) {
	.dekkater-row-item {
		grid-template-columns: 1fr;
	}

	.dekkater-label {
		margin-bottom: 2px;
	}
}

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

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