/* ArsLudi landing — FAQ */

.landing-faq-section {
    background: var(--arsludi-ivory-0, #fffdf8);
    border-top: 1px solid rgba(221, 212, 194, 0.32);
}

.landing-faq-shell {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.landing-faq-intro {
    margin: 0 auto;
    max-width: 46rem;
    text-align: center;
}

.landing-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: #92400e;
}

.landing-faq-icon {
    display: block;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("/icons/fontawesome/free/solid/circle-question.svg") center / contain no-repeat;
    mask: url("/icons/fontawesome/free/solid/circle-question.svg") center / contain no-repeat;
}

.landing-faq-title {
    margin-top: 0.8rem;
    text-wrap: balance;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #042f2e;
}

.landing-faq-description {
    margin: 0.9rem auto 0;
    max-width: 40rem;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: #64748b;
}

.landing-faq-list {
    margin: 1.45rem auto 0;
    max-width: 52rem;
    border-top: 1px solid #ded6c7;
}

.landing-faq-item {
    border-bottom: 1px solid #ded6c7;
}

.landing-faq-question {
    display: flex;
    cursor: pointer;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.35rem;
    color: #134e4a;
}

.landing-faq-question::-webkit-details-marker {
    display: none;
}

.landing-faq-question:focus-visible {
    outline: 3px solid rgba(13, 148, 136, 0.22);
    outline-offset: 4px;
    border-radius: 0.35rem;
}

.landing-faq-chevron {
    width: 0.9rem;
    height: 0.9rem;
    flex: 0 0 auto;
    background: #9a6f18;
    transition: transform 160ms ease;
    -webkit-mask: url("/icons/fontawesome/free/solid/chevron-down.svg") center / contain no-repeat;
    mask: url("/icons/fontawesome/free/solid/chevron-down.svg") center / contain no-repeat;
}

.landing-faq-item[open] .landing-faq-chevron {
    transform: rotate(180deg);
}

.landing-faq-answer {
    padding: 0 2.25rem 0.85rem 0;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.45rem;
    color: #64748b;
}

@media (min-width: 640px) {
    .landing-faq-shell {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .landing-faq-title {
        font-size: 2.35rem;
    }

    .landing-faq-question {
        padding: 0.9rem 0;
        font-size: 0.94rem;
    }

    .landing-faq-answer {
        padding-bottom: 0.9rem;
        font-size: 0.87rem;
        line-height: 1.55rem;
    }
}
