.root {
    display: flex;
    flex-direction: column;
    border-top: var(--border-width-sm) solid var(--border-color-light);
}

.feature {
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: var(--border-width-sm) solid var(--border-color-light);
    color: var(--color-text-primary);
}

.feature:last-child {
    border-bottom: none;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 8px;
    border: none;
    background: none;
    box-shadow: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-text-primary);
}

.labelWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-primary);
}

.label {
    margin-bottom: -2px;
}

.description {
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding-left: 32px;
    line-height: 0;
    color: transparent;
    transition:
        margin-top 0.3s,
        line-height 0.3s,
        color 0.3s;
}

.descriptionActive {
    margin-top: 8px;
    line-height: var(--line-height-lg);
    color: var(--color-text-secondary);
}

