/* File: wp-content/themes/log-core/assets/css/log-contact-form-qa.css */
/* Source: contact_us_4.html — .qfaq-* (Quick FAQ) */
/* Depends on: log-contact-form-card.css (inherits tokens) */
/* Prefix: .log-co- */

.log-co-qfaq-wrap {
    max-width: 1160px;
    margin: 10px auto 0;
    padding: 0 20px;
}

.log-co-qfaq-head {
    text-align: center;
    margin-bottom: 18px;
}

.log-co-qfaq-head .log-co-section-eyebrow {
    display: inline-flex;
    justify-content: center;
}

.log-co-qfaq-head h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(20px, 2.6vw, 26px);
    line-height: 1.1;
    color: var(--ink-900);
}

.log-co-qfaq-head h3 em { font-style: italic; color: var(--plum-700); }

.log-co-qfaq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    /* Grid items stretch to fill their row's height by default — opening
       one item grows its row, and its untouched row-mate stretches to
       match (visible as a card that looks like it's expanding too, even
       though its own answer never opened). Size each card to its own
       content instead. */
    align-items: start;
}

@media (max-width: 760px) {
    .log-co-qfaq-grid { grid-template-columns: 1fr; }
}

.log-co-qfaq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    overflow: hidden;
    transition: border-color .25s var(--ease);
}

.log-co-qfaq-item:hover { border-color: rgba(138, 106, 46, .35); }

.log-co-qfaq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 12.5px;
    text-align: left;
    background: none;
    border: none;
    font-family: inherit;
    color: var(--ink-900);
    cursor: pointer;
}

.log-co-qfaq-tog {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.log-co-qfaq-item.log-co-open .log-co-qfaq-tog {
    transform: rotate(45deg);
    background: var(--sage-600);
    color: #fff;
}

.log-co-qfaq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.log-co-qfaq-a p {
    padding: 0 16px 14px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray-600);
}
