/*
 * Koelkastwijzer overzichtshubs.
 *
 * Visuele verfijning voor de centrale koopgids- en probleemoverzichten.
 * Structurele componentlogica blijft in de oorspronkelijke paginastylesheets;
 * dit bestand verzorgt uitsluitend de specialistische presentatie van de hubs.
 */

/* Gedeelde hero-dichtheid. */
.wg-guides-hub__hero-grid,
.wg-problem-page__hero-grid {
	gap: 56px;
}

/* Koopgidsen: scanbare bewijsregels onder de intro. */
.wg-guides-hub .wg-hub-hero__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 20px;
	color: var(--wg-color-text-muted);
	font-size: 13px;
	font-weight: 500;
}

.wg-guides-hub .wg-hub-hero__highlights span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.wg-guides-hub .wg-hub-hero__highlights span::before {
	content: "✓";
	color: var(--wg-color-success);
	font-weight: 800;
}

/* Koopgidsen: functionele mini-selectie in plaats van decoratieve lege kaarten. */
.wg-guides-hub__hero-visual {
	display: grid;
	place-items: center;
	min-height: 240px;
	padding: 28px;
}

.wg-guides-hub__selection-card {
	width: min(100%, 300px);
	padding: 18px;
	background: var(--wg-color-surface);
	border: 1px solid var(--wg-color-border);
	border-radius: 12px;
	box-shadow: var(--wg-shadow-card);
}

.wg-guides-hub__selection-top,
.wg-guides-hub__selection-main,
.wg-guides-hub__selection-specs {
	display: flex;
	align-items: center;
}

.wg-guides-hub__selection-top {
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--wg-color-border);
}

.wg-guides-hub__selection-top span {
	color: var(--wg-color-text-muted);
	font-size: 11px;
	font-weight: 600;
}

.wg-guides-hub__selection-top b {
	padding: 4px 7px;
	background: var(--wg-color-gold-soft);
	border: 1px solid var(--wg-color-gold);
	border-radius: 999px;
	color: var(--wg-color-gold-text);
	font-size: 10px;
	font-weight: 700;
}

.wg-guides-hub__selection-main {
	gap: 13px;
	padding: 17px 0;
}

.wg-guides-hub__fridge-icon {
	display: grid;
	place-items: center;
	flex: 0 0 44px;
	width: 44px;
	height: 52px;
	background: var(--wg-color-primary-soft);
	border: 1px solid var(--wg-color-border);
	border-radius: 9px;
	color: var(--wg-color-primary);
}

.wg-guides-hub__fridge-icon svg {
	width: 25px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.wg-guides-hub__selection-main strong,
.wg-guides-hub__selection-main small {
	display: block;
}

.wg-guides-hub__selection-main strong {
	margin-bottom: 3px;
	color: var(--wg-color-text);
	font-size: 14px;
	font-weight: 700;
}

.wg-guides-hub__selection-main small {
	color: var(--wg-color-text-muted);
	font-size: 11px;
}

.wg-guides-hub__selection-specs {
	gap: 7px;
}

.wg-guides-hub__selection-specs span {
	padding: 6px 8px;
	background: var(--wg-color-surface-soft);
	border: 1px solid var(--wg-color-border);
	border-radius: 8px;
	color: var(--wg-color-text-muted);
	font-size: 10px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.wg-guides-hub__empty {
	max-width: 760px;
	padding: 28px 30px;
	background: var(--wg-color-surface);
	border: 1px solid var(--wg-color-border);
	border-radius: 12px;
	box-shadow: var(--wg-shadow-card);
}

.wg-guides-hub__empty h2 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.25;
}

.wg-guides-hub__empty p {
	max-width: 620px;
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

/* Problemen: rustige diagnosevisual die ook op een lege site betekenis heeft. */
.wg-problem-page__hero-visual {
	display: grid;
	gap: 12px;
	padding: 20px;
}

.wg-problem-page__visual-card--main {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 0;
	padding: 17px;
	box-shadow: none;
}

.wg-problem-page__visual-icon {
	width: 48px;
	height: 52px;
	background: var(--wg-color-primary-soft);
}

.wg-problem-page__visual-icon svg {
	width: 27px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.wg-problem-page__visual-copy strong,
.wg-problem-page__visual-copy small {
	display: block;
}

.wg-problem-page__visual-copy strong {
	margin-bottom: 4px;
	color: var(--wg-color-text);
	font-size: 14px;
	font-weight: 700;
}

.wg-problem-page__visual-copy small {
	color: var(--wg-color-text-muted);
	font-size: 11px;
	line-height: 1.55;
}

.wg-problem-page__visual-flow {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
}

.wg-problem-page__visual-flow span {
	display: grid;
	gap: 5px;
	padding: 10px;
	background: var(--wg-color-surface);
	border: 1px solid var(--wg-color-border);
	border-radius: 9px;
	color: var(--wg-color-text-muted);
	font-size: 10px;
	line-height: 1.35;
}

.wg-problem-page__visual-flow b {
	display: grid;
	place-items: center;
	width: 21px;
	height: 21px;
	background: var(--wg-color-primary-soft);
	border-radius: 6px;
	color: var(--wg-color-primary);
	font-size: 10px;
	font-weight: 800;
}

/* De template gebruikt semantisch een geordende lijst; verwijder browsermarkers. */
.wg-problem-process__intro {
	max-width: 760px;
	margin-bottom: 26px;
}

.wg-problem-process__steps {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wg-problem-process__steps > li {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 13px;
	align-items: start;
	padding: 20px;
	background: var(--wg-color-surface);
	border: 1px solid var(--wg-color-border);
	border-radius: 12px;
}

.wg-problem-process__steps > li > span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	background: var(--wg-color-primary-soft);
	border: 1px solid var(--wg-color-border);
	border-radius: 9px;
	color: var(--wg-color-primary);
	font-size: 12px;
	font-weight: 800;
}

.wg-problem-process__steps > li strong {
	margin-top: 1px;
	font-size: 14px;
	line-height: 1.35;
}

.wg-problem-process__steps > li p {
	margin-top: 5px;
	font-size: 12px;
	line-height: 1.55;
}

@media (max-width: 900px) {
	.wg-guides-hub__hero-visual {
		display: none;
	}

	.wg-problem-page__visual-flow {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.wg-guides-hub .wg-hub-hero__highlights {
		display: grid;
		gap: 8px;
	}

	.wg-guides-hub__empty {
		padding: 22px;
	}
}
