/*
 * FAQ chapter titles
 *
 * Every FAQ introduction uses the same compact display measure. This keeps
 * the editorial title at two calm lines on desktop instead of letting one
 * page's type scale change the rhythm of all the others.
 */
.tsf-faq .tsf-faq-intro h2 {
  font-size: clamp(32px, 2.5vw, 40px);
  letter-spacing: -.045em;
  line-height: .96;
  max-width: 28ch;
  text-wrap: balance;
}

@media (max-width: 767px) {
  .tsf-faq .tsf-faq-intro h2 {
    font-size: clamp(30px, 8.5vw, 40px);
    max-width: none;
  }
}
