.help-center-shell {
  display: grid;
  gap: 22px;
}

.help-center-shell .h2 {
  letter-spacing: 0;
}

.help-center-shell .help-center-hero {
  display: grid;
  gap: 18px;
}

.help-center-shell .help-hero-aside {
  display: grid;
  gap: 14px;
}

.help-center-shell .help-search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.help-center-shell .help-search-bar .input {
  flex: 1 1 320px;
}

.help-center-shell .help-chip-row,
.help-center-shell .help-quick-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.help-center-shell .help-quick-grid-inline {
  margin-top: 12px;
}

.help-center-shell .help-quick-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
}

html[data-theme="light"] .help-center-shell .help-quick-card {
  border-color: rgba(12, 20, 28, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.help-center-shell .help-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-center-shell .help-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(16, 21, 28, 0.64);
  padding: 18px 20px;
}

html[data-theme="light"] .help-center-shell .help-panel {
  border-color: rgba(12, 20, 28, 0.08);
  background: #ffffff;
}

.help-center-shell .help-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.help-center-shell .help-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.help-center-shell .help-link-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(16, 21, 28, 0.5);
  color: inherit;
  text-decoration: none;
}

html[data-theme="light"] .help-center-shell .help-link-card {
  border-color: rgba(12, 20, 28, 0.08);
  background: #ffffff;
}

.help-center-shell .help-link-kicker {
  color: var(--text-muted, #8f9aa8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-center-shell .help-link-card strong {
  color: inherit;
  font-size: 1.02rem;
  line-height: 1.25;
}

.help-center-shell .help-link-card p {
  margin: 0;
  color: var(--text-muted, #8f9aa8);
  line-height: 1.5;
}

.help-center-shell .help-link-meta {
  color: var(--text-muted, #8f9aa8);
  font-size: 12px;
}

@media (max-width: 991px) {
  .help-center-shell .help-panel-grid,
  .help-center-shell .help-link-grid {
    grid-template-columns: 1fr;
  }

  .help-center-shell .help-panel-head {
    flex-direction: column;
  }
}
