.hero--subpage {
  padding-top: calc(var(--space-16) + var(--nav-height));
  padding-bottom: var(--space-16);
}

.section-heading h2 {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-layout {
  align-items: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-question {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

.faq-answer {
  margin-bottom: var(--space-2);
}

.faq-answer-list {
  padding-left: 1.1rem;
}

.faq-answer-list li {
  list-style: disc;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
}

.faq-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background-color: #000;
}

.faq-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  background: linear-gradient(to right, rgba(5, 6, 10, 0.96), rgba(10, 11, 20, 0.96));
}

.faq-sidebar__title {
  font-size: var(--font-size-2xl);
}

.faq-sidebar__list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
}

.faq-sidebar__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary-strong);
}

.faq-sidebar__actions .btn {
  width: 100%;
}

.faq-sidebar__note .small-text {
  font-size: var(--font-size-xs);
}

.faq-contact-cta {
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .faq-contact-cta {
    flex-direction: row;
  }
}

@media (max-width: 767.98px) {
  .hero--subpage {
    padding-top: calc(var(--space-12) + var(--nav-height));
    padding-bottom: var(--space-12);
  }
  .faq-sidebar__actions .btn {
    width: 100%;
  }
}
