/**
 * Individual Blog Post Styles
 */

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 48px 100px;
}

.breadcrumb {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 40px;
}

.breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #000;
}

.post-header {
  margin-bottom: 48px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.post-category {
  display: inline-block;
  padding: 4px 12px;
  background: #f0fdf4;
  color: #10b981;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-date,
.post-read-time {
  font-size: 14px;
  color: #94a3b8;
}

.post-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.025em;
}

.post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #1e293b;
}

.post-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: -0.02em;
}

.post-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 16px;
  color: #000;
}

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

.post-content ul,
.post-content ol {
  margin: 24px 0;
  padding-left: 28px;
}

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

.post-content strong {
  color: #000;
  font-weight: 600;
}

.post-content a {
  color: #10b981;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.post-content a:hover {
  color: #059669;
}

.post-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background: #fafafa;
  border-left: 4px solid #10b981;
  border-radius: 4px;
}

.post-content blockquote p {
  margin: 0;
  color: #1e293b;
}

.post-footer {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid #e5e5e5;
}

.post-cta {
  background: #fafafa;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.post-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.post-cta p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-post-container {
    padding: 40px 24px 80px;
  }

  .post-title {
    font-size: 32px;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content h2 {
    font-size: 24px;
    margin-top: 36px;
  }

  .post-cta {
    padding: 32px 24px;
  }

  .post-cta h3 {
    font-size: 22px;
  }
}
