.pc-visual {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(2, 8, 23, .22);
}

.pc-visual-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.pc-visual h4 {
    margin: 0;
    color: #e2e8f0;
    font-size: .78rem;
}

.pc-chart-caption {
    color: #64748b;
    font-size: .68rem;
    text-align: right;
    line-height: 1.35;
}

.pc-chart-scroll {
    overflow-x: auto;
    margin-top: 8px;
}

.pc-chart {
    display: block;
    width: 100%;
    min-width: 440px;
    height: auto;
    max-height: 250px;
    border-radius: 9px;
    background: rgba(2, 8, 23, .25);
}

.pc-chart text {
    font-family: Inter, system-ui, sans-serif;
}

.pc-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 8px;
    color: #94a3b8;
    font-size: .68rem;
}

.pc-chart-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pc-chart-legend i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

@container (max-width: 500px) {
    .pc-chart {
        min-width: 360px;
    }

    .pc-visual {
        padding: 10px;
    }

    .pc-visual-head {
        display: block;
    }

    .pc-chart-caption {
        display: block;
        margin-top: 4px;
        text-align: left;
    }
}
