.chart-insight {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.chart-insight > .top-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.chart-insight > .top-container > .left-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.chart-insight > .top-container > .left-container > a {
    color: black;
}

.chart-insight > .top-container > .right-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.chart-insight > .top-container > .right-container > a {
    color: black;
}

.chart-insight > .bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.chart-insight > .bottom-container > .left-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-insight > .bottom-container > .right-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@container (min-width: 40rem) {
    .chart-insight > .top-container {
        flex-direction: row;
    }
}