div.helplist-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

div.helplist-header h2 {
	margin: 0;
	color: var(--accent, var(--primary));
	font-size: 20px;
}

div.helplist-search {
	flex: 1;
	max-width: 420px;
	margin-left: auto;
}

div.helplist-search input {
	width: 100%;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--text);
	box-shadow: inset 0 1px 0 #ffffff08;
}

div.helplist-search input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: inset 0 1px 0 #ffffff10;
}

div.help-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 14px;
}

a.help-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px;
	border-radius: 12px;
	background: var(--surface);
	border: 1px solid var(--border);
	text-decoration: none;
	color: inherit;
	transition: transform .24s ease, box-shadow .24s ease;
}

a.help-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

div.card-icon {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: linear-gradient(180deg, #ffffff08, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent, var(--primary));
	font-size: 18px;
	border: 1px solid var(--border);
}

div.card-body h3 {
	margin: 0;
	font-size: 16px;
}

div.card-body p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 13px;
}