/* =============================================
   FAQ Section — ACE Design System
   Container for accordion items
   ============================================= */

.faq-section {
  /* No padding — section-container handles it */
}

.faq-section__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* --- Eyebrow --- */
.faq-section__eyebrow {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0056A6;
}

/* --- Title --- */
.faq-section__title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
}

/* --- Items wrapper --- */
.faq-section__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* =============================================
   Responsive — Tablet & Desktop
   ============================================= */

@media (min-width: 768px) {
  .faq-section__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .faq-section__title {
    font-size: 3rem;
  }
}
