.rf-43db65a2-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rf-43db65a2-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0 10px 18px;
    cursor: pointer;
    transition: opacity 0.4s ease;
    opacity: 0.4;
}
.rf-43db65a2-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--rf-border-width, 3px);
    background: transparent;
    border-radius: var(--rf-border-radius, 0px);
    transition: background 0.4s ease;
}
.rf-43db65a2-item.is-active {
    opacity: 1;
}
.rf-43db65a2-item.is-active::before {
    background: var(--rf-gradient, linear-gradient(180deg, #7B3FF3 0%, #3F83F8 50%, #31C48D 100%));
}
.rf-43db65a2-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.rf-43db65a2-content {
    display: flex;
    flex-direction: column;
}
.rf-43db65a2-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px 0;
}
.rf-43db65a2-desc {
    font-size: 14px;
    margin: 0;
}