/**
 * Global base styles on top of tokens.
 * Keeps Bootstrap-compatible defaults where pages still use grid classes.
 */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body.edp-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  background-color: var(--color-white);
  line-height: var(--line-height-body);
}

.edp-main {
  flex: 1 1 auto;
  width: 100%;
}

.edp-skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: var(--space-2) var(--space-4);
  background: var(--color-brand-red);
  color: var(--color-text-on-dark);
}

.edp-skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

a {
  color: var(--color-brand-red);
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}
