.hero-cta-group {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.faq-intro {
  max-width: 46rem;
}

.faq-cta-box {
  align-self: stretch;
}

.faq-layout {
  display: grid;
  gap: var(--space-8);
}

.faq-list {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.faq-media {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-media img {
  width: 100%;
  height: auto;
}

.faq-question {
  font-weight: 500;
  text-align: left;
}

.faq-toggle {
  margin-left: var(--space-4);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--color-text-soft);
}

.faq-list-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-4);
}

.faq-list-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
}

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

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

.faq-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-aside-card {
  height: 100%;
}

.faq-aside-callout {
  font-size: var(--font-size-xs);
}

.faq-bottom-cta {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.faq-bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .faq-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
    align-items: flex-start;
  }

  .faq-bottom-cta {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  }
}
