body {
  background-color: var(--color-bg);
}

.faq-hero-grid {
  align-items: center;
}

.faq-hero-subtitle {
  max-width: 38rem;
}

.faq-hero-visual {
  margin-top: var(--space-6);
}

@media (min-width: 768px) {
  .faq-hero-visual {
    margin-top: 0;
  }
}

.faq-hero-image {
  min-height: 260px;
}

.faq-hero-safe-text {
  max-width: 34rem;
}

.faq-intro {
  max-width: 48rem;
  margin: 0 auto;
}

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

.faq-list {
  max-height: 100%;
}

.faq-question {
  font-size: var(--font-size-md);
  text-align: left;
}

.faq-toggle {
  margin-left: var(--space-3);
  font-weight: 600;
  color: var(--color-primary-strong);
}

.faq-inline-image img {
  border-radius: var(--radius-lg);
}

.faq-link {
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.7);
}

.faq-link:hover {
  color: var(--color-primary-strong);
}

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

.faq-aside-list {
  list-style: none;
  padding-left: 0;
}

.faq-aside-list li + li {
  margin-top: var(--space-2);
}

.faq-aside-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

@media (min-width: 640px) {
  .faq-aside-btn {
    width: auto;
  }
}

.faq-tags {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.faq-tags a {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  background-color: var(--color-bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-tags a:hover {
  border-color: rgba(212, 175, 55, 0.8);
}

.faq-cta-section {
  background: radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.12), transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(183, 28, 59, 0.2), transparent 55%);
}

.faq-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

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

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