.value-chart-card {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
}

.value-chart-title {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
}

.value-chart-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    height: 300px;
}

.value-chart-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 1;
    height: 100%;
}

.value-chart-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.25;
}

.value-chart-bar-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.value-chart-bar-value {
    font-weight: 700;
    font-size: 15px;
    margin-top: 2px;
}

.value-chart-bar-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.value-chart-bar {
    width: 100%;
    border-radius: 12px;
    transition: height 0.6s ease;
}

@media (max-width: 767px) {
    .value-chart-wrapper {
        height: 240px;
        gap: 12px;
    }
    .value-chart-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    .value-chart-bar-label {
        font-size: 11px;
    }
    .value-chart-bar-value {
        font-size: 13px;
    }
}
