/* ============================================================
   faq-accordion.css
   FAQ section for the Custom Icons Set product page.
   Light background to contrast with the dark About section above.
   Uses the same .accordion pattern from components.css.
   ============================================================ */

/* ---- Section shell ------------------------------------------ */

.faq-section {
  background-color: #f7f7f7;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 749px) {
  .faq-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ---- Section header ----------------------------------------- */

.faq-section__header {
  max-width: 68rem;
  margin-bottom: 4.8rem;
}

@media screen and (max-width: 749px) {
  .faq-section__header {
    margin-bottom: 3.2rem;
  }
}

.faq-section__heading {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  font-size: var(--heading-h2-size);
  line-height: var(--heading-line-height);
  text-transform: uppercase;
  color: var(--color-text-title);
  margin: 0 0 1.6rem;
}

.faq-section__description {
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
  opacity: 0.75;
}

/* ---- Accordion list ----------------------------------------- */

.faq-section__items {
  max-width: 80rem;
}

/* First accordion in faq-section starts with top border */
.faq-section__accordion:first-child {
  margin-top: 0;
}

/* Accordion title style for FAQ */
.faq-section .accordion__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-title);
}

/* Content inside FAQ accordion */
.faq-section .accordion__content {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text);
  padding-bottom: 2rem;
}

.faq-section .accordion__content p {
  margin: 0;
}
