/* =========================================
   Blog Post Styles
   ========================================= */

.blog-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #FFFFFF;
  box-sizing: border-box;
}

/* Blog Navigation */
.blog-nav {
  margin-bottom: 32px;
}

.blog-nav a {
  color: var(--color-accent, #FF6B35);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.blog-nav a:hover {
  text-decoration: underline;
  color: var(--color-primary, #2D3436);
}

/* Blog Post Header */
.blog-post-header {
  margin-bottom: 32px;
}

.blog-post-header h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 24px;
  word-break: keep-all;
  color: #1A1A1A;
}

/* Blog Post Content */
.blog-post-content {
  color: #333;
}

.blog-post-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.blog-post-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 16px;
  color: #1A1A1A;
  line-height: 1.4;
}

.blog-post-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: #2D3436;
  line-height: 1.4;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: #333;
}

.blog-post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #333;
}

.blog-post-content strong {
  font-weight: 700;
  color: #1A1A1A;
}

.blog-post-content em {
  font-style: italic;
  color: #636E72;
}

.blog-post-content a {
  color: var(--color-accent, #FF6B35);
  text-decoration: none;
}

.blog-post-content a:hover {
  text-decoration: underline;
}

.blog-post-content code {
  background: #F8F9FA;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #E74C3C;
}

.blog-post-content pre {
  background: #F8F9FA;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-accent, #FF6B35);
}

.blog-post-content pre code {
  background: none;
  padding: 0;
  color: #2D3436;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--color-accent, #FF6B35);
  padding-left: 20px;
  margin: 24px 0;
  color: #636E72;
  font-style: italic;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

/* Blog Post Footer */
.blog-post-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  color: #95A5A6;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .blog-post {
    padding: 24px 16px;
  }

  .blog-post-header h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .blog-post-content h2 {
    font-size: 20px;
    margin: 32px 0 12px;
  }

  .blog-post-content h3 {
    font-size: 18px;
    margin: 24px 0 10px;
  }

  .blog-post-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .blog-nav {
    margin-bottom: 24px;
  }
}

