/* ── Analytics ── */
.charts-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.chart-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px 22px; }
.chart-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.chart-wrap { position: relative; height: 250px; }
.chart-wrap-sm { height: 230px; }
.full-width { grid-column: 1 / -1; }
@media (max-width: 900px) { .charts-grid { grid-template-columns: 1fr; } }
