.help__search {
    max-width: 900px;
    margin-inline: auto;
}

.help__search .form-field_searchHelp {
    display: flex;
}

.help__search .form-field_searchHelp .form-fieldSearch {
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
}

.help__search .form-field_searchHelp .form-input {
    height: 56px;
    padding: 14px 54px 14px 50px;
    background: var(--element-secondary);
    border: none;
    border-radius: 16px;
}

.help__faq-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.help__faq-container::-webkit-scrollbar {
    display: none;
}

.help__faq-wrapper {
    position: relative;
}

.help__faq-wrapper.faq-wrapper__shadow::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff 60%);
}

.help__faq-list {
    --faq-list-gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: var(--faq-list-gap);
    width: max-content;
}

.help__faq-item {
    max-width: 390px
}


.faq-item__wrapper {
    width: 100%;
    display: flex;
    position: relative;
    height: 76px;
    background: var(--element-secondary);
    border-radius: 16px;
    align-items: center;
    padding: 18px 50px 18px 16px;
}

a.faq-item__wrapper:hover {
    background: var(--button-quaternary-enabled);
    text-decoration: none;
    color: var(--text-primary);
}

.faq-item__icon {
    position: absolute;
    top: 30px;
    right: 18px;
    width: 16px;
    height: 16px;
}

.help__section-grid {
    --help-section-gap: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--help-section-gap);
    padding: 0;
    margin: 0 0 48px 0;
}

.help__section-item {
    list-style: none;
    height: 240px;
    width: calc((100% - 4 * var(--help-section-gap)) / 5);
    background: var(--element-secondary);
    border-radius: 16px;
    justify-content: center;
}

.help__section-item .section-item__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 24px;
    gap: 24px;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.help__section-item .section-item__text {
    width: 100%;
}

.help__section-item .section-item__title,
.faq-item__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.help__section-item:hover {
    transform: scale(1.05);
}

.help__section-item .section-item__img {
    height: 112px;
    width: 112px;
}

.help__btn-container {
    text-align: center;
}

.help__btn-container a {
    gap: 8px;
}

.help__btn-container svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1023px) {
    .help__section-item {
        width: calc((100% - 3 * var(--help-section-gap)) / 4);
    }

    .help__section-item:hover {
        transform: unset;
    }
}

@media (max-width: 767px) {
    .help__section-item {
        width: calc((100% - 2 * var(--help-section-gap)) / 3);
    }

    .help__section-item .section-item__wrapper {
        padding: 16px;
        gap: 8px;
    }

    .help__section-item .section-item__img {
        height: 96px;
        width: 96px;
    }
}

@media (max-width: 600px) {
    .help__section-item {
        width: calc((100% - var(--help-section-gap)) / 2);
    }

    .help__faq-item {
        height: unset;
    }
}