/**
 * Module: lpage_faq
 * Auto-extracted from style.css
 */

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

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

.t1-faq > hgroup {
    text-align: center;
    margin-bottom: 2rem;
}

.t1-faq details {
    border: 1px solid var(--pearl);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.t1-faq summary {
    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 summary::-webkit-details-marker {
    display: none;
}

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

.t1-faq details[open] summary::after {
    content: "-";
}

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

.t1-faq details p {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin: 0;
}

