.help__item-list {
    margin-bottom: 48px;
}

.help-item {
    display: flex;
    border-radius: 12px;
    background-color: var(--element-secondary);
    color: var(--text-primary);
    margin-bottom: 16px;
    padding: 16px 24px;
    cursor: pointer;
    transition: 0.25s color ease-in-out;
    gap: 16px;
    justify-content: space-between;
}

.help-item,
.help-item:hover,
.help-item:active {
    text-decoration: unset;
}

.help-item__title:is(h3){
    width: calc(100% - 40px);
    margin: 0;
}

.help-item__icon {
    width: 24px;
    height: 24px;
}

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

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

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