/*
 * Haus of Contour — the questions page.
 *
 * The page is a list of grouped question rows. The rows themselves (.qa) are
 * shared with the home page and live in site.css; only the grouping and the
 * closing band are page-specific.
 */

.faq { margin-top: 64px; padding-bottom: 96px; }

.faq__group { margin-bottom: 64px; }

/* The one place an eyebrow is terracotta rather than muted: it is a divider
   between groups, not a label inside one. */
.faq__title {
  color: var(--accent);
  padding-bottom: 18px;
}

/* Closes the last row of a group, which otherwise ends on open space. */
.faq__end { border-top: 1px solid var(--rule); }

.faq__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  padding-top: 44px;
}

.faq__prompt {
  max-width: 26ch;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.06;
}

@media (max-width: 719px) {
  .faq { margin-top: 48px; padding-bottom: 64px; }
  .faq__group { margin-bottom: 48px; }
}
