/* ============================================================
   POSTS.CSS — all post reading styles live here.
   Every post links: base.css + posts.css
   Index never links this file.
   ============================================================ */

/* ============================================================
   BODY & BACKGROUND
   ============================================================ */

body {
  background: #0a0a0a;
  color: #eaeaea;
  overflow-y: auto;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.post-container {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ============================================================
   BACK LINK
   ============================================================ */

.back-home {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 13px;
  color: #b6ff00;
  text-decoration: none;
}

.back-home:hover {
  text-decoration: underline;
}

/* ============================================================
   POST CONTENT
   ============================================================ */

.blog-post {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.blog-post h1 {
  font-size: 34px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
}

.blog-post h2,
.blog-post h3 {
  color: #ffffff;
  margin-top: 48px;
  margin-bottom: 16px;
}

.blog-post p {
  margin: 18px 0;
  color: #eaeaea;
}

.blog-post blockquote {
  border-left: 3px solid #b6ff00;
  padding-left: 16px;
  color: #cfcfcf;
  margin: 24px 0;
}

.blog-post ul,
.blog-post ol {
  padding-left: 24px;
  margin: 16px 0 24px;
}

.blog-post li {
  margin-bottom: 10px;
}

.blog-post strong {
  color: #ffffff;
}

.blog-post img {
  width: 100%;
  margin: 24px 0;
  border-radius: 6px;
}

.blog-post pre {
  background: #111;
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 14px;
  color: #b6ff00;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .post-container {
    margin: 40px 16px;
    padding: 0;
  }

  .blog-post h1 {
    font-size: 26px;
  }

  .blog-post {
    font-size: 16px;
  }
}