/*
 * Affiliate Playground Pro — Expertquote Module
 * Accentkleur + achtergrond via CSS custom properties (--app-eq-color, --app-eq-bg).
 */

/* ── Base block ──────────────────────────────────────────────────────────── */

.app-expertquote {
	margin: 1.5em 0;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.app-eq__photo-wrap {
	flex-shrink: 0;
}

.app-eq__photo {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

.app-eq__body {
	flex: 1;
	min-width: 0;
}

.app-eq__quote {
	margin: 0 0 10px;
	font-style: italic;
}

.app-eq__quote::before { content: '\201C'; }
.app-eq__quote::after  { content: '\201D'; }

.app-eq__attribution {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.app-eq__name {
	font-size: 14px;
	font-weight: 700;
}

.app-eq__job-title {
	font-size: 12px;
	color: #777;
}

.app-eq__bio {
	font-size: 12px;
	color: #888;
	margin-top: 4px;
	line-height: 1.5;
	display: block;
}

/* ── Stijl A — Minimalistisch ────────────────────────────────────────────── */

.app-eq-style-a {
	border-left: 4px solid var(--app-eq-color, #DE369D);
	background: #fafafa;
	padding: 14px 16px;
	border-radius: 0 4px 4px 0;
}

/* ── Stijl B — Kader ─────────────────────────────────────────────────────── */

.app-eq-style-b {
	border: 2px solid var(--app-eq-color, #DE369D);
	border-radius: 8px;
	padding: 16px 18px;
	background: #fff;
}

/* ── Stijl C — Accent achtergrond ────────────────────────────────────────── */

.app-eq-style-c {
	background-color: var(--app-eq-bg, rgba(222, 54, 157, 0.08));
	border-radius: 8px;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.app-eq-style-c .app-eq__photo-wrap {
	margin-bottom: 12px;
}

.app-eq-style-c .app-eq__photo {
	width: 80px;
	height: 80px;
}

.app-eq-style-c .app-eq__attribution {
	align-items: center;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
	.app-expertquote {
		flex-direction: column;
		align-items: flex-start;
	}

	.app-eq-style-c {
		align-items: center;
	}
}
