/* =====================================================================
   Techne Base Styles — Typography, Resets, Global
   ===================================================================== */

/* Ensure consistent typography across the site */
body {
  font-family: var(--md-text-font, "Inter"), sans-serif;
  color: var(--body-text-color);
}

code,
pre {
  font-family: var(--md-code-font, "JetBrains Mono"), monospace;
}

/* Ensure links use bronze color */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--link-hover-color);
}

/* Improve readability of code blocks */
.md-typeset code {
  background-color: var(--inline-code-bg);
  border-radius: 0.25rem;
  padding: 0.1rem 0.35rem;
  color: var(--inline-code-color);
}

/* Smooth transitions across the site */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
