.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(11, 47, 82, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.blog-card h2 {
  font-size: 1.28rem;
  margin-bottom: 0;
}

.blog-card h2 a:hover {
  color: var(--brand-2);
}

.post-shell {
  max-width: 900px;
}

.post-shell section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
}

.post-hero {
  height: 220px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(11, 47, 82, 0.9), rgba(13, 94, 163, 0.8)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1400&q=80") center/cover;
  margin: 1rem 0;
}

.post-cta {
  background: linear-gradient(145deg, rgba(11, 47, 82, 0.95), rgba(13, 94, 163, 0.88));
}

.post-cta h2,
.post-cta p {
  color: #eef7ff;
}

@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
