/* Simple Blog Post Styles */
.blog-post {
  background: #ffffff;
  min-height: 100vh;
}

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.breadcrumb-link {
  color: #0066cc;
  text-decoration: none;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #999;
  margin: 0 6px;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

/* Article Header */
.blog-post-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
}

.blog-post-date {
  font-weight: 500;
}

.blog-post-read-time {
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.blog-post-author {
  font-weight: 500;
}

.blog-post-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
  margin-bottom: 16px;
}

.blog-post-excerpt {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-post-tag {
  background: #f0f0f0;
  color: #666;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
}

.blog-post-tag:hover {
  background: #e0e0e0;
}

/* Article Content */
.blog-post-content {
  line-height: 1.7;
  color: #333;
  margin-bottom: 60px;
}

.content-h1 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 40px 0 20px 0;
  line-height: 1.3;
}

.content-h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin: 35px 0 15px 0;
  line-height: 1.3;
}

.content-h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 12px 0;
  line-height: 1.3;
}

.content-h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 10px 0;
  line-height: 1.4;
}

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

.content-li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #333;
}

.content-code {
  background: #f5f5f5;
  color: #d73a49;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
}

/* Article Footer */
.blog-post-footer {
  border-top: 1px solid #eee;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-post-cta {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.blog-post-cta h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.blog-post-cta p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background: #0066cc;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background: #0052a3;
}

.blog-post-share {
  text-align: center;
}

.blog-post-share h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.2s;
}

.share-button:hover {
  opacity: 0.8;
}

.share-button.twitter {
  background: #1da1f2;
  color: white;
}

.share-button.linkedin {
  background: #0077b5;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-container {
    padding: 30px 16px;
  }

  .blog-post-title {
    font-size: 28px;
  }

  .blog-post-excerpt {
    font-size: 16px;
  }

  .content-h1 {
    font-size: 26px;
  }

  .content-h2 {
    font-size: 22px;
  }

  .content-h3 {
    font-size: 20px;
  }

  .content-h4 {
    font-size: 18px;
  }

  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-button {
    width: 180px;
    justify-content: center;
  }
} 