.item-base {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    justify-content: start;
    color: var(--theme-fg-text);
}

.item-base__prefix {
    flex: none;
    justify-self: start;
}

.item-base__postfix {
    flex: none;
    justify-self: end;
}

.item-base__text {
    flex: 1 0 0%;
    text-align: start;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    line-height: 1rem;
}

.item-base__text__label {
    color: inherit;
}

.item-base__text__description {
    opacity: 0.8;
    font-weight: 300;
}

.item-base--nowrap .item-base__text__label {
    white-space: nowrap;
}

.item-base--nowrap .item-base__text__description {
    white-space: nowrap;
}