/**
 * blog.css: for the blog index and post pages
 */

.post-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.post-list li {
  border-bottom: 1px solid var(--rb-border);
  padding: 1.25rem 0;
  margin: 0;
}

.post-list li:first-child {
  padding-top: 0;
}

.post-list li > a {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.post-list li > a:hover {
  text-decoration: underline;
}

.post-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0 0;
}

.post-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0.5rem 0 0 0;
}

.post-feed {
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}

.post {
  margin-top: 2rem;
}

.post h2 {
  font-size: 1.5rem;
}

.post h3 {
  font-size: 1.25rem;
}

.post blockquote {
  border-left: 2px solid var(--rb-border);
  margin: 0 0 1.5rem 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.post code {
  background: var(--bg-surface);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius);
  padding: 0.1rem 0.35rem;
  font-size: 0.9em;
}

.post pre {
  background: var(--bg-surface);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius);
  padding: 1rem;
  overflow-x: auto;
  margin: 0 0 1.5rem 0;
}

.post pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
