/* Dashboard.css - Corporate > Quality > Oversight (QA Compliance Dashboard).
   One panel: a compact metrics strip, then the failures list (TLP-979).
   Layout comes from the shared organisms; this scopes the tiles' size only.
   Every value from design-tokens.css. */

/* The metrics strip sits above the rows inside the one scrolling body, so it
   is compact: tighter padding, a smaller figure, no hover lift. Scoped under
   the module root, never the molecule's bare class. */
.oversight-metrics {
    padding-bottom: var(--space-3);
}

.oversight-metrics .stat-card {
    padding: var(--space-2) var(--space-3);
    gap: var(--space-2);
}

.oversight-metrics .stat-card h3 {
    font-size: var(--text-xl);
}

.oversight-metrics .stat-card:hover {
    box-shadow: none;
    transform: none;
}

/* The expanded detail: the FormGrid of FormSections carries the layout; this
   only gives the groups the row's inner padding. */
.oversight-failure-row .oversight-failure-detail {
    padding: var(--space-3) var(--space-4);
}
