/* ============================
   Blog 
============================ */

.blog {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.blog-header {
  margin-bottom: 3rem;
  text-align: center;
}

.blog-header h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.blog-intro {
  max-width: 80ch;
  margin: 0.75rem auto 0;
  line-height: 1.7;
  color: var(--text);
}

.hover-raise:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* Meta */
.post-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

/* Tags */
.post-tags {
  white-space: nowrap;
}

.tag {
  display: inline-block;
  background: var(--tag-background);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  margin-left: 0.25rem;
  font-size: 0.7rem;

}

/* Excerpt */
.post-excerpt {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}