/* ═══════════════════════════════════════════════
   BLOG / NEWS
   ═══════════════════════════════════════════════ */

/* ── Post Grid ── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Post Card ── */
.post-card {
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow var(--transition-base, 0.2s), transform var(--transition-base, 0.2s);
}

.post-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.post-card__category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-carrot-orange);
  margin-bottom: 8px;
}

.post-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.post-card__title a {
  color: var(--color-ink);
  text-decoration: none;
}

.post-card__title a:hover {
  color: var(--color-palatinate-blue);
}

.post-card__excerpt {
  font-size: 0.88rem;
  color: var(--color-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.post-card__date {
  font-size: 0.75rem;
  color: var(--color-mid);
}

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.pagination__info {
  font-size: 0.82rem;
  color: var(--color-mid);
}

/* ── Post Meta ── */
.post-meta { font-size: 0.82rem; color: var(--color-mid); margin-bottom: 2rem; }

/* ── Post Content (single post page) ── */
.post-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.post-content h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.post-content p { margin-bottom: 1rem; line-height: 1.7; }
.post-content a { color: var(--color-palatinate-blue); text-decoration: underline; }
.post-content blockquote { border-left: 3px solid var(--color-carrot-orange); padding-left: 20px; margin: 1.5rem 0; font-style: italic; }
.post-content ul, .post-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.25rem; line-height: 1.6; }

/* ── Blog responsive ── */
@media (max-width: 760px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}
