.help-hero {
  border-bottom: 1px solid var(--color-line);
  background: var(--color-panel);
}

.help-hero-inner {
  display: grid;
  justify-items: start;
}

.help-hero h1 {
  max-width: 860px;
  margin-top: 24px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 64px);
}

.help-hero .lead {
  margin-bottom: 0;
}

.help-fact-row {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.help-document {
  padding-top: 54px;
  padding-bottom: var(--section-space);
}

.help-category {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  padding-top: 74px;
  padding-bottom: 84px;
  border-bottom: 1px solid var(--color-line);
}

.help-category:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.help-category-heading {
  min-width: 0;
}

.help-category-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.6vw, 46px);
}

.help-category-heading p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--color-muted);
}

.help-category .faq-list,
.help-category .callout,
.help-category .help-actions {
  grid-column: 2;
  min-width: 0;
}

.help-category .faq-list {
  align-self: start;
}

.help-category .faq-item summary {
  font-size: 17px;
}

.help-category .faq-answer {
  max-width: none;
  line-height: 1.85;
}

.help-category .faq-answer p:last-child {
  margin-bottom: 0;
}

.help-category .callout {
  margin-top: 28px;
  margin-bottom: 0;
}

.help-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
}

.help-actions h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.help-actions p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--color-muted);
}

@media (max-width: 860px) {
  .help-category {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .help-category .faq-list,
  .help-category .callout,
  .help-category .help-actions {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .help-document {
    padding-top: 38px;
  }

  .help-hero h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .help-category {
    gap: 24px;
  }

  .help-category-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .help-category .faq-item summary {
    font-size: 16px;
  }

  .help-actions {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px;
  }

  .help-actions .btn {
    width: 100%;
  }
}