
body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  padding: 20px;
  color: #1f2937;
}
h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
  background: #fef3c7;
}
.card a {
  text-decoration: none;
  color: #0b2242;
}
.card h2 {
  margin-bottom: 0.5rem;
}
