:root {
  --post-measure: 86ch;
  --code-bg: rgba(15, 16, 18, 0.045);
}

.home.post {
  padding-top: 34px;
}

.post-head {
  max-width: var(--post-measure);
  margin: 0 0 18px;
}

.post-title {
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  line-height: 1.15;
  margin: 0;
}

.post-subtitle {
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 70ch;
}

.post-meta-min {
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(90, 97, 107, 0.9);
  margin: 10px 0 0;
}

.post-body {
  max-width: var(--post-measure);
}

.post-body > :first-child {
  margin-top: 0;
}

.post-body h2,
.post-body h3,
.post-body h4 {
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
}

.post-body h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
}

.post-body h3 {
  font-size: 1.05rem;
  margin: 22px 0 8px;
}

.post-body h4 {
  font-size: 0.86rem;
  margin: 18px 0 8px;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

.post-body blockquote {
  margin: 16px 0 18px;
  padding: 10px 14px;
  border-left: 3px solid var(--border);
  background: rgba(15, 109, 95, 0.04);
  color: var(--muted);
}

.post-body blockquote p {
  margin: 0;
}

.post-body a:hover,
.post-body a:focus {
  text-decoration-thickness: 1px;
}

.post-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(230, 224, 217, 0.85);
}

.post-body p > img,
.post-body a > img {
  margin: 12px 0;
}

.post-body figure {
  margin: 16px 0 18px;
}

.post-body figcaption {
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
}

.post-body pre {
  background: var(--code-bg);
  border: 1px solid rgba(230, 224, 217, 0.85);
  border-radius: 14px;
  padding: 12px 14px;
  overflow: auto;
}

.post-body code,
.post-body pre {
  font-size: 0.92em;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(230, 224, 217, 0.85);
  border-radius: 14px;
  overflow: hidden;
}

.post-body th,
.post-body td {
  border-bottom: 1px solid rgba(230, 224, 217, 0.85);
  padding: 8px 10px;
  vertical-align: top;
}

.post-body th {
  text-align: left;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  background: rgba(15, 109, 95, 0.04);
}

.blog-tags {
  max-width: var(--post-measure);
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
}

.blog-tags i {
  margin-right: 8px;
  opacity: 0.75;
}

#social-share-section {
  max-width: var(--post-measure);
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#social-share-section a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(230, 224, 217, 0.95);
  background: rgba(251, 251, 250, 0.72);
  color: var(--muted);
  text-decoration: none;
}

#social-share-section a:hover,
#social-share-section a:focus {
  color: var(--accent);
  border-color: rgba(15, 109, 95, 0.28);
  background: rgba(15, 109, 95, 0.06);
}

.pager.blog-pager {
  max-width: var(--post-measure);
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
}

.pager.blog-pager li {
  margin: 0;
}

.pager.blog-pager a {
  border-bottom: 0;
}

.disqus-comments {
  max-width: var(--post-measure);
  margin: 28px 0 0;
}

@media (max-width: 640px) {
  .home.post {
    padding-top: 28px;
  }
}

