/* BLOG LAYOUT */

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e2e8f0;
}

/* Smooth feel */
* {
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: radial-gradient(circle at top, rgba(56,189,248,0.15), transparent 60%);
}

.hero h1 {
  font-size: 3.2em;
  letter-spacing: -1px;
}

.blog-container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
}

.post-preview {
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #334155;
}

.post-preview h2 {
  margin-bottom: 5px;
}

.post-preview a {
  text-decoration: none;
  color: #e2e8f0;
}

.post-preview a:hover {
  color: #38bdf8;
}

.post-meta {
  font-size: 0.9em;
  color: #94a3b8;
  margin-bottom: 10px;
}
