/* ============================================================
   msp-csp.css
   -----------
   MSP/CSP delegation overview: RACI table styles for the
   public 'who owns what across MSP, CSP, and internal' section.
   Independent of the main microsoft-platform.css visuals.
   ============================================================ */
/* ==================== MSP / CSP overview RACI table ==================== */
/* The 3-column RACI table needs different column proportions and a real thead
   treatment compared to the 2-column .audit-owner-table base. Scoped to
   .msp-raci so it doesn't leak to the architecture-section ownership table. */
.audit-owner-table.msp-raci thead th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-bottom: 12px;
  text-transform: uppercase;
  width: auto;
}

.audit-owner-table.msp-raci tbody th[scope="row"] {
  width: 46%;
}

.audit-owner-table.msp-raci tbody td {
  width: 27%;
}

.audit-owner-table.msp-raci tbody td strong {
  color: #fff;
}

@media (max-width: 640px) {
  .audit-owner-table.msp-raci thead {
    display: none;
  }

  .audit-owner-table.msp-raci tbody td::before {
    color: rgba(255, 255, 255, 0.5);
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}
