/**
 * /pricing/ page-local styles (S7 #70).
 *
 * The plan cards themselves come from `/components/plan-card.css`; this file
 * only adds page-level chrome: centered title block, FAQ 2×2 grid, and the
 * screen-reader-only heading helper.
 */

.p-price-head {
  max-width: var(--prose-max-width);
}

/* Dashboard / Log in link in the pricing header — keep it visually aligned
   with the language toggle on the right side. */
#pricing-account-link {
  white-space: nowrap;
}

/* FAQ: 2 columns × 2 rows on desktop, 1 column below 640px (matches the
   `.c-plan-grid` breakpoint in plan-card.css so the S7 layout collapses
   together). */
.p-faq {
  margin-top: var(--space-9);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-7);
}

@media (max-width: 639.98px) {
  .p-faq {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

.p-faq__item {
  padding: 0;
}

.p-faq__q {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--text-primary);
}

.p-faq__a {
  margin: 0;
  font-size: var(--font-size-small);
  color: var(--text-secondary);
  line-height: 1.5;
}

.p-faq__a a {
  color: var(--info-text);
  font-weight: 500;
  white-space: nowrap;
}

.p-faq__a a + a,
.p-faq__a span + a {
  margin-left: var(--space-1);
}
