/* Post list */

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

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

.post-list > li:last-child {
  border-bottom: none;
}

.post-list h2 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.post-list h2 a,
.entry-title a {
  color: var(--text);
}

.post-list h2 a:hover,
.entry-title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.entry-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.entry-meta a {
  color: var(--muted);
}

.entry-excerpt {
  margin: 0;
  color: var(--text);
}

/* Article */

.entry-title {
  font-size: 2rem;
  margin: 0 0 0.25rem;
}

.entry-content h2 {
  margin-top: 2rem;
}

.entry-content pre {
  background: var(--code-bg);
  color: var(--code-text);
  padding: 1rem;
  overflow-x: auto;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.entry-content code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-size: 0.9em;
}

.entry-content pre code {
  background: none;
  padding: 0;
}

.entry-content blockquote {
  margin: 1rem 0;
  padding: 0.25rem 1rem;
  border-left: 4px solid var(--border);
  color: var(--muted);
}

.entry-tags {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.entry-tags .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 0.15em 0.5em;
  margin: 0 0.25em 0.25em 0;
}

.post-nav {
  margin: 2.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Tables */

.entry-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
}

.entry-content th,
.entry-content td {
  padding: 0.5rem 1.5rem 0.5rem 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.entry-content th {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.figure-caption {
  text-align:center; 
  font-weight: bold; 
  font-size: 0.85em; 
  margin-top: 0em;
}
