/* Render code literally: disable JetBrains Mono ligatures so the R assignment
   operator "<-" stays "<-" instead of being drawn as a left arrow. */
pre, code, kbd, samp, .sourceCode, .sourceCode * {
  font-variant-ligatures: none !important;
  font-feature-settings: "liga" 0, "calt" 0 !important;
}

/* Page header: put the logo and title on one line, vertically centred, so the
   title sits beside the logo instead of floating up to the top of the logo and
   detaching from the rule below. Applies to every page (home, articles, reference). */
.page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-header img.logo {
  float: none !important;
  height: 95px !important;
  width: auto !important;
  margin: 0 !important;
}
.page-header h1 {
  margin-bottom: 0;
}

/* Home-page package name in the logo's navy instead of black. */
#rbbnp- {
  color: #08306B;
}
