/* Overall article */
.blog-post {
  max-width: 800px;
  /* margin: 3rem auto; */
  /* padding: 0 1.5rem; */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1f2937; /* gray-800 */
  line-height: 1.65;
}

/* Title */
.post-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  color: #111827; /* gray-900 */
}

.post-tags {
  /* flex-wrap: nowrap; */
}

/* Header block */
.post-header {
  margin-bottom: 2rem;
}

/* Meta row */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280; /* gray-500 */
  margin-bottom: 1.5rem;
  gap: 0.4rem;
}

/* Author link */
.post-meta .author a {
  color: #2563eb; /* blue-600 */
  text-decoration: none;
}
.post-meta .author a:hover {
  text-decoration: underline;
}

/* Separators */
.post-meta .separator {
  color: #d1d5db; /* gray-300 */
}

/* Category pill */
.post-meta .category {
  background: #eef2ff;         /* indigo-50 */
  color: #4338ca;              /* indigo-700 */
  border-radius: 9999px;
  padding: 0.1rem 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Hero image */
.post-hero {
  margin: 2rem 0;
}
.post-hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.post-hero figcaption {
  font-size: 0.75rem;
  color: #6b7280; /* gray-500 */
  margin-top: 0.5rem;
  text-align: center;
}

/* Summary deck */
p.blog-summary {
  font-size: 1.25rem;
  font-weight: 500;
  color: #374151; /* gray-700 */
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* Body */
.post-body h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.post-body p {
  margin: 1rem 0;
}
.post-body blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #3b82f6; /* blue-500 */
  background: #f9fafb;
  color: #374151;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

/* Footer / CTA */
.post-footer {
  text-align: center;
}
.post-cta {
  padding: 2rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
}
.post-cta h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}
.post-cta a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.post-cta a:hover {
  background: #1d4ed8;
}

/* Responsive adjustments */
@media (min-width: 900px) {
  .post-title { font-size: 2.75rem; }
  .blog-summary { font-size: 1.5rem; }
}
