/* asset-detail screen — mobile-parity section structure (port). Owner: the asset-detail agent.
   Ports mobile's adx-facts fact grid and the Service-&-maintenance "Setup &
   schedule" header to desktop density. Section structure/order mirrors mobile
   detailHtml: hero + fact grid · AMC & warranty · Service & maintenance ·
   Children/Parent · Network · Lifecycle history · Consumables & spares · Documents. */

/* Fact grid (mobile adx-facts, adapted to a denser multi-column desktop grid).
   Lives in the hero's Facts card; each cell is a label/value pair. */
.adx-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
}
.adx-facts .adx-fg { min-width: 0; }
.adx-facts .adx-fg dt {
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 500;
  margin: 0 0 2px;
}
.adx-facts .adx-fg dd {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.adx-facts .adx-fg dd a { color: var(--purple); font-weight: 600; }

/* Service & maintenance — "Setup & schedule" block header: the section-sub label
   on the left, the Edit-setup button (or the manager-only lock hint) on the right. */
.acc-panel .ams-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.acc-panel .ams-head .subtle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.acc-panel .ams-head .subtle .ic { width: 15px; height: 15px; }
