/* ===================================================================
   Productbestanden ([product_files] / theme_product_files)
   Download-kaarten onder elkaar: paars bestandsicoon, titel, meta en
   een outline download-knop. Naar het ontwerp.
   =================================================================== */
.lk-files { display: flex; flex-direction: column; gap: 16px; }
.lk-files__heading {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-weight: 400;
	color: #2A1F40;
	margin: 0 0 4px;
}

.lk-file-card {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 22px 24px;
	background: #FAF6F0;
	border: 1px solid #E8DFD3;
	border-radius: 18px;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.lk-file-card:hover {
	border-color: #C2B5D2;
	background: #fff;
	box-shadow: 0 12px 30px -18px rgba(82, 63, 109, .35);
}

.lk-file-card__icon {
	flex: none;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: #3A2D52;
	color: #FAF6F0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lk-file-card__body { flex: 1; min-width: 0; }
.lk-file-card__title {
	display: block;
	font-family: var(--font-sans, 'Manrope', sans-serif);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.25;
	color: #1F1A2A;
}
.lk-file-card__meta {
	display: block;
	margin-top: 6px;
	font-family: var(--font-sans, 'Manrope', sans-serif);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #8B8597;
}

.lk-file-card__btn {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border: 1px solid #C2B5D2;
	border-radius: 999px;
	background: transparent;
	color: #523F6D;
	font-family: var(--font-sans, 'Manrope', sans-serif);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.lk-file-card__btn:hover {
	background: #523F6D;
	border-color: #523F6D;
	color: #FAF6F0!important;
}

/* ----- Mobiel: knop onder de tekst ----- */
@media (max-width: 560px) {
	.lk-file-card { flex-wrap: wrap; gap: 16px; }
	.lk-file-card__icon { width: 52px; height: 52px; border-radius: 14px; }
	.lk-file-card__body { flex: 1 1 calc(100% - 74px); }
	.lk-file-card__btn { flex: 1 1 100%; justify-content: center; }
	.lk-file-card__title { font-size: 17px; }
}