.faq {
    width: 100%;
   margin-bottom: 40px;
}


.faq__item {
    border-bottom: 1px solid #e3e3e3;
    padding: 16px 0;
}

.faq__question{
    text-align: left;
    background: none;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 0;
    padding-right: 32px; /* место под плюс/минус справа */
    width: 100%;
    font-weight: normal;
    font-size: calc(16px + 8 * ((100vw - 320px) / 1720));
    line-height: 140%;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #231f20;
    position: relative;
    transition: color 0.25s ease;
}

.faq--articles .faq__question{
       font-size: calc(13px + 8 * ((100vw - 320px) / 1720));
}


.faq__question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}


.faq__question.active {
    color: #5a9b01;
}

.faq__question.active::after {
    content: "–";
}


.faq__answer {
    margin-top: 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #676767;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.35s ease,
        opacity 0.35s ease,
        margin-top 0.35s ease;
}


.faq__answer.active {
    margin-top: 12px;
    max-height: 500px; 
    opacity: 1;
}
