/* ===========================================
   FAQ PAGE
   Categorized accordion groups on a clean ground.
   Reuses .pa-faq item styling from practice-area-page.css
   and the .cr-filters chip strip from case-results-page.css.
   =========================================== */

/* "Question not answered here?" block — sits directly under the hero
   on a white ground, before the filter strip. */
.faq-still {
  background: var(--white);
  padding: 64px 48px;
  text-align: center;
}
.faq-still-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-still-lede {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.faq-still-body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--teal-60);
}
.faq-still-body a.phone,
.faq-still-body a.cta-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
}
.faq-still-body a:hover {
  color: var(--orange-hover);
  border-bottom-color: var(--orange-hover);
}

/* On-page jump nav — reuses the about-page tab style (.about-tabs).
   The --inline modifier drops the hero-overlap negative margin since this
   strip sits below the "Question not answered?" block, not over a hero. */
.about-tabs.about-tabs--inline {
  margin-top: 0;
}
.faq-jump-strip .about-tab {
  text-decoration: none;
}

/* Category groups stack vertically, separated by hairline rules,
   no boxes — content is grouped by typography and whitespace. */
.faq-group {
  background: var(--white);
  padding: 96px 0;
  border-bottom: 1px solid var(--teal-15);
  scroll-margin-top: 100px;
}
.faq-group:last-of-type {
  border-bottom: none;
}
.faq-group-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.faq-group-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--teal);
  margin-bottom: 18px;
}
.faq-group-lede {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--teal-60);
}
.faq-group .pa-faq {
  margin-top: 0;
}

@media (max-width: 900px) {
  .faq-group { padding: 72px 0; }
  .faq-group-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .faq-still { padding: 48px 24px; }
}
