/* Help pages */

.help-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 28px 0 40px;
}
.help-card {
	background: #f4f7fb;
	border: 1px solid #e1e9f2;
	border-radius: 10px;
	padding: 22px 20px;
	text-decoration: none;
	display: block;
	color: inherit;
	transition: border-color 0.15s;
}
.help-card:hover { border-color: #1d5f8a; text-decoration: none; color: inherit; }
.help-card .help-icon { font-size: 1.7rem; margin-bottom: 10px; }
.help-card h3 { font-size: 1rem; font-weight: 700; color: #133f5e; margin: 0 0 6px; }
.help-card p { font-size: 0.88rem; color: #5a6a7a; margin: 0; line-height: 1.5; }

.help-article { max-width: 780px; }
.help-article h2 { color: #133f5e; font-size: 1.4rem; margin: 32px 0 10px; border-bottom: 1px solid #e1e9f2; padding-bottom: 6px; }
.help-article h3 { color: #1d5f8a; font-size: 1.05rem; margin: 20px 0 8px; }
.help-article ol, .help-article ul { padding-left: 26px; margin-bottom: 16px; }
.help-article li { margin-bottom: 7px; line-height: 1.65; color: #334155; }
.help-article p { color: #334155; line-height: 1.7; margin-bottom: 14px; }
.help-article strong { color: #1a1a2e; }

.help-tip {
	background: #e8f4fd;
	border-left: 4px solid #1d5f8a;
	padding: 12px 16px;
	border-radius: 0 6px 6px 0;
	margin: 16px 0;
	font-size: 0.93rem;
	color: #1a3a55;
	line-height: 1.6;
}
.help-warn {
	background: #fff8e1;
	border-left: 4px solid #f5a623;
	padding: 12px 16px;
	border-radius: 0 6px 6px 0;
	margin: 16px 0;
	font-size: 0.93rem;
	color: #5a3e00;
	line-height: 1.6;
}

.help-page-title { margin: 24px 0 6px; font-size: 1.8rem; color: #133f5e; }
.help-page-intro { font-size: 1.05rem; color: #5a6a7a; margin-bottom: 28px; line-height: 1.7; }
.help-back-top {
	display: inline-block;
	margin-bottom: 14px;
	padding: 3px 12px;
	font-size: 0.85rem;
	color: #1d5f8a;
	border: 1px solid #1d5f8a;
	border-radius: 4px;
	text-decoration: none;
}
.help-back-top:hover { background: #1d5f8a; color: #fff; text-decoration: none; }

.help-back { display: inline-block; margin: 32px 0 8px; color: #1d5f8a; font-size: 0.95rem; text-decoration: none; }
.help-back:hover { text-decoration: underline; }

/* legacy classes kept for any lingering references */
.helpindextree a { text-decoration: underline; }
.helpheader { font-weight: bold; }
.backtohelp { display: block; float: right; }
