/* ============================================================
   Vendor / Venue Public Profile — Section 7: FAQ (filters as answers)
   Overhaul item 20. Shared by single-vendor and single-venue.
   Values from foundation.css tokens.
   ============================================================ */

.vp-faqf {
    /* Green check accent. No green exists in foundation.css yet; this matches
       the intentional RSVP/status green already shipped in couple-dashboard
       (#2faa6a). Swap for var(--sdwd-green) once the token lands. */
    --vp-faqf-check: var(--sdwd-success);
}

/* Heading matches the other profile sections (.vp-main h2 on vendors); this
   local rule keeps the venue profile identical without depending on the
   vendor-only page stylesheet. */
.vp-faqf > h2 {
    font-size: 22px;
    color: var(--sdwd-subtext);
    margin: 0 0 12px;
    font-weight: 800;
}

.vp-faqf__q {
    font-size: 16px;
    font-weight: 700;
    color: var(--sdwd-subtext);
    margin: 0 0 12px;
}

.vp-faqf__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}

.vp-faqf__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
    color: var(--sdwd-body-text);
}

.vp-faqf__check {
    color: var(--vp-faqf-check);
    font-size: 11px;
    line-height: inherit;
    margin-top: 2px;
    flex: 0 0 auto;
}

.vp-faqf__rule {
    border: 0;
    border-top: 1px solid var(--sdwd-border);
    margin: 20px 0;
}

@media (max-width: 900px) {
    .vp-faqf__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .vp-faqf__items {
        grid-template-columns: 1fr;
    }
}
