/* Help / knowledge base — extends legal-page patterns for article lists */
.help-grid {
  display: grid;
  gap: 20px;
  margin: 32px 0 48px;
}
@media (min-width: 720px) {
  .help-grid { grid-template-columns: 1fr 1fr; }
}
.help-card {
  display: block;
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
}
.legal-body a.help-card,
.help-body a.help-card {
  text-decoration: none;
  color: inherit;
}
.legal-body a.help-card:hover,
.help-body a.help-card:hover {
  text-decoration: none;
  color: inherit;
}
.help-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 24px rgba(15, 23, 36, 0.06);
}
.help-card-kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.help-card h2 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  line-height: 1.3;
}
.help-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.help-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.help-section-title:first-of-type { margin-top: 8px; }
.help-toc {
  margin: 0 0 28px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.help-toc p {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.help-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.help-toc a {
  color: var(--blue);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.help-body code,
.legal-body code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}
.help-body pre,
.legal-body pre {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: var(--navy);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 16px 18px;
  overflow-x: auto;
  margin: 0 0 16px;
  line-height: 1.55;
}
.help-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.help-body ol li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}
.help-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 0.9375rem;
}
.help-body th,
.help-body td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border: 1px solid var(--border);
  line-height: 1.5;
}
.help-body th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  font-weight: 500;
}
.help-body td {
  color: var(--text);
}
.help-next {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.help-next p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 10px;
}
.help-next a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-right: 16px;
}
