*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bn-color-surface);
  color: var(--bn-color-ink);
  font-family: var(--bn-font-sans);
  font-size: var(--bn-text-base);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

img,
picture,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--bn-color-primary-700);
}

:focus-visible {
  outline: 3px solid var(--bn-color-focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
}

h1,
h2 {
  font-family: var(--bn-font-serif);
}


.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  white-space: normal;
}

.bn-skip-link {
  position: fixed;
  top: var(--bn-space-3);
  left: var(--bn-space-3);
  z-index: var(--bn-z-modal);
  transform: translateY(-160%);
  padding: var(--bn-space-3) var(--bn-space-4);
  border-radius: var(--bn-radius-sm);
  background: var(--bn-color-ink);
  color: #fff;
}

.bn-skip-link:focus {
  transform: translateY(0);
}

.bn-meta,
.bn-eyebrow {
  color: var(--bn-color-muted);
  font-size: var(--bn-text-xs);
}

.bn-eyebrow {
  margin-bottom: var(--bn-space-2);
  color: var(--bn-color-accent-600);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
