/* ===================================================================
   Productinhoud-secties (theme_product_content): Werking / Over deze
   steen / Afkomst. 2-koloms: titel links, inhoud rechts, met scheidslijn.
   =================================================================== */
.lk-pc {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 48px;
	padding: 48px 0;
	border-top: 1px solid rgba(42, 31, 64, .10);
}

.lk-pc__title,
.lk-pc__lead {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	color: #2A1F40;
	line-height: 1.08;
	letter-spacing: -.01em;
	margin: 0;
	font-size: clamp(28px, 3vw, 40px);
}

/* Leestekst */
.lk-pc__intro,
.lk-pc__body,
.lk-pc__aspect-text {
	font-family: var(--font-sans, 'Manrope', sans-serif);
	font-size: 16px;
	line-height: 1.75;
	color: #3D3548;
}
.lk-pc__intro p,
.lk-pc__body p,
.lk-pc__aspect-text p { margin: 0 0 1em; }
.lk-pc__intro p:last-child,
.lk-pc__body p:last-child,
.lk-pc__aspect-text p:last-child { margin-bottom: 0; }
.lk-pc__body a { color: #523F6D; text-decoration: underline; text-underline-offset: 2px; }
.lk-pc__intro { margin-bottom: 28px; font-size: 17px; }

/* Drop-cap bij "Over deze steen" */
/*.lk-pc__body--dropcap > p:first-child::first-letter {*/
/*	font-family: 'Cormorant Garamond', serif;*/
/*	float: left;*/
/*	font-size: 64px;*/
/*	line-height: .8;*/
/*	font-weight: 400;*/
/*	color: #2A1F40;*/
/*	padding: 6px 12px 0 0;*/
/*}*/

/* Werking-aspecten in 2-koloms grid met icoon-rondje */
.lk-pc__aspects {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px 32px;
}
.lk-pc__aspect{
	display: flex; justify-content: flex-start; gap: 10px;
}
.lk-pc__aspect:hover .lk-pc__aspect-icon {
	background: rgba(184, 146, 72, .52);
	color: var(--purple-800);
}

.lk-pc__aspect-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.lk-pc__aspect-icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(184, 146, 72, .12);
	color: #523F6D;
	font-size: 16px;
}
.lk-pc__aspect-title {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	font-size: 21px;
	line-height: 1.2;
	color: #2A1F40;
	margin: 0;
}
.lk-pc__aspect-text { font-size: 13px; line-height: 1.6; color: #5B5466; }

/* Mobiel: titel boven de inhoud, aspecten 1 kolom */
@media (max-width: 860px) {
	.lk-pc { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
	.lk-pc__aspects { grid-template-columns: 1fr; }
}