/* EXALTATION — coordinate the Wagtail admin with the public site's gold theme.
   The admin CSS is bundled/minified, so we override the visible accent surfaces
   (links, primary buttons, active sidebar item, focus rings, brand mark). */
:root {
  --exalt-gold: #C8A24A;
  --exalt-gold-deep: #9C7A2E;
  --exalt-gold-light: #E7C977;
}

/* Primary buttons (Save, etc.) */
.button, .button:hover,
.button.button-longrunning,
input[type="submit"].button,
button.button {
  background-color: var(--exalt-gold) !important;
  border-color: var(--exalt-gold-deep) !important;
  color: #1a1408 !important;
}
.button:hover { background-color: var(--exalt-gold-light) !important; }

/* Links + active nav inside the admin */
a { color: var(--exalt-gold); }
a:hover { color: var(--exalt-gold-light); }

/* Sidebar active / current item */
.sidebar a.is-active,
.sidebar a[aria-current="page"],
.sidebar .is-active > a,
.nav-submenu a.is-active {
  color: var(--exalt-gold-light) !important;
}
.sidebar .is-active::before,
.sidebar a.is-active::before {
  background-color: var(--exalt-gold) !important;
}

/* Focus rings */
:focus-visible,
.button:focus-visible {
  outline-color: var(--exalt-gold) !important;
}

/* Header / branding accent line */
header[class*="header"],
.wagtail-header,
.sidebar {
  border-top-color: var(--exalt-gold) !important;
}
