/* Void Markdown — Reset & Baseline
 *
 * Opinionated modern reset for markdown-driven sites.
 * Imported by index.css — not intended for standalone use.
 */

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

/* Remove default margins */
* {
  margin: 0;
}

/* Document */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

/* Body */
body {
  min-height: 100dvh;
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* Media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
}

/* Monospace */
code,
kbd,
samp,
pre {
  font-family:
    ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
  font-size: 1em;
}

/* Links */
a {
  color: inherit;
  text-decoration: inherit;
}

/* Tables */
table {
  border-collapse: collapse;
}

/* Horizontal rule */
hr {
  border: none;
}
