/**
 * Module: lp_faq
 */

/* ============================================
   FAQ
   ============================================ */

.t1-faq {
    display: grid;
    gap: 1rem;
    padding: 6rem max(1.5rem, calc(50vw - 400px + 1.5rem));
    background: var(--cream);
}

.t1-faq__header {
    text-align: center;
    margin-bottom: 2rem;
}

.t1-faq__eyebrow {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jade);
    margin-bottom: 0.5rem;
}

.t1-faq__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 1rem;
}

.t1-faq__description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.t1-faq__description > :first-child {
    margin-top: 0;
}

.t1-faq__description > :last-child {
    margin-bottom: 0;
}

/* FAQ items */
.t1-faq__item {
    border: 1px solid var(--pearl);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.t1-faq__question {
    display: block;
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--ink);
    transition: background 0.2s, color 0.2s;
    list-style: none;
    position: relative;
}

.t1-faq__question::-webkit-details-marker {
    display: none;
}

.t1-faq__question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--jade);
}

.t1-faq__item[open] .t1-faq__question::after {
    content: "-";
}

.t1-faq__item[open] .t1-faq__question {
    background: var(--jade-light);
    color: var(--jade-dark);
}

.t1-faq__answer {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.t1-faq__answer > :first-child {
    margin-top: 0;
}

.t1-faq__answer > :last-child {
    margin-bottom: 0;
}

/* ========================================
   LIGHT THEME OVERRIDE
   ======================================== */

.t1-faq--light {
    background: white;
}

.t1-faq--light .t1-faq__eyebrow {
    color: var(--jade);
}

.t1-faq--light .t1-faq__heading {
    color: var(--ink);
}

.t1-faq--light .t1-faq__description {
    color: var(--charcoal);
}

.t1-faq--light .t1-faq__item {
    border: 1px solid rgba(26, 29, 33, 0.08);
    background: var(--pearl);
}

.t1-faq--light .t1-faq__question {
    color: var(--ink);
}

.t1-faq--light .t1-faq__question::after {
    color: var(--jade);
}

.t1-faq--light .t1-faq__item[open] .t1-faq__question {
    background: var(--jade-light);
    color: var(--jade-dark);
}

.t1-faq--light .t1-faq__answer {
    color: var(--charcoal);
}