/* =============================================================
   DGA Kafalah -- Chrome (Header + Footer) Stylesheet
   Version: 1.1  |  2026-05-23  (font filename fix + a11y polish)
   Target:  https://www.kafalah.gov.sa (PROD)
   Scope:   Only fires when <html class="dga-chrome"> is present
            (set early by dga-chrome.js). This avoids any
            !important war with main-rtl.min.css / dga-overrides.css
            via single-class specificity boost on every selector.
   ============================================================= */

/* ---------- QA fixes (2026-05-23) ---------- */
/* Hide SharePoint breadcrumb arrow images that have empty src (resolves to
   page URL, which the browser then reports as a broken image). */
.s4-breadcrumb-arrowcont img[src=""],
img[src=""] { display: none !important; }

/* ---------- Font face (already preloaded in master, this is the
              src registration so the family resolves) ---------- */
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/Style%20Library/assets/fonts/IBMPlexSansArabic_Light.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/Style%20Library/assets/fonts/IBMPlexSansArabic_Regular_arabic.woff2') format('woff2'),
       url('/Style%20Library/assets/fonts/IBMPlexSansArabic_Regular_latin.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/Style%20Library/assets/fonts/IBMPlexSansArabic_Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/Style%20Library/assets/fonts/IBMPlexSansArabic_SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/Style%20Library/assets/fonts/IBMPlexSansArabic_Bold.woff2') format('woff2');
}

/* ===========================================================
   1. Chrome-scoped local vars (defensive — consume tokens but
      fall back to literals if dga-tokens.css fails to load)
   =========================================================== */
html.dga-chrome {
  --chrome-bg-dark:        var(--color-primary-dark,    #074D31);
  --chrome-bg-darker:      var(--color-primary-darker,  #053321);
  --chrome-action:         var(--color-primary-action,  #067647);
  --chrome-action-hover:   var(--color-primary-950,     #14573A);
  --chrome-action-light:   var(--color-primary-100,     #ECFDF3);
  --chrome-text-inverse:   #FFFFFF;
  --chrome-text-muted:     rgba(255,255,255,0.78);
  --chrome-divider:        rgba(255,255,255,0.14);
  --chrome-shadow-header:  0 2px 6px rgba(7,77,49,0.10);
  --chrome-shadow-sticky:  0 4px 12px rgba(7,77,49,0.18);
  --chrome-radius-pill:    var(--radius-full, 9999px);
  --chrome-radius-card:    var(--radius-lg,    8px);
  --chrome-font:           var(--font-family-base, 'IBM Plex Sans Arabic'), 'Segoe UI', Tahoma, sans-serif;
  --chrome-header-h:       72px;
  --chrome-topbar-h:       40px;
  --chrome-container-max:  1320px;
}

/* ===========================================================
   2. Global typography on chrome only — DO NOT cascade to
      page content (page content keeps existing main.min.css)
   =========================================================== */
html.dga-chrome .header,
html.dga-chrome .header *,
html.dga-chrome .footer,
html.dga-chrome .footer *,
html.dga-chrome #dga-stamp-bar,
html.dga-chrome #dga-stamp-bar * {
  font-family: var(--chrome-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===========================================================
   3. DGA digital-stamp bar (top of page — DGA item #11)
   =========================================================== */
html.dga-chrome #dga-stamp-bar {
  background: var(--chrome-action-light);
  border-bottom: 1px solid var(--color-primary-200, #DFF6E7);
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.4;
}
html.dga-chrome #dga-stamp-bar .container {
  max-width: var(--chrome-container-max);
  margin-inline: auto;
  padding-inline: 16px;
}
html.dga-chrome .digital-stamp-card {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--color-primary-300, #B8EACB);
  border-radius: var(--chrome-radius-card);
  padding: 4px 10px;
}
html.dga-chrome .digital-stamp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text-primary, #1F2A37);
}
html.dga-chrome .digital-stamp-card__link:focus-visible {
  outline: 2px solid var(--chrome-action);
  outline-offset: 2px;
}
html.dga-chrome .digital-stamp-card__img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
html.dga-chrome .digital-stamp-card__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}
html.dga-chrome .digital-stamp-card__label {
  font-size: 11px;
  color: var(--color-text-tertiary, #6C737F);
  font-weight: 500;
}
html.dga-chrome .digital-stamp-card__title {
  font-size: 13px;
  color: var(--chrome-action);
  font-weight: 600;
}

/* ===========================================================
   4. Header — outer container
   =========================================================== */
html.dga-chrome .header {
  background: var(--chrome-bg-dark);
  color: var(--chrome-text-inverse);
  padding: 0;
  position: relative;
  z-index: 999;
  box-shadow: var(--chrome-shadow-header);
}
html.dga-chrome .header .container {
  max-width: var(--chrome-container-max);
  margin-inline: auto;
  padding-inline: 16px;
}
html.dga-chrome .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--chrome-header-h);
}

/* --- Logo --- */
html.dga-chrome .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  margin: 0;
  flex-shrink: 0;
}
html.dga-chrome .navbar-brand img {
  height: 44px;
  width: auto;
  display: block;
}
html.dga-chrome .navbar-brand:focus-visible {
  outline: 2px solid var(--chrome-text-inverse);
  outline-offset: 4px;
  border-radius: 4px;
}

/* --- Vision 2030 mark (right of bar, desktop) --- */
html.dga-chrome .header__vision {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding-inline-start: 16px;
  margin-inline-start: 16px;
  border-inline-start: 1px solid var(--chrome-divider);
}
html.dga-chrome .header__vision img {
  height: 40px;
  width: auto;
  display: block;
}

/* ===========================================================
   5. Header — navbar / menu
   =========================================================== */
html.dga-chrome .header__menu {
  flex: 1 1 auto;
  display: flex;
}
html.dga-chrome .navbar.navbar-expand-lg {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  background: transparent;
}
html.dga-chrome .menu__container {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Mobile toggler --- */
html.dga-chrome .navbar-toggler {
  background: transparent;
  border: 1px solid var(--chrome-divider);
  border-radius: var(--chrome-radius-card);
  padding: 6px 10px;
  cursor: pointer;
  display: none;
}
html.dga-chrome .navbar-toggler:focus-visible {
  outline: 2px solid var(--chrome-text-inverse);
  outline-offset: 2px;
}
html.dga-chrome .navbar-toggler .dga-icon-menu {
  display: block;
  width: 24px;
  height: 24px;
}

/* --- Collapse region (holds nav + utility bar) --- */
html.dga-chrome .collapse.navbar-collapse {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ===========================================================
   6. Main nav <ul.navbar-nav>
   =========================================================== */
html.dga-chrome .navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 2px;
  flex-wrap: wrap;
}
html.dga-chrome .navbar-nav > li.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
html.dga-chrome .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--chrome-text-inverse);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: var(--chrome-radius-card);
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
html.dga-chrome .navbar-nav .nav-link:hover,
html.dga-chrome .navbar-nav .nav-link:focus-visible {
  background: var(--chrome-action-hover);
  color: var(--chrome-text-inverse);
  text-decoration: none;
}
html.dga-chrome .navbar-nav .nav-link:focus-visible {
  outline: 2px solid var(--chrome-text-inverse);
  outline-offset: 2px;
}
html.dga-chrome .navbar-nav .nav-link.active,
html.dga-chrome .navbar-nav .nav-link[aria-current="page"] {
  background: var(--chrome-action);
  color: var(--chrome-text-inverse);
}

/* --- Dropdown caret icon --- */
html.dga-chrome .navbar-nav .nav-link .dropdown-caret {
  width: 12px;
  height: 12px;
  fill: currentColor;
  margin-inline-start: 4px;
  transition: transform 0.15s ease;
}
html.dga-chrome .navbar-nav .dropdown.show > .nav-link .dropdown-caret,
html.dga-chrome .navbar-nav .nav-link[aria-expanded="true"] .dropdown-caret {
  transform: rotate(180deg);
}

/* --- Dropdown menus --- */
html.dga-chrome .navbar-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  inset-inline-start: 0;
  min-width: 260px;
  max-width: 360px;
  background: #FFFFFF;
  border: 1px solid var(--color-neutral-200, #E5E7EB);
  border-radius: var(--chrome-radius-card);
  box-shadow: var(--shadow-lg, 0 12px 16px -4px rgba(16,24,40,0.08));
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 1000;
  display: none;
}
html.dga-chrome .navbar-nav .dropdown.show > .dropdown-menu,
html.dga-chrome .navbar-nav .dropdown-menu.show {
  display: block;
}
html.dga-chrome .navbar-nav .dropdown-menu .dropdown-item {
  display: block;
  padding: 10px 12px;
  color: var(--color-text-primary, #1F2A37);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md, 6px);
  line-height: 1.4;
}
html.dga-chrome .navbar-nav .dropdown-menu .dropdown-item:hover,
html.dga-chrome .navbar-nav .dropdown-menu .dropdown-item:focus-visible {
  background: var(--chrome-action-light);
  color: var(--chrome-action);
  text-decoration: none;
}
html.dga-chrome .navbar-nav .dropdown-menu .dropdown-item:focus-visible {
  outline: 2px solid var(--chrome-action);
  outline-offset: -2px;
}

/* --- Products dropdown gets two-column layout (lots of items) --- */
html.dga-chrome .navbar-nav .dropdown-menu.dropdown-menu-2col {
  min-width: 480px;
  max-width: 560px;
  columns: 2;
  column-gap: 8px;
}
html.dga-chrome .navbar-nav .dropdown-menu.dropdown-menu-2col .dropdown-item {
  break-inside: avoid;
}

/* ===========================================================
   7. Utility top-bar (FAQ / Contact / Moahel / Search / Lang)
   =========================================================== */
html.dga-chrome .header__top-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
html.dga-chrome .header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  color: var(--chrome-text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: 0;
  border-radius: var(--chrome-radius-card);
  cursor: pointer;
  line-height: 1.4;
}
html.dga-chrome .header__link:hover,
html.dga-chrome .header__link:focus-visible {
  color: var(--chrome-text-inverse);
  background: var(--chrome-action-hover);
  text-decoration: none;
}
html.dga-chrome .header__link:focus-visible {
  outline: 2px solid var(--chrome-text-inverse);
  outline-offset: 2px;
}
html.dga-chrome .header__link .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: currentColor;
  flex-shrink: 0;
}
html.dga-chrome .language__switcher {
  border-inline-start: 1px solid var(--chrome-divider);
  padding-inline-start: 14px;
  margin-inline-start: 6px;
  font-weight: 600;
}

/* ===========================================================
   8. Sticky header on scroll (toggled by dga-chrome.js)
   =========================================================== */
html.dga-chrome.is-scrolled .header {
  position: sticky;
  top: 0;
  background: var(--chrome-bg-darker);
  box-shadow: var(--chrome-shadow-sticky);
}
html.dga-chrome.is-scrolled .header__container {
  min-height: 56px;
}
html.dga-chrome.is-scrolled .navbar-brand img {
  height: 36px;
}

/* ===========================================================
   9. Footer
   =========================================================== */
html.dga-chrome .footer {
  background: var(--chrome-bg-dark);
  color: var(--chrome-text-inverse);
  padding: 56px 0 0;
  margin-top: 64px;
  position: relative;
}
html.dga-chrome .footer .container.d-pad {
  max-width: var(--chrome-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
html.dga-chrome .footer .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* --- Bootstrap col-lg-2 inside our grid: neutralize the
       float/width and let grid place them. --- */
html.dga-chrome .footer .row > [class^="col-"],
html.dga-chrome .footer .row > [class*=" col-"] {
  width: auto;
  max-width: none;
  flex: initial;
  padding: 0;
}

/* --- Top row (logo column) --- */
html.dga-chrome .footer__top-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
html.dga-chrome .footer__logo {
  display: inline-block;
}
html.dga-chrome .footer__logo img {
  height: 56px;
  width: auto;
}

/* --- Footer column block --- */
html.dga-chrome .footer__block {
  margin: 0;
}
html.dga-chrome .footer__block h2,
html.dga-chrome .footer__block .h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--chrome-text-inverse);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

/* --- Footer link list --- */
html.dga-chrome .footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html.dga-chrome .footer__links a {
  color: var(--chrome-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
  padding: 2px 0;
  border-radius: 2px;
  transition: color 0.15s ease;
}
html.dga-chrome .footer__links a:hover,
html.dga-chrome .footer__links a:focus-visible {
  color: var(--chrome-text-inverse);
  text-decoration: underline;
  text-underline-offset: 3px;
}
html.dga-chrome .footer__links a:focus-visible {
  outline: 2px solid var(--chrome-text-inverse);
  outline-offset: 2px;
}

/* --- Social row --- */
html.dga-chrome .footer__social {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0 0;
}
html.dga-chrome .footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--chrome-radius-pill);
  background: rgba(255,255,255,0.10);
  color: var(--chrome-text-inverse);
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
html.dga-chrome .footer__social a:hover,
html.dga-chrome .footer__social a:focus-visible {
  background: var(--chrome-action);
  transform: translateY(-1px);
}
html.dga-chrome .footer__social a:focus-visible {
  outline: 2px solid var(--chrome-text-inverse);
  outline-offset: 2px;
}
html.dga-chrome .footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: currentColor;
}

/* --- DGA registration stamp box (right of footer) --- */
html.dga-chrome .re-edited-box-icon {
  margin-top: 16px;
}
html.dga-chrome .re-edited-box-icon img {
  max-width: 220px;
  height: auto;
  display: inline-block;
  background: #FFFFFF;
  padding: 4px;
  border-radius: var(--chrome-radius-card);
}
html.dga-chrome .re-edited-box-icon a:focus-visible {
  outline: 2px solid var(--chrome-text-inverse);
  outline-offset: 4px;
  border-radius: var(--chrome-radius-card);
}

/* --- Copyright strip --- */
html.dga-chrome .copyrights {
  margin-top: 32px;
  padding: 16px 16px;
  border-top: 1px solid var(--chrome-divider);
  color: var(--chrome-text-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
html.dga-chrome .copyrights [lang="en"] { display: none; }
html.dga-chrome[lang="en"] .copyrights [lang="ar"],
html.dga-chrome body.en .copyrights [lang="ar"] { display: none; }
html.dga-chrome[lang="en"] .copyrights [lang="en"],
html.dga-chrome body.en .copyrights [lang="en"] { display: inline; }

/* --- Back-to-top FAB --- */
html.dga-chrome .footer .top {
  position: absolute;
  inset-inline-end: 24px;
  top: -28px;
  width: 48px;
  height: 48px;
  border-radius: var(--chrome-radius-pill);
  background: var(--chrome-action);
  color: var(--chrome-text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md, 0 4px 8px -2px rgba(16,24,40,0.10));
  text-decoration: none;
  z-index: 5;
}
html.dga-chrome .footer .top:hover,
html.dga-chrome .footer .top:focus-visible {
  background: var(--chrome-action-hover);
  transform: translateY(-2px);
}
html.dga-chrome .footer .top:focus-visible {
  outline: 2px solid var(--chrome-text-inverse);
  outline-offset: 3px;
}
html.dga-chrome .footer .top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: currentColor;
}

/* ===========================================================
  10. LTR overrides — page rendered with .en body or dir=ltr
  =========================================================== */
html.dga-chrome[dir="ltr"] .header__vision,
html.dga-chrome body.en .header__vision {
  border-inline-start: 1px solid var(--chrome-divider);
}
html.dga-chrome[dir="ltr"] .language__switcher {
  font-weight: 600;
}

/* ===========================================================
  11. Responsive — breakpoints 1600 / 1280 / 1024 / 768 / 576
  =========================================================== */

/* ---- Wide desktop ≤1600 (slight squeeze) ---- */
@media (max-width: 1600px) {
  html.dga-chrome .navbar-nav .nav-link { padding: 10px 12px; font-size: 14.5px; }
  html.dga-chrome .header__link { padding: 8px 8px; font-size: 12.5px; }
}

/* ---- Desktop ≤1280 (drop utility labels, keep icons) ---- */
@media (max-width: 1280px) {
  html.dga-chrome .header__link { font-size: 12px; gap: 4px; padding: 8px 6px; }
  html.dga-chrome .navbar-nav .nav-link { padding: 10px 10px; font-size: 14px; }
  html.dga-chrome .header__vision img { height: 36px; }
  html.dga-chrome .navbar-brand img { height: 40px; }
}

/* ---- Tablet ≤1024 (collapse to drawer) ---- */
@media (max-width: 1023px) {
  html.dga-chrome .navbar-toggler { display: inline-flex; align-items: center; justify-content: center; }
  html.dga-chrome .header__vision.d-none.d-lg-flex { display: none !important; }
  html.dga-chrome .header__vision.d-lg-none { display: inline-flex !important; }

  html.dga-chrome .collapse.navbar-collapse {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--chrome-bg-darker);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    box-shadow: var(--chrome-shadow-sticky);
    border-top: 1px solid var(--chrome-divider);
    display: none;
    max-height: calc(100vh - var(--chrome-header-h));
    overflow-y: auto;
  }
  html.dga-chrome .collapse.navbar-collapse.show {
    display: flex;
  }
  html.dga-chrome .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
  }
  html.dga-chrome .navbar-nav > li.nav-item {
    display: block;
    width: 100%;
  }
  html.dga-chrome .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 14px;
    justify-content: space-between;
  }
  html.dga-chrome .navbar-nav .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    box-shadow: none;
    border: 0;
    background: rgba(255,255,255,0.06);
    margin: 4px 0;
    padding: 4px;
  }
  html.dga-chrome .navbar-nav .dropdown-menu .dropdown-item {
    color: var(--chrome-text-muted);
  }
  html.dga-chrome .navbar-nav .dropdown-menu .dropdown-item:hover,
  html.dga-chrome .navbar-nav .dropdown-menu .dropdown-item:focus-visible {
    background: var(--chrome-action);
    color: var(--chrome-text-inverse);
  }
  html.dga-chrome .navbar-nav .dropdown-menu.dropdown-menu-2col {
    columns: 1;
  }
  html.dga-chrome .header__top-bar {
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--chrome-divider);
    flex-wrap: wrap;
  }
  html.dga-chrome .header__link {
    color: var(--chrome-text-inverse);
  }
}

/* ---- Mobile ≤768 (footer collapses to one column) ---- */
@media (max-width: 767px) {
  html.dga-chrome #dga-stamp-bar { font-size: 11px; padding: 4px 0; }
  html.dga-chrome .digital-stamp-card__title { font-size: 12px; }

  html.dga-chrome .header .container { padding-inline: 12px; }
  html.dga-chrome .header__container { min-height: 60px; }
  html.dga-chrome .navbar-brand img { height: 36px; }
  html.dga-chrome .header__vision img { height: 32px; }

  html.dga-chrome .footer { padding-top: 40px; }
  html.dga-chrome .footer .container.d-pad { padding-inline: 16px; }
  html.dga-chrome .footer .row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  html.dga-chrome .footer__top-row { align-items: center; text-align: center; }
  html.dga-chrome .footer__social { justify-content: flex-start; }
  html.dga-chrome .footer .top { inset-inline-end: 16px; top: -24px; width: 40px; height: 40px; }
  html.dga-chrome .footer .top svg { width: 18px; height: 18px; }
  html.dga-chrome .re-edited-box-icon img { max-width: 180px; }
}

/* ---- Small mobile ≤576 ---- */
@media (max-width: 575px) {
  html.dga-chrome .header__link .header-link-text,
  html.dga-chrome .header__link[data-mobile-hide-label] .header-link-text {
    /* keep labels for AR/EN but trim non-essential top-bar items if needed */
  }
  html.dga-chrome #dga-stamp-bar .digital-stamp-card { padding: 3px 8px; }
  html.dga-chrome .digital-stamp-card__img { width: 22px; height: 22px; }
}

/* ===========================================================
  12. Reduced motion / a11y
  =========================================================== */
@media (prefers-reduced-motion: reduce) {
  html.dga-chrome .navbar-nav .nav-link,
  html.dga-chrome .header__link,
  html.dga-chrome .footer__social a,
  html.dga-chrome .footer .top,
  html.dga-chrome .navbar-nav .dropdown-menu .dropdown-item,
  html.dga-chrome .navbar-nav .nav-link .dropdown-caret {
    transition: none;
  }
}
html.dga-chrome .skip-link {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  padding: 8px 12px;
  background: var(--chrome-action);
  color: var(--chrome-text-inverse);
  text-decoration: none;
  transform: translateY(-150%);
}
html.dga-chrome .skip-link:focus {
  transform: translateY(0);
  z-index: 9999;
}
