/* -------------------------------------------------------- */
/* 🔹 FAQ Section                                           */
/* -------------------------------------------------------- */
/* Shared FAQ section wrapper + "more" link                 */
/* Used on landing pages (app_upsell, electricity_price)    */
/* FAQ tiles use shared faq_expansion_tile + faq_content    */

.faq {
  padding-block: var(--website-section-spacing) calc(var(--website-section-spacing) * 1.5);
  background-color: var(--color-scaffold-bg);
}


/* -------------------------------------------------------- */
/* 🔹 More Link                                             */
/* -------------------------------------------------------- */
/* Link to full help center below the FAQ list              */

.faq__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
  margin-top: var(--space-xl);
  font-size: var(--text-body-medium);
  color: var(--color-on-surface-variant);
  text-decoration: none;
}

.faq__more:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.faq__more svg {
  width: 16px;
  height: 16px;
}
