.blog-hero {
  padding: 160px 0 60px;
  border-bottom: 1px solid var(--line);
}

.blog-hero .section-label {
  margin-bottom: 24px;
}

.blog-hero h1 {
  font-family: Sora,sans-serif;
  font-weight: 800;
  font-size: clamp(3rem,7vw,5.5rem);
  line-height: 1;
  letter-spacing: -.055em;
  color: var(--white);
  margin-bottom: 20px;
}

.blog-hero p {
  max-width: 480px;
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-list-section {
  padding: 70px 0 125px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-list-item {
  display: block;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  transition: .25s;
}

.blog-list-item:hover {
  background: var(--card-hover);
  border-color: rgba(168,85,247,.35);
  transform: translateY(-3px);
}

.blog-list-item .meta {
  margin-bottom: 14px;
}

.blog-list-item h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: Sora,sans-serif;
  font-size: 1.5rem;
  letter-spacing: -.03em;
}

.blog-list-item p {
  max-width: 620px;
  color: var(--muted);
}

.blog-list-item .read {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-family: "IBM Plex Mono",monospace;
  font-size: .7rem;
}

.blog-empty {
  padding: 60px 0;
  color: var(--muted);
  font-family: "IBM Plex Mono",monospace;
  font-size: .85rem;
}

/* Individual post page */

.post {
  padding: 160px 0 125px;
}

.post-container {
  max-width: 760px;
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
}

.post-meta {
  margin-bottom: 20px;
}

.post-title {
  font-family: Sora,sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem,5vw,3.2rem);
  line-height: 1.1;
  letter-spacing: -.045em;
  color: var(--white);
  margin-bottom: 44px;
}

.post-content {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content p {
  margin-bottom: 22px;
}

.post-content h2,
.post-content h3 {
  font-family: Sora,sans-serif;
  color: var(--white);
  letter-spacing: -.03em;
  margin: 40px 0 18px;
}

.post-content h2 {
  font-size: 1.6rem;
}

.post-content h3 {
  font-size: 1.3rem;
}

.post-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(59,130,246,.4);
  text-underline-offset: 3px;
}

.post-content a:hover {
  text-decoration-color: var(--blue);
}

.post-content ul,
.post-content ol {
  margin: 0 0 22px 22px;
}

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

.post-content blockquote {
  margin: 0 0 22px;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--purple);
  color: var(--muted);
}

.post-content code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(255,255,255,.06);
  font-family: "IBM Plex Mono",monospace;
  font-size: .9em;
}

.post-content pre {
  margin: 0 0 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0d0e11;
  overflow-x: auto;
}

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

.post-content img {
  border-radius: var(--radius);
  margin: 10px 0 22px;
}

.post-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

@media (max-width: 700px) {
  .blog-hero {
    padding: 120px 0 45px;
  }

  .blog-list-section {
    padding: 45px 0 85px;
  }

  .blog-list-item {
    padding: 24px;
  }

  .post {
    padding: 120px 0 85px;
  }

  .post-title {
    margin-bottom: 32px;
  }
}