.faq {
    display: grid;
    position: relative;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
}
.faq:before {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    opacity: 0.03;
    top: 0;
    left: 0;
    background-image: url(/local/templates/.default/pic/faq-hands.webp);
    background-repeat: no-repeat;
    background-size: 100%;
}
.faq__section {
    position: relative;
}
.faq__section:not(:first-child):before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: #eee;
    position: absolute;
    top: 0;
    left: -20px;
}
.faq__subsection:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.faq__section-head {
    padding: 15px 0;
    margin-bottom: 10px;
}
.faq__section-name {
    font-size: 20px;
    font-weight: 500;
}
.faq__section-body {

}
.faq__subsection-head {
    padding: 12px 0;
}
.faq__subsection-name {
    font-size: 16px;
}
.faq__subsection-body {

}
.faq-list__item-name {
    font-size: 14px;
}

@media (max-width: 991px) {
    .faq {
        grid-template-columns: 1fr;
    }
    .faq:before {
        width: 100%;
    }
}