.hero {
  text-align: center;
  padding: 80px 20px 40px;
}
.avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}
.hero h1 { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.02em; }
.hero p { margin-top: 10px; color: #666; font-size: 1.1rem; }
.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 28px;
  border-radius: 24px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35); }
.home-about,
.home-recent {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 20px;
}
.home-about h2,
.home-recent h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.home-about p { color: #555; }
#recent-posts { display: flex; flex-direction: column; gap: 12px; }
.recent-card {
  display: block;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
  animation: cardIn 0.5s ease both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
.recent-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.recent-card .meta { font-size: 0.82rem; color: #999; }
.recent-card h3 { font-size: 1.05rem; font-weight: 600; margin-top: 4px; }
