/**
 * SharePoint Breadcrumb Converter — pre-conversion guard
 *
 * Hides the raw SharePoint breadcrumb markup until the JS converter
 * replaces it with the DGA <nav class="dga-breadcrumb"> structure.
 * All visual styles for .dga-breadcrumb live in MOE.DS.css.
 */

/* Hide the raw SP breadcrumb and the skip-nav link it contains */
.breadcrumbs {
  visibility: hidden;
}

/* Reveal once the JS has replaced .breadcrumbs with a <nav> */
nav[aria-label="المسار الوصفي"],
nav[aria-label="Breadcrumb"] {
  visibility: visible;
}
