/* Blog index. Cards borrow the landing page's feature-card treatment so the
   article list reads as part of the same site. */

.blog-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-card {
  display: block;
  background: var(--card-bg);
  border-top: 3px solid #555;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.post-card:hover {
  border-top-color: var(--accent);
  background: #191919;
}

.post-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.post-card .post-meta {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.post-card .post-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
