main {
  background-color: var(--color-background);
}

.page-hero-content {
  align-items: center;
}

.faq-hero-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-layout {
  align-items: flex-start;
  gap: var(--space-8);
}

.faq-card {
  margin-bottom: var(--space-6);
}

.faq-support-card .faq-support-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: transparent;
  padding: var(--space-2) 0;
  font-size: var(--font-size-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  flex: 1;
}

.faq-item:first-of-type {
  padding-top: 0;
}

.faq-item:last-of-type {
  border-bottom: none;
}

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

.faq-discussion-visual {
  margin-top: var(--space-3);
}

.faq-discussion-image {
  width: 100%;
  border-radius: var(--radius-lg);
}

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

.faq-links-card .card-body {
  align-items: center;
}

@media (max-width: 768px) {
  .page-hero {
    text-align: left;
  }

  .page-hero-content {
    gap: var(--space-6);
  }

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

  .faq-layout,
  .faq-bottom-grid {
    gap: var(--space-6);
  }

  .faq-links-card .card-body {
    flex-direction: column;
    align-items: flex-start;
  }
}
