/* ===========================================
   Blog Post Page Styles
   Matches the blog index page design system
   =========================================== */

/* Hero Header */
.blog-post-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1a365d 50%, #0d4a6e 100%);
  padding: 60px 0 50px;
  margin-bottom: 0;
}

.blog-post-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-post-hero .blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.blog-post-hero .blog-back-link:hover {
  color: #fff;
}

.blog-post-hero .blog-back-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.blog-post-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.blog-post-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-category svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.blog-post-date,
.blog-post-reading-time {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-post-date svg,
.blog-post-reading-time svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.7;
}

.blog-post-hero h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  font-family: 'Poppins', sans-serif;
}

.blog-post-excerpt {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}

/* Main Layout */
.blog-post-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 48px 0 80px;
}

@media (min-width: 992px) {
  .blog-post-layout {
    grid-template-columns: 1fr 300px;
  }
}

/* Article Content */
.blog-post-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .blog-post-content {
    padding: 24px;
    margin-top: -24px;
    border-radius: 12px;
  }
}

.blog-article-content {
  font-family: 'Poppins', sans-serif;
  color: #1a1a2e;
  line-height: 1.8;
}

.blog-article-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0a2540;
  margin: 48px 0 20px 0;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.blog-article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.blog-article-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0a2540;
  margin: 32px 0 16px 0;
}

.blog-article-content p {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: #333;
}

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

.blog-article-content li {
  margin-bottom: 12px;
  color: #333;
}

.blog-article-content strong {
  color: #0a2540;
  font-weight: 600;
}

.blog-article-content a {
  color: #4f46e5;
  text-decoration: underline;
  text-decoration-color: rgba(79, 70, 229, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.blog-article-content a:hover {
  text-decoration-color: #667eea;
}

/* Highlight Boxes */
.blog-highlight-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left: 4px solid #22c55e;
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}

.blog-highlight-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #166534;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-highlight-box h3::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322c55e'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center;
}

.blog-highlight-box p {
  margin: 0;
  font-size: 15px;
  color: #166534;
}

.blog-highlight-box ul {
  margin: 12px 0 0 0;
  padding-left: 20px;
}

.blog-highlight-box li {
  color: #166534;
  margin-bottom: 8px;
}

/* Warning Box */
.blog-warning-box {
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
  border-left: 4px solid #ef4444;
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}

.blog-warning-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #991b1b;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-warning-box h3::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E") no-repeat center;
}

.blog-warning-box p {
  margin: 0;
  font-size: 15px;
  color: #991b1b;
}

.blog-warning-box ul {
  margin: 12px 0 0 0;
  padding-left: 20px;
}

.blog-warning-box li {
  color: #991b1b;
  margin-bottom: 8px;
}

/* Info Box */
.blog-info-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left: 4px solid #3b82f6;
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}

.blog-info-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-info-box h3::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233b82f6'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E") no-repeat center;
}

.blog-info-box p {
  margin: 0;
  font-size: 15px;
  color: #1e40af;
}

/* CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin: 48px 0;
}

.blog-cta-box h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.blog-cta-box p {
  color: rgba(255,255,255,0.9);
  margin: 0 0 24px 0;
  font-size: 16px;
}

.blog-cta-btn {
  display: inline-block;
  background: #fff;
  color: #4f46e5;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 8px 8px;
}

.blog-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.blog-cta-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.blog-cta-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* Comparison Table */
.blog-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.blog-comparison-table th,
.blog-comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.blog-comparison-table th {
  background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
  color: #fff;
  font-weight: 600;
}

.blog-comparison-table tr:last-child td {
  border-bottom: none;
}

.blog-comparison-table tr:nth-child(even) {
  background: #f9fafb;
}

.blog-comparison-table tr:hover {
  background: #f3f4f6;
}

.blog-comparison-table .feature-name {
  font-weight: 600;
  color: #0a2540;
}

.blog-pro {
  color: #15803d;
  font-weight: 500;
}

.blog-con {
  color: #b91c1c;
  font-weight: 500;
}

/* Step List */
.blog-step-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
  margin: 32px 0;
}

.blog-step-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 56px;
  margin-bottom: 28px;
}

.blog-step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Tags Section */
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.blog-post-tags-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.blog-tag {
  display: inline-block;
  background: #f5f7fa;
  border: 1px solid #e7edef;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-tag:hover {
  background: #667eea;
  border-color: #667eea;
  color: #fff;
}

/* Sidebar */
.blog-post-sidebar {
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .blog-post-sidebar {
    margin-top: 0;
  }
}

.blog-sidebar-widget {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px;
  margin-bottom: 24px;
}

.blog-sidebar-widget:last-child {
  margin-bottom: 0;
}

.blog-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #140F3B;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #667eea;
}

/* Author Widget */
.blog-author-widget {
  text-align: center;
}

.blog-author-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-author-avatar svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.blog-author-name {
  font-size: 16px;
  font-weight: 600;
  color: #140F3B;
  margin: 0 0 4px;
}

.blog-author-role {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Related Posts */
.blog-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-related-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-related-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-related-item a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  transition: color 0.2s ease;
}

.blog-related-item a:hover {
  color: #667eea;
}

.blog-related-date {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-related-date svg {
  width: 12px;
  height: 12px;
  fill: #aaa;
}

/* Sidebar Tags */
.blog-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar-tags li {
  margin: 0;
}

.blog-sidebar-tags a {
  display: inline-block;
  padding: 5px 12px;
  background: #f5f7fa;
  border: 1px solid #e7edef;
  border-radius: 16px;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-sidebar-tags a:hover {
  background: #667eea;
  border-color: #667eea;
  color: #fff;
}

/* CTA Widget */
.blog-sidebar-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #fff;
}

.blog-sidebar-cta .blog-sidebar-title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.3);
}

.blog-sidebar-cta p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  opacity: 0.95;
}

.blog-sidebar-cta-btn {
  display: inline-block;
  background: #fff;
  color: #4f46e5;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-sidebar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Share Buttons */
.blog-share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.blog-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.blog-share-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

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

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

.blog-share-btn.email {
  background: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-post-hero {
    padding: 40px 0 30px;
  }

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

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

  .blog-post-hero-meta {
    gap: 12px;
  }

  .blog-cta-box {
    padding: 28px 20px;
  }

  .blog-cta-btn {
    display: block;
    margin: 0 0 12px;
  }

  .blog-cta-btn:last-child {
    margin-bottom: 0;
  }
}

/* ===========================================
   Enhanced Blog Post Features
   =========================================== */

/* 1. Sticky Sidebar */
@media (min-width: 992px) {
  .blog-post-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
}

/* 2. Responsive Table Wrapper */
.blog-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0;
}

.blog-table-responsive .blog-comparison-table {
  min-width: 540px;
  margin: 0;
  box-shadow: none;
}

/* 3. Table of Contents */
.blog-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 0 0 32px;
}

.blog-toc-title {
  font-size: 16px;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-toc-title::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23667eea'%3E%3Cpath d='M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
}

.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.blog-toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 8px;
}

.blog-toc-list li:last-child {
  margin-bottom: 0;
}

.blog-toc-list a {
  color: #4f46e5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.blog-toc-list a::before {
  content: counter(toc-counter) ".";
  color: #667eea;
  font-weight: 600;
  flex-shrink: 0;
}

.blog-toc-list a:hover {
  color: #764ba2;
}

/* 4. Reading Progress Bar */
.blog-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  z-index: 1001;
  transition: none;
}

/* 5. Back-to-Top Button */
.blog-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  z-index: 999;
}

.blog-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.blog-back-to-top:hover {
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.5);
}

.blog-back-to-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* 6. FAQ Accordion */
.blog-faq-section {
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.blog-faq-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 24px;
  border-top: none;
  padding-top: 0;
}

.blog-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.blog-faq-item:last-child {
  margin-bottom: 0;
}

.blog-faq-question {
  width: 100%;
  background: #f8fafc;
  border: none;
  padding: 18px 48px 18px 20px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a2540;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}

.blog-faq-question:hover {
  background: #f1f5f9;
}

.blog-faq-question::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #667eea;
  border-bottom: 2px solid #667eea;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.3s ease;
}

.blog-faq-item.open .blog-faq-question::after {
  transform: translateY(-30%) rotate(-135deg);
}

.blog-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.blog-faq-item.open .blog-faq-answer {
  max-height: 500px;
}

.blog-faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* 7. Hero Illustration */
.blog-post-hero-illustration {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-hero-illustration svg {
  width: 100%;
  height: auto;
  max-height: 200px;
}

@media (max-width: 768px) {
  .blog-post-hero-illustration {
    max-width: 400px;
    margin-top: 24px;
  }

  .blog-post-hero-illustration svg {
    max-height: 140px;
  }
}

/* 8. Related Article Thumbnails */
.blog-related-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.blog-related-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-related-thumb svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.blog-related-thumb-security {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-related-thumb-auth {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.blog-related-thumb-privacy {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.blog-related-info {
  flex: 1;
  min-width: 0;
}

/* 9. Author Avatar Letters */
.blog-author-avatar-letters {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}

/* 10. Print Styles */
@media print {
  .blog-post-sidebar,
  .theme-header,
  [data-zs-mobile-headerstyle],
  .theme-footer-area,
  .blog-post-hero,
  .blog-cta-box,
  .blog-progress-bar,
  .blog-back-to-top,
  .blog-share-buttons,
  .blog-toc,
  .blog-sidebar-cta,
  .blog-back-link {
    display: none !important;
  }

  .blog-post-content {
    box-shadow: none;
    margin-top: 0;
    padding: 0;
  }

  .blog-post-layout {
    display: block;
    padding: 20px 0;
  }

  .blog-article-content h1 {
    color: #000;
    font-size: 28px;
  }

  .blog-article-content a[href]::after {
    content: " (" attr(href) ")";
    font-size: 12px;
    color: #666;
  }

  .blog-faq-item.open .blog-faq-answer,
  .blog-faq-answer {
    max-height: none !important;
    overflow: visible;
  }
}

/* 11. Dark Mode */
@media (prefers-color-scheme: dark) {
  body {
    background: #0f172a;
  }

  .blog-post-content {
    background: #1e293b;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }

  .blog-article-content {
    color: #e2e8f0;
  }

  .blog-article-content p,
  .blog-article-content li {
    color: #cbd5e1;
  }

  .blog-article-content h2,
  .blog-article-content h3 {
    color: #f1f5f9;
  }

  .blog-article-content h2 {
    border-top-color: #334155;
  }

  .blog-article-content strong {
    color: #f1f5f9;
  }

  .blog-article-content a {
    color: #818cf8;
  }

  .blog-article-content a:hover {
    border-bottom-color: #818cf8;
  }

  /* Sidebar widgets */
  .blog-sidebar-widget {
    background: #1e293b;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }

  .blog-sidebar-title {
    color: #f1f5f9;
  }

  .blog-author-name {
    color: #f1f5f9;
  }

  .blog-author-role {
    color: #94a3b8;
  }

  .blog-related-item {
    border-bottom-color: #334155;
  }

  .blog-related-item a {
    color: #e2e8f0;
  }

  .blog-related-item a:hover {
    color: #818cf8;
  }

  .blog-related-date {
    color: #94a3b8;
  }

  .blog-related-date svg {
    fill: #64748b;
  }

  .blog-sidebar-tags a {
    background: #334155;
    border-color: #475569;
    color: #cbd5e1;
  }

  .blog-sidebar-tags a:hover {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
  }

  /* Callout boxes - dark variants */
  .blog-highlight-box {
    background: linear-gradient(135deg, #052e16 0%, #064e3b 100%);
    border-left-color: #22c55e;
  }

  .blog-highlight-box h3,
  .blog-highlight-box p,
  .blog-highlight-box li {
    color: #bbf7d0;
  }

  .blog-warning-box {
    background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 100%);
    border-left-color: #ef4444;
  }

  .blog-warning-box h3,
  .blog-warning-box p,
  .blog-warning-box li {
    color: #fecaca;
  }

  .blog-info-box {
    background: linear-gradient(135deg, #172554 0%, #1e3a5f 100%);
    border-left-color: #3b82f6;
  }

  .blog-info-box h3,
  .blog-info-box p {
    color: #bfdbfe;
  }

  /* Table */
  .blog-comparison-table td {
    border-bottom-color: #334155;
  }

  .blog-comparison-table tr:nth-child(even) {
    background: #1e293b;
  }

  .blog-comparison-table tr:hover {
    background: #334155;
  }

  .blog-comparison-table .feature-name {
    color: #f1f5f9;
  }

  /* Tags */
  .blog-tag {
    background: #334155;
    border-color: #475569;
    color: #cbd5e1;
  }

  .blog-tag:hover {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
  }

  .blog-post-tags {
    border-top-color: #334155;
  }

  .blog-post-tags-label {
    color: #94a3b8;
  }

  /* TOC */
  .blog-toc {
    background: #1e293b;
    border-color: #334155;
  }

  .blog-toc-title {
    color: #f1f5f9;
  }

  .blog-toc-list a {
    color: #818cf8;
  }

  .blog-toc-list a:hover {
    color: #a5b4fc;
  }

  /* FAQ */
  .blog-faq-item {
    border-color: #334155;
  }

  .blog-faq-question {
    background: #1e293b;
    color: #f1f5f9;
  }

  .blog-faq-question:hover {
    background: #334155;
  }

  .blog-faq-answer-inner {
    color: #cbd5e1;
  }

  .blog-faq-section {
    border-top-color: #334155;
  }

  .blog-faq-section h2 {
    color: #f1f5f9;
  }
}
