/* ============================================================
   Reportes y dashboard financiero
   ============================================================ */
.report-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 20px; }
.report-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px; display: flex; flex-direction: column; gap: 10px;
  transition: var(--transition);
}
.report-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.report-card h4 { font-size: 14px; }
.report-card p { font-size: 12px; color: var(--text-soft); flex: 1; }
.report-card .actions { display: flex; gap: 8px; }

.fin-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.fin-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
.fin-box .l { font-size: 12px; color: var(--text-soft); font-weight: 600; }
.fin-box .n { font-size: 24px; font-weight: 800; margin-top: 4px; }
.fin-box.accent { background: var(--brand-grad); color: #fff; border: none; }
.fin-box.accent .l { color: rgba(255,255,255,.85); }

.rank-list { display: flex; flex-direction: column; gap: 12px; }
.rank-row { display: flex; align-items: center; gap: 12px; }
.rank-pos { width: 26px; height: 26px; border-radius: 8px; background: var(--surface-2); display: grid; place-items: center; font-weight: 800; font-size: 12px; }
.rank-pos.gold { background: #fef3c7; color: #b45309; }
.rank-name { flex: 1; font-weight: 600; font-size: 13px; }
.rank-val { font-weight: 700; font-size: 13px; }

@media (max-width: 1100px) { .fin-summary { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fin-summary { grid-template-columns: 1fr; } }
