:root {
  --ds-font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --ds-text: #111827;
  --ds-border: #e5e7eb;
  --ds-focus: rgba(0, 91, 170, 0.45);
}

body {
  color: var(--ds-text);
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.6rem 0.9rem;
  background: #fff;
  color: #000;
  border-radius: 10px;
  box-shadow: 0 0 0 4px var(--ds-focus);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--ds-focus);
  outline-offset: 2px;
}

/* A small safety net when SB Admin styles are present */
.main-footer {
  border-top: 1px solid var(--ds-border);
}

