.distribution-list {
    display: grid;
    gap: 14px;
}

.distribution-row__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #28352b;
}

.distribution-row__head strong {
    color: var(--green-800);
    font-weight: 700;
}

.distribution-row__bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(36, 79, 42, 0.08);
    overflow: hidden;
}

.distribution-row__bar > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #5b9a5f 0%, #2f7338 100%);
    border-radius: 999px;
}

.distribution-row__bar--accent > span {
    background: linear-gradient(90deg, #f2ba3b 0%, #e4a72d 100%);
}
