.help-page {
  padding-bottom: 72px;
}

.help-hero {
  padding: 72px 0 58px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.help-hero__inner {
  max-width: 820px;
}

.help-eyebrow {
  margin-bottom: 10px;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.help-hero h1 {
  max-width: 760px;
}

.help-hero__lead {
  max-width: 700px;
  margin-top: 18px;
  color: var(--color-muted);
}

.help-hero__actions,
.help-note__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.help-hero__actions {
  margin-top: 24px;
}

.help-secondary-link {
  border-bottom: 1px solid currentColor;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.help-secondary-link:hover {
  color: var(--color-brand-strong);
}

.help-hero__microcopy {
  margin-top: 9px;
  color: var(--color-muted);
  font-size: 13px;
}

.help-search {
  max-width: 620px;
  margin-top: 30px;
}

.help-search label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.help-search__field {
  position: relative;
}

.help-search__field i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: var(--color-muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.help-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
  font-size: 16px;
}

.help-search input:focus {
  border-color: var(--color-brand);
  outline: 3px solid color-mix(in srgb, var(--color-brand) 22%, transparent);
}

.help-library {
  padding: 64px 0;
}

.help-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.help-section-heading > p {
  color: var(--color-muted);
  font-size: 14px;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tutorial-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.tutorial-card[hidden] {
  display: none;
}

.tutorial-card__video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b2d50;
  border-bottom: 1px solid var(--color-border);
}

.tutorial-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0b2d50;
}

.tutorial-card__body {
  padding: 22px;
}

.tutorial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.tutorial-card__number {
  color: var(--color-brand);
  letter-spacing: .08em;
}

.tutorial-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
}

.tutorial-card h3 i {
  width: 22px;
  color: var(--color-brand);
  text-align: center;
}

.tutorial-card__body > p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 15px;
}

.tutorial-card__cta {
  display: inline-flex;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--color-brand-strong);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.tutorial-card__cta:hover {
  color: var(--color-brand);
}

.help-empty {
  padding: 28px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  text-align: center;
}

.help-note__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.help-note h2 {
  font-size: 28px;
}

.help-note__inner > div:first-child > p:last-child {
  margin-top: 8px;
  color: var(--color-muted);
}

@media (max-width: 800px) {
  .help-hero {
    padding: 48px 0 42px;
  }

  .help-hero h1 {
    font-size: 40px;
  }

  .tutorial-grid {
    grid-template-columns: 1fr;
  }

  .help-section-heading,
  .help-note__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .help-hero h1 {
    font-size: 34px;
  }

  .help-hero__actions,
  .help-note__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .help-hero__actions .btn,
  .help-note__actions .btn {
    width: 100%;
    text-align: center;
  }

  .help-secondary-link {
    width: fit-content;
  }

  .help-library {
    padding: 44px 0;
  }

  .tutorial-card__body {
    padding: 18px;
  }

  .help-note__inner {
    padding: 24px;
  }
}
