/* Blog Post Styling */

/* Breadcrumb Styling */
.breadcrumb {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  align-items: center;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
}

.breadcrumb-list li::before {
  content: none !important;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  color: #94a3b8;
  margin-left: 0.5rem;
}

.breadcrumb-list li a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb-list li a:hover {
  color: #2563eb;
}

.breadcrumb-list li:last-child {
  color: #64748b;
  font-weight: 500;
}

/* Enhanced Typography */
.blog-post .post-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.blog-post .post-content p:first-of-type {
  font-size: 1.25rem;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.7;
}

.blog-post .post-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #3b82f6;
  position: relative;
  letter-spacing: -0.01em;
}

.blog-post .post-content h2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.blog-post .post-content a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.blog-post .post-content a:hover {
  color: #2563eb;
  border-bottom-color: #3b82f6;
}

/* Custom List Styling */
.blog-post .post-content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.blog-post .post-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1.075rem;
  line-height: 1.7;
  color: #475569;
}

.blog-post .post-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.25rem;
}

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

/* FAQ Section Enhanced Styling */
.blog-faq-section {
  margin-top: 4rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.blog-faq-section h2 {
  border-bottom: none !important;
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 0 !important;
}

.blog-faq-section h2::before {
  display: none;
}

.faq-accordion {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion:hover {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: #3b82f6;
  background: #f8fafc;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  margin: 0;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.cta-box p {
  color: white !important;
  font-size: 1.2rem !important;
  margin: 0 !important;
}

.cta-box a {
  color: #60a5fa !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #60a5fa !important;
}

.cta-box a:hover {
  color: white !important;
  border-bottom-color: white !important;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .blog-post .post-content h2 {
    font-size: 1.5rem;
  }

  .blog-post .post-content p {
    font-size: 1rem;
  }

  .blog-post .post-content p:first-of-type {
    font-size: 1.125rem;
  }

  .blog-faq-section {
    padding: 3rem 1.25rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.15rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 1.15rem 1rem 1.15rem;
  }
}
