Blog Post Specific Styles .blog-post-main {
  padding: 60px 0;
  background: #ffffff;
}

.container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

/* Post Meta */
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.date {
  font-family: var(--font-numbers);
  font-weight: 400;
  color: var(--edifecs-orange);
  font-size: 16px;
}

.categories {
  display: flex;
  gap: 10px;
}

.category {
  background: var(--medical-mint);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Blog Title - Montserrat */
.blog-title {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 48px;
  color: var(--indigo);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Blog Subtitle */
.blog-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--grey);
  margin-bottom: 40px;
  font-style: italic;
}

/* Author Info */
.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--medical-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 24px;
}

.author-name {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 5px;
}

.author-bio {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
}

/* Featured Image */
.featured-image {
  margin-bottom: 40px;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Blog Content - Poppins */
.blog-content {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
}

.blog-content h2 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--indigo);
  margin: 40px 0 20px 0;
}

.blog-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--edifecs-orange);
  margin: 30px 0 15px 0;
}

.blog-content p {
  margin-bottom: 20px;
}

/* Tags */
.blog-tags {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.blog-tags h5 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--indigo);
}

.tag {
  display: inline-block;
  background: var(--sunshine-yellow);
  color: var(--indigo);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}

/* Social Sharing */
.social-sharing {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.social-sharing h5 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--indigo);
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

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

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

/* Related Posts */
.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--edifecs-orange);
}

.related-posts h2 {
  font-family: var(--font-titles);
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 30px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.related-post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
}

.related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post-content {
  padding: 20px;
}

.related-post-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
}

.related-post-content h3 a {
  color: var(--indigo);
  text-decoration: none;
}

.related-post-content h3 a:hover {
  color: var(--edifecs-orange);
}

/* Newsletter Signup */
.newsletter-signup {
  background: var(--health-blue);
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
}

.newsletter-signup h2 {
  font-family: var(--font-titles);
  font-weight: 600;
  margin-bottom: 15px;
}

.newsletter-signup p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-title {
    font-size: 36px;
  }

  .author-info {
    flex-direction: column;
    text-align: center;
  }

  .share-buttons {
    flex-direction: column;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}
