/* Custom styles for PLVS Blog */
body {
  font-family: 'Inter', system-ui, sans-serif;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
}

/* Better math display */
.math {
  font-size: 1.05em;
}

/* Post cards */
.listing .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}