/**
 * wc-faq-group.css
 * SDC component styles for the FAQ page group component.
 * Only the wrapper and heading — accordion CSS lives in wc-faq-accordion.
 */

/* ── Group wrapper — scroll offset for sticky content-nav ── */
.wc-faq-group {
  scroll-margin-top: 80px;
}

/* ── Category heading (e.g. "About WeConnect") ── */
.wc-faq-group__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .wc-faq-group__heading {
    font-size: clamp(18px, 5vw, 22px);
  }
}