.post-hero {
  padding-top: 110px;
  padding-bottom: 26px;
}

.post-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 14px;
}

.post-title {
  font-size: clamp(36px, 5vw, 50px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.post-lead {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--text-muted);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 12px;
}

.post-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.post-author-name {
  font-weight: 600;
  font-size: 13px;
}

.post-series-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
}

.post-author-role {
  font-size: 12px;
  color: var(--text-muted);
}

.post-meta-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.post-body {
  max-width: var(--max-width);
  width: 100%;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 auto;
}

.post-content {
  padding-top: 50px;
  padding-bottom: 70px;
}

.post-body h2 {
  color: var(--text);
  margin-top: 30px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.post-body h3 {
  color: var(--text);
  margin-top: 18px;
  margin-bottom: 8px;
}

.post-body p {
  margin: 0 0 14px;
}

.post-body ul {
  margin: 0 0 18px 16px;
  padding: 0;
  color: var(--text-muted);
}

.post-body li {
  margin-bottom: 8px;
}

@media (max-width: 720px) {
  .post-hero {
    padding-top: 90px;
  }
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .post-meta-right {
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
    width: 100%;
  }
}
