.simple-data {
    padding: 1.5rem 0;
}

.simple-data__title {
    font-family: "Alata", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
}

/* ── Chart rows ─────────────────────────────────────── */

.simple-data__chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.simple-data__row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.simple-data__bar-label {
    font-family: "Open Sans", sans-serif;
    font-size: 0.8125rem;
    line-height: 1.3;
    color: #1a1a1a;
    display: block;
}

.simple-data__bar-track {
    width: 100%;
    height: 2.5rem;
    background-color: #dde2f0;
    overflow: hidden;
}

/* Bar starts at width 0; JS adds .is-animating to grow it */
.simple-data__bar {
    height: 100%;
    width: 0;
    background-color: var(--dim-color, #3e57a3);
    overflow: hidden;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    box-sizing: border-box;
    white-space: nowrap;
}

.simple-data__bar.is-animating {
    width: calc(var(--sd-pct) * 1%);
}

.simple-data__bar-value {
    font-family: "Open Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
}

/* ── Caption / Source ───────────────────────────────── */

.simple-data__caption {
    margin: 1.25rem 0 0.5rem;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
}

.simple-data__source {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #767676;
}
