/* Blog post page specific styles */
.blog-post-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.breadcrumb {
  margin-bottom: 32px;
  font-size: 14px;
  color: #aeb6c4;
}

.breadcrumb a {
  color: #9ed1ff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #c9d2e0;
}

.post-header {
  margin-bottom: 48px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-header .post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #aeb6c4;
}

.post-header .post-meta time {
  color: #9ed1ff;
  font-weight: 500;
}

.post-header .category {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-header .read-time {
  color: #aeb6c4;
}

.post-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  margin: 0 0 24px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.post-excerpt {
  font-size: 20px;
  color: #c3c9d4;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #c9d2e0;
}

.post-content p {
  margin: 0 0 24px;
}

.post-content h2 {
  font-size: 28px;
  color: #ffffff;
  margin: 48px 0 24px;
  line-height: 1.3;
}

.post-content h3 {
  font-size: 22px;
  color: #e6e7ea;
  margin: 32px 0 16px;
  line-height: 1.4;
}

.post-content ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-content strong {
  color: #ffffff;
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.highlight-box h3 {
  margin-top: 0;
  color: #9ed1ff;
  font-size: 20px;
}

.highlight-box ul {
  margin-bottom: 0;
}

.insight-box {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.insight-box h3 {
  margin-top: 0;
  color: #22d3ee;
  font-size: 20px;
}

.insight-box p {
  margin-bottom: 16px;
}

.insight-box p:last-child {
  margin-bottom: 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 16px;
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}

.cta-box h3 {
  font-size: 24px;
  color: #ffffff;
  margin: 0 0 16px;
}

.cta-box p {
  color: #c9d2e0;
  font-size: 16px;
  margin: 0 0 24px;
}

.post-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tag {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-navigation {
  text-align: center;
}

.back-to-blog {
  color: #9ed1ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.back-to-blog:hover {
  color: #dbe6ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-page {
    padding: 80px 0 60px;
  }
  
  .post-header {
    margin-bottom: 32px;
  }
  
  .post-header .post-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .post-header h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
  
  .post-excerpt {
    font-size: 18px;
  }
  
  .post-content {
    font-size: 16px;
  }
  
  .post-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
  }
  
  .post-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
  }
  
  .highlight-box,
  .insight-box,
  .cta-box {
    padding: 20px;
    margin: 24px 0;
  }
  
  .cta-box h3 {
    font-size: 20px;
  }
  
  .post-footer {
    margin-top: 48px;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .blog-post-page {
    padding: 60px 0 40px;
  }
  
  .post-header h1 {
    font-size: clamp(24px, 10vw, 28px);
  }
  
  .post-excerpt {
    font-size: 16px;
  }
  
  .post-content {
    font-size: 15px;
  }
  
  .post-content h2 {
    font-size: 22px;
  }
  
  .post-content h3 {
    font-size: 18px;
  }
  
  .highlight-box,
  .insight-box,
  .cta-box {
    padding: 16px;
  }
  
  .cta-box h3 {
    font-size: 18px;
  }
}
