/* FAQs — updated to match Figma node 441:900.
   No mobile frame was supplied, so the mobile block at the bottom is
   interpolated rather than design-derived. */

.faqs {
    background: #385723;
    padding: 40px 0;
}

.faqs__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* ── Headings ── */

.faqs__headings {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

/* Small line above the main heading */
.faqs__eyebrow {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: normal;
    color: #ffffff;
    margin: 0;
    overflow-wrap: break-word;
}

.faqs__heading {
    font-family: 'Andada Pro', serif;
    font-weight: 400;
    font-size: 44px;
    line-height: normal;
    color: #ffffff;
    margin: 0;
    overflow-wrap: break-word;
    border: none !important;
    outline: none;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* ── Intro copy ── */

.faqs__subheading {
    font-family: 'Andada Pro', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    max-width: 964px;
    margin: 0;
    overflow-wrap: break-word;
}

/* ── FAQ list ── */

.faqs__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 16px;
}

/* ── Individual item ── */

.faqs__item {
    background: #eae0d4;
    border-radius: 10px;
    overflow: hidden;
}

/* ── Question row (summary) ── */

.faqs__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 59px;
    padding: 11px 10px 11px 13px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faqs__question::-webkit-details-marker {
    display: none;
}

.faqs__question-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #385723;
    flex: 1;
}

/* ── Toggle button ── */

.faqs__toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #385723;
    border: 2px solid transparent;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Andada Pro', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
}

.faqs__toggle::before {
    content: '+';
    display: block;
    margin-top: -2px;
}

.faqs__item[open] .faqs__toggle {
    background: transparent;
    border-color: #385723;
}

.faqs__item[open] .faqs__toggle::before {
    content: '−';
    color: #385723;
}

/* ── Answer panel ── */

.faqs__answer {
    padding: 4px 16px 20px 13px;
    font-family: 'Andada Pro', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
}

.faqs__answer p {
    margin: 0 0 12px;
}

.faqs__answer p:last-child {
    margin-bottom: 0;
}

.faqs__answer ul,
.faqs__answer ol {
    margin: 0 0 12px;
    padding-left: 24px;
}

/* Markers restored explicitly — the theme's list reset clears them. */
.faqs__answer ul {
    list-style: disc;
}

.faqs__answer ol {
    list-style: decimal;
}

.faqs__answer a {
    color: #385723;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Tablet — interpolated; no tablet frame was supplied ── */

@media (max-width: 1024px) {
    .faqs__eyebrow {
        font-size: 22px;
    }

    .faqs__heading {
        font-size: 34px;
    }
}

/* ── Mobile — interpolated; no mobile frame was supplied ── */

@media (max-width: 768px) {
    .faqs__container {
        padding: 0 24px;
    }

    .faqs__eyebrow {
        font-size: 18px;
        line-height: 1.35;
    }

    .faqs__heading {
        font-size: 26px;
        line-height: 1.25;
    }

    .faqs__subheading {
        font-size: 16px;
        line-height: 1.5;
    }

    .faqs__question-text {
        font-size: 17px;
    }
}
