:root {
  --color-primary: #4a6fa5;
  --color-primary-hover: #3a5a8a;
  --color-border: #7a9cc0;
  --font-size-base: 17px;
}

html, body, p, h1, h2, h3, h4, h5, h6, li, blockquote, td, th, dt, dd {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Thinner link underlines globally */
a {
  border-block-end-width: 2px;
  border-bottom-width: 2px;
}

/* Match list item spacing to body paragraph style */
.body li {
  line-height: var(--line-height-content, 1.5);
  margin-bottom: 0.5em;
}

/* Fix bullet alignment — replace theme's text-indent approach with absolute
   positioning so all lines of text align flush, not just the first. */
.body ul {
  padding-inline-start: 1.2em;
}

.body ul li {
  text-indent: 0;
  position: relative;
}

.body ul > li::before {
  position: absolute;
  inset-inline-start: -1.2em;
}
