/* Blog content styles — header/footer use /css/site.css from the main site. */

.blog-main {
  padding-bottom: 48px;
}

.blog-main .container {
  padding-top: 32px;
}

.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li { margin: 16px 0; padding-bottom: 12px; border-bottom: 1px solid #e0dcd4; }
.post-list a { font-weight: 600; color: var(--text); text-decoration: none; }
.post-list a:hover { color: var(--text-accent); }
.post-list .meta { display: block; font-size: 0.9rem; color: #555; }

.prose h2 { margin-top: 1.75rem; font-size: 1.25rem; }

.prose img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 1.5rem;
  border-radius: 4px;
}

.post-single-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e0dcd4;
  font-size: 0.95rem;
}

.post-single-footer a {
  color: var(--text-accent);
  text-decoration: none;
}

.post-single-footer a:hover {
  text-decoration: underline;
}

.blog-pagination {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0dcd4;
}

.blog-pagination-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.blog-pagination-pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-pagination-btn,
.blog-pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #d8d2c8;
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.blog-pagination-page {
  min-width: 40px;
  padding: 0 12px;
}

.blog-pagination-btn:hover,
.blog-pagination-page:hover {
  border-color: var(--text-accent);
  color: var(--text-accent);
}

.blog-pagination-page.is-active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.blog-pagination-btn.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.blog-pagination-status {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}
