/* shared-seo-content — extracted from v1-category-18.html
   Source of truth — based on baseline file. */

.faq-q {
    font-size: 0.875rem; font-weight: 600;
    margin: 0;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 12px;
  }

.faq-q::after {
    content: '+';
    font-size: 1.375rem; font-weight: 400;
    color: var(--green); flex-shrink: 0;
    line-height: 1;
  }

.faq-item.open .faq-q::after { content: '−'; }

.faq-a {
    font-size: 0.875rem; line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
  }

.faq-item.open .faq-a { max-height: 500px; margin-top: 8px; }
