/* ── Frontend block wrapper ───────────────────────────────────────────────── */

.pop-help-components {
	margin-top: 2em;
	margin-bottom: 2em;
	padding: 1em 1em;
	border: 1px solid #dbe3ec;
	border-radius: 8px;
	background: #f8fafc;
}

.pop-help-components__label {
	margin: 0 0 1em;
	font-size: 1.5rem;
	font-weight: 400;
	/* text-transform: uppercase; */
	color: #1f1f1f;
}

/* ── Card list ───────────────────────────────────────────────────────────── */

.pop-help-components__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: auto auto;
	gap: 10px;
}

/* .pop-help-components__item {
	display: block;
} */

/* Base card */
.pop-help-components__chip {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0px 16px 0px 0px;
	background: #ffffff;
	color: #243447;
	border: 1px solid #dfe7ef;
	border-radius: 10px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pop-help-components__chip:hover,
.pop-help-components__chip:focus {
	background: #ffe3f6;
	border-color: #cad5e2;
	/* box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06); */
	color: #172554;
	/* transform: translateY(-1px); */
}

.pop-help-components__chip:focus {
	outline: 2px solid #cbd5e1;
	outline-offset: 2px;
}

/* ── Thumbnail ───────────────────────────────────────────────────────────── */

.pop-help-components__thumb {
	width: 105px;
	height: 75px;
	border-radius: 8px 0px 0px 8px ;
	object-fit: cover;
	flex-shrink: 0;
	display: block;
	background: #eef2f7;
}
.pop-help-components__chip:hover .pop-help-components__thumb{
  mix-blend-mode: multiply;
}

/* ── Label + arrow ───────────────────────────────────────────────────────── */

.pop-help-components__chip-label {
	flex: 1;
	min-width: 0;
	font-size: 1.5rem;
	line-height: 1.35;
	font-weight: 600;
}

.pop-help-components__chip-arrow {
	color: #242424;
	font-size: 2rem;
	line-height: 1;
	flex-shrink: 0;
	transition: color 0.15s ease, transform 0.15s ease;
	display: inline-block;
}

.pop-help-components__chip:hover .pop-help-components__chip-arrow,
.pop-help-components__chip:focus .pop-help-components__chip-arrow {
	color: #64748b;
	transform: translateX(2px);
}

/* Category (very subtle green tint) */
/* .pop-help-components__item--category .pop-help-components__chip {
	background: #f8fbf8;
	color: #2f4a35;
	border-color: #dbe7dd;
} */

/* .pop-help-components__item--category .pop-help-components__chip:hover,
.pop-help-components__item--category .pop-help-components__chip:focus {
	background: #f1f7f2;
	border-color: #c8d9cb;
	color: #243a29;
} */

/* Tag (very subtle purple tint) */
/* .pop-help-components__item--tag .pop-help-components__chip {
	background: #faf9fc;
	color: #43375d;
	border-color: #e4deef;
} */

/* .pop-help-components__item--tag .pop-help-components__chip:hover,
.pop-help-components__item--tag .pop-help-components__chip:focus {
	background: #f4f1f9;
	border-color: #d6cdea;
	color: #332848;
} */

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

@media ( max-width: 600px ) {


	.pop-help-components__thumb {
		width: 40px;
		height: 40px;
	}


	.pop-help-components__list {
		grid-template-columns: auto;
	}
}