/* Match the full-width FAQ rows used on Culon Cowork. */
.page--contacts .faq {
    width: 100%;
    max-width: none;
    gap: 0;
    border-top: 1px solid var(--line-strong);
}

.page--contacts .faq__item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-strong);
    border-radius: 0;
    box-shadow: none;
}

.page--contacts .faq__item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    align-items: start;
    gap: 20px;
    padding: 24px 0;
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 1.4;
}

.page--contacts .faq__toggle {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    color: var(--accent);
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
}

.page--contacts .faq__toggle::before { content: '+'; }
.page--contacts .faq__item[open] .faq__toggle::before { content: '\2212'; }

.page--contacts .faq__body {
    max-width: 840px;
    padding: 0 0 24px;
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

@media (max-width: 640px) {
    .page--contacts .faq__item summary {
        gap: 14px;
        padding-block: 20px;
        font-size: 18px;
    }
}
