/* ===== Blog Listing Page ===== */
.blog-banner {
  background: linear-gradient(135deg, #000950 0%, #425CA9 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.blog-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 187, 225, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.blog-banner .container {
  position: relative;
  z-index: 2;
}

.blog-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-banner p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.blog-listing {
  padding: 80px 0 100px;
  background: #f4f7fb;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 9, 80, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(66, 92, 169, 0.05);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 9, 80, 0.12);
  border-color: rgba(47, 187, 225, 0.3);
}

.blog-card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: #425CA9;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-card-body {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #000950;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: #000950;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: #2FBBE1;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-date i {
  color: #2FBBE1;
}

.blog-card-readmore {
  color: #425CA9;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.blog-card-readmore::after {
  content: '→';
  transition: transform 0.3s;
}

.blog-card-readmore:hover {
  color: #2FBBE1;
}

.blog-card-readmore:hover::after {
  transform: translateX(5px);
}

/* ===== Blog Post Page ===== */
.blog-post-banner {
  background: linear-gradient(135deg, #000950 0%, #425CA9 100%);
  padding: 120px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.blog-post-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/google/gradient-bg.png') repeat;
  opacity: 0.2;
  z-index: 1;
}

.blog-post-banner .container {
  position: relative;
  z-index: 2;
}

.blog-post-banner .breadcrumb-blog {
  font-size: 0.95rem;
  margin-bottom: 25px;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.blog-post-banner .breadcrumb-blog a {
  color: #2FBBE1;
  text-decoration: none;
  font-weight: 600;
}

.blog-post-banner .breadcrumb-blog a:hover {
  text-decoration: underline;
  color: #fff;
}

.blog-post-banner .blog-category-badge {
  display: inline-block;
  background: #25C18B;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(37, 193, 139, 0.3);
}

.blog-post-banner h1 {
  font-size: 2.8rem;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.25;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-post-banner .post-meta {
  font-size: 1rem;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blog-post-banner .post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-post-banner .post-meta i {
  color: #2FBBE1;
}

.blog-post-hero-img-container {
  margin: -60px auto 40px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.blog-post-hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 9, 80, 0.15);
  display: block;
  border: 5px solid #fff;
}

.blog-post-content {
  padding: 50px 0 60px;
}

.blog-post-content .post-body {
  margin: 0 auto;
}

.blog-post-content .post-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000950;
  margin: 40px 0 15px;
  line-height: 1.3;
}

.blog-post-content .post-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #01052a;
  margin: 30px 0 12px;
}

.blog-post-content .post-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.blog-post-content .post-body ul,
.blog-post-content .post-body ol {
  margin: 15px 0 20px 20px;
}

.blog-post-content .post-body li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.blog-post-content .post-body a {
  color: #425CA9;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.blog-post-content .post-body a:hover {
  border-bottom-color: #425CA9;
}

.blog-post-content .post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.blog-post-content .post-body blockquote {
  border-left: 4px solid #425CA9;
  padding: 15px 20px;
  background: #f0f3fa;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
  font-style: italic;
  color: #444;
}

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, #425CA9, #2FBBE1);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin: 40px 0;
}

.blog-cta-box h3 {
  color: #fff !important;
  font-size: 1.5rem;
  margin: 0 0 12px !important;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 20px !important;
  font-size: 1rem !important;
}

.blog-cta-btn {
  display: inline-block;
  background: #fff;
  color: #425CA9;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-cta-btn:hover {
  background: #000950;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Blog FAQ Section */
.blog-faq {

  margin-left: auto;
  margin-right: auto;
}

.blog-faq h2 {
  text-align: center;
  margin-bottom: 30px !important;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8edf8;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #000950;
  position: relative;
  font-size: 1rem;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #425CA9;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

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

/* Blog Sidebar CTA */
.blog-sidebar-cta {
  background: #000950;
  border-radius: 14px;
  padding: 30px;
  color: #fff;
  text-align: center;
  position: sticky;
  top: 100px;
}

.blog-sidebar-cta h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-sidebar-cta p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

/* Related Posts */
.related-posts {
  padding: 60px 0;
  background: #f8f9fa;
}

.related-posts h2 {
  text-align: center;
  color: #000950;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Table of Contents */
.blog-toc {
  background: #f0f3fa;
  border-radius: 10px;
  padding: 24px;
  margin: 0 0 35px;
}

.blog-toc h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #000950;
  margin-bottom: 12px;
}

.blog-toc ul {
  list-style: none;
  margin: 0 !important;
  padding: 0;
}

.blog-toc ul li {
  margin-bottom: 8px !important;
  font-size: 0.9rem !important;
}

.blog-toc ul li a {
  color: #425CA9 !important;
  font-weight: 500 !important;
  border-bottom: none !important;
}

.blog-toc ul li a:hover {
  color: #2FBBE1 !important;
}

/* Responsive */
@media (max-width: 767px) {
  .blog-banner {
    padding: 80px 0 40px;
  }

  .blog-banner h1 {
    font-size: 1.8rem;
  }

  .blog-post-banner h1 {
    font-size: 1.6rem;
  }

  .blog-card-img {
    height: 200px;
  }

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

  .blog-cta-box h3 {
    font-size: 1.2rem;
  }

  .blog-post-content .post-body h2 {
    font-size: 1.35rem;
  }

  .blog-listing {
    padding: 40px 0 50px;
  }
}

/* --- Bulletproof Header Overrides for Blog --- */
.blog-banner .header,
.blog-post-banner .header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent !important;
  padding: 15px 0 !important;
}

.blog-banner .header .menu-main>li>a,
.blog-post-banner .header .menu-main>li>a,
.blog-banner .header .menu-main>li>a i,
.blog-post-banner .header .menu-main>li>a i {
  color: #fff !important;
}

.blog-banner .header .menu-main>li>a:hover,
.blog-post-banner .header .menu-main>li>a:hover {
  color: #2FBBE1 !important;
}

.blog-banner .header .logo a img,
.blog-post-banner .header .logo a img {
  filter: brightness(0) invert(1) !important;
}

/* Ensure the banner content starts below the absolute header */
.blog-banner,
.blog-post-banner {
  padding-top: 150px !important;
}

/* ========================================= */
/* PREMIUM BLOG DETAILS AESTHETICS OVERRIDES */
/* ========================================= */

.blog-post-content .post-body p {
  font-size: 1.1rem !important;
  line-height: 1.9 !important;
  color: #444 !important;
  margin-bottom: 25px !important;
}

.blog-post-content .post-body h2 {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #000950 !important;
  margin: 55px 0 25px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid rgba(47, 187, 225, 0.2) !important;
  position: relative;
}

.blog-post-content .post-body h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #2FBBE1;
}

.blog-post-content .post-body h3 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #425CA9 !important;
  margin: 45px 0 20px !important;
}

/* Enhanced Pointers for Unordered Lists */
.blog-post-content .post-body ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 25px 0 !important;
}

.blog-post-content .post-body ul li {
  position: relative;
  padding-left: 40px !important;
  margin-bottom: 18px !important;
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
  color: #444 !important;
}

.blog-post-content .post-body ul:not(.blog-toc ul) li::before {
  content: '\f058';
  /* Check Circle */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute;
  left: 0;
  top: 3px;
  color: #2FBBE1;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.blog-post-content .post-body ul:not(.blog-toc ul) li:hover::before {
  transform: scale(1.15);
  color: #425CA9;
}

/* Enhanced Ordered Lists */
.blog-post-content .post-body ol {
  counter-reset: custom-counter;
  list-style: none !important;
  padding-left: 0 !important;
  margin: 25px 0 !important;
}

.blog-post-content .post-body ol li {
  position: relative;
  padding-left: 50px !important;
  margin-bottom: 18px !important;
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
  color: #444 !important;
  counter-increment: custom-counter;
}

.blog-post-content .post-body ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #000950, #425CA9);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 9, 80, 0.2);
  transition: transform 0.3s ease;
}

.blog-post-content .post-body ol li:hover::before {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #425CA9, #2FBBE1);
}

/* Premium Images */
.blog-post-content .post-body img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  margin: 40px 0 !important;
  box-shadow: 0 15px 35px rgba(0, 9, 80, 0.08) !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.blog-post-content .post-body img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 9, 80, 0.15) !important;
}

/* Elegant Blockquotes */
.blog-post-content .post-body blockquote {
  position: relative;
  border-left: none !important;
  padding: 35px 45px 35px 65px !important;
  background: linear-gradient(135deg, rgba(66, 92, 169, 0.04), rgba(47, 187, 225, 0.06)) !important;
  border-radius: 20px !important;
  margin: 50px 0 !important;
  font-style: italic !important;
  font-size: 1.3rem !important;
  color: #000950 !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  box-shadow: inset 0 0 0 1px rgba(66, 92, 169, 0.1) !important;
}

.blog-post-content .post-body blockquote::before {
  content: '\f10d';
  /* Quote Left */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute;
  top: 25px;
  left: 20px;
  font-size: 2.5rem;
  color: rgba(47, 187, 225, 0.3);
}

/* Table of Contents Exceptions so we don't break TOC */
.blog-post-content .post-body .blog-toc ul li {
  padding-left: 0 !important;
  margin-bottom: 8px !important;
}
/* ========================================= */
/* POINTER-WISE LIST BOXES UPGRADE           */
/* ========================================= */

/* Unordered Lists (Icon Boxes) */
.blog-post-content .post-body ul:not(.blog-toc ul) {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  background: transparent !important;
  margin: 35px 0 !important;
}

.blog-post-content .post-body ul:not(.blog-toc ul) li {
  padding: 25px 25px 25px 85px !important;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 5px 20px rgba(0, 9, 80, 0.04) !important;
  border: 1px solid rgba(47, 187, 225, 0.1) !important;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
  margin-bottom: 0 !important;
}

.blog-post-content .post-body ul:not(.blog-toc ul) li:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(0, 9, 80, 0.1) !important;
  border-color: rgba(47, 187, 225, 0.4) !important;
}

.blog-post-content .post-body ul:not(.blog-toc ul) li::before {
  content: '\f058' !important; /* Check Circle */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute !important;
  left: 20px !important;
  top: 25px !important;
  color: #2FBBE1 !important;
  font-size: 1.6rem !important;
  background: rgba(47, 187, 225, 0.1) !important;
  width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease !important;
}

.blog-post-content .post-body ul:not(.blog-toc ul) li:hover::before {
  transform: scale(1.1) !important;
  background: rgba(66, 92, 169, 0.1) !important;
  color: #425CA9 !important;
}

.blog-post-content .post-body ul:not(.blog-toc ul) li strong {
  display: block !important;
  font-size: 1.25rem !important;
  color: #000950 !important;
  margin-bottom: 8px !important;
  font-weight: 800 !important;
}

/* Ordered Lists (Numbered Boxes) */
.blog-post-content .post-body ol {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  margin: 35px 0 !important;
}

.blog-post-content .post-body ol li {
  padding: 25px 25px 25px 85px !important;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 5px 20px rgba(0, 9, 80, 0.04) !important;
  border: 1px solid rgba(47, 187, 225, 0.1) !important;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
  margin-bottom: 0 !important;
}

.blog-post-content .post-body ol li:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(0, 9, 80, 0.1) !important;
  border-color: rgba(47, 187, 225, 0.4) !important;
}

.blog-post-content .post-body ol li::before {
  position: absolute !important;
  left: 20px !important;
  top: 25px !important;
  width: 45px !important;
  height: 45px !important;
  background: linear-gradient(135deg, #000950, #425CA9) !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(0, 9, 80, 0.2) !important;
  line-height: normal !important;
}

.blog-post-content .post-body ol li:hover::before {
  transform: translateY(-2px) scale(1.05) !important;
  background: linear-gradient(135deg, #425CA9, #2FBBE1) !important;
}

.blog-post-content .post-body ol li strong {
  display: block !important;
  font-size: 1.25rem !important;
  color: #000950 !important;
  margin-bottom: 8px !important;
  font-weight: 800 !important;
}

/* ========================================= */
/* HEADING ICONS (POINTER-WISE EXPLAINS)     */
/* ========================================= */

/* Add a pointer icon to all H2 Subheadings */
.blog-post-content .post-body h2:not(#introduction):not(:first-of-type) {
  position: relative;
  padding-left: 50px !important;
}

.blog-post-content .post-body h2:not(#introduction):not(:first-of-type)::before {
  content: '\f0a4'; /* Hand Point Right */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #425CA9;
  font-size: 2rem;
  opacity: 0.8;
}

/* Add a bullet icon to all H3 Subheadings */
.blog-post-content .post-body h3 {
  position: relative;
  padding-left: 35px !important;
}

.blog-post-content .post-body h3::before {
  content: '\f138'; /* Chevron Circle Right */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2FBBE1;
  font-size: 1.4rem;
}

/* ========================================= */
/* ADDITIONAL SECTION ICONS EVERYWHERE       */
/* ========================================= */

/* FAQ Section Icon */
.blog-faq h2 {
  position: relative;
  display: inline-block;
  padding-left: 45px !important;
}
.blog-faq h2::before {
  content: '\f29c' !important; /* fa-question-circle-o */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #2FBBE1 !important;
  font-size: 2rem !important;
}

/* Related Posts Icon */
.related-posts h2 {
  position: relative;
  display: inline-block;
  padding-left: 60px !important;
}
.related-posts h2::before {
  content: '\f02d' !important; /* fa-book */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #000950 !important;
  font-size: 2.2rem !important;
}

/* Sidebar CTA Icon */
.blog-sidebar-cta h4 {
  position: relative;
  padding-left: 35px !important;
}
.blog-sidebar-cta h4::before {
  content: '\f0f3' !important; /* fa-bell */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute !important;
  left: 0 !important;
  top: 15px !important;
  color: #fff !important;
  font-size: 1.5rem !important;
}

/* Main CTA Box Icon */
.blog-cta-box h3 {
  position: relative;
  padding-left: 45px !important;
}
.blog-cta-box h3::before {
  content: '\f0e7' !important; /* fa-bolt */
  font-family: 'FontAwesome' !important;
  font-weight: normal !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #2FBBE1 !important;
  font-size: 2rem !important;
}

/* ========================================= */
/* FIX TABLE OF CONTENTS SPACING             */
/* ========================================= */

.blog-post-content .post-body .blog-toc,
.blog-post-content .post-body .table-of-contents {
  margin: 15px 0 25px !important;
  padding: 20px 25px !important;
  background: #f8f9fa !important;
  border-radius: 8px !important;
  border: 1px solid #e9ecef !important;
  display: inline-block !important; /* Makes it wrap tightly around content */
  min-width: 300px !important;
}

.blog-post-content .post-body .blog-toc h2,
.blog-post-content .post-body .table-of-contents h2,
.blog-post-content .post-body .blog-toc h4,
.blog-post-content .post-body .table-of-contents h4 {
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
  font-size: 1.25rem !important;
  border: none !important;
  color: #000950 !important;
  font-weight: 700 !important;
}

.blog-post-content .post-body .blog-toc h2::after,
.blog-post-content .post-body .table-of-contents h2::after,
.blog-post-content .post-body .blog-toc h2::before,
.blog-post-content .post-body .table-of-contents h2::before {
  display: none !important;
}

.blog-post-content .post-body .blog-toc ul,
.blog-post-content .post-body .table-of-contents ul {
  display: block !important;
  margin: 0 !important;
  padding: 0 0 0 20px !important;
  background: transparent !important;
  list-style: disc !important;
}

.blog-post-content .post-body .blog-toc ul li,
.blog-post-content .post-body .table-of-contents ul li {
  padding: 0 !important;
  margin: 0 0 6px 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
}

.blog-post-content .post-body .blog-toc ul li:hover,
.blog-post-content .post-body .table-of-contents ul li:hover {
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
}

.blog-post-content .post-body .blog-toc ul li::before,
.blog-post-content .post-body .table-of-contents ul li::before {
  display: none !important;
}

.blog-post-content .post-body .blog-toc ul li a,
.blog-post-content .post-body .table-of-contents ul li a {
  color: #425ca9 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border: none !important;
}

.blog-post-content .post-body .blog-toc ul li a:hover,
.blog-post-content .post-body .table-of-contents ul li a:hover {
  color: #2FBBE1 !important;
  text-decoration: underline !important;
}

/* ========================================= */
/* PERFECT TABLE OF CONTENTS DESIGN REPLICA  */
/* ========================================= */

.blog-post-content .post-body .blog-toc,
.blog-post-content .post-body .table-of-contents {
  margin: 40px 0 !important;
  padding: 35px 40px !important;
  background: #f4f7fb !important; /* Soft blue-grey from image */
  border-radius: 8px !important;
  border: none !important;
  display: block !important;
  width: 100% !important;
}

.blog-post-content .post-body .blog-toc h2,
.blog-post-content .post-body .table-of-contents h2,
.blog-post-content .post-body .blog-toc h4,
.blog-post-content .post-body .table-of-contents h4 {
  margin: 0 0 25px 0 !important;
  padding: 0 !important;
  font-size: 2.2rem !important;
  border: none !important;
  color: #1a1e24 !important; /* Dark grey-black from image */
  font-weight: 700 !important;
  letter-spacing: -0.5px !important;
}

.blog-post-content .post-body .blog-toc h2::after,
.blog-post-content .post-body .table-of-contents h2::after,
.blog-post-content .post-body .blog-toc h2::before,
.blog-post-content .post-body .table-of-contents h2::before {
  display: none !important;
}

.blog-post-content .post-body .blog-toc ul,
.blog-post-content .post-body .table-of-contents ul {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
}

.blog-post-content .post-body .blog-toc ul li,
.blog-post-content .post-body .table-of-contents ul li {
  padding: 0 !important;
  margin: 0 0 16px 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 1.05rem !important;
  line-height: 1.5 !important;
}

.blog-post-content .post-body .blog-toc ul li:last-child,
.blog-post-content .post-body .table-of-contents ul li:last-child {
  margin-bottom: 0 !important;
}

.blog-post-content .post-body .blog-toc ul li:hover,
.blog-post-content .post-body .table-of-contents ul li:hover {
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
}

.blog-post-content .post-body .blog-toc ul li::before,
.blog-post-content .post-body .table-of-contents ul li::before {
  display: none !important; /* Ensure NO custom pointer icons */
}

.blog-post-content .post-body .blog-toc ul li a,
.blog-post-content .post-body .table-of-contents ul li a {
  color: #425CA9 !important; /* Matching blue link from image */
  font-weight: 400 !important;
  text-decoration: none !important;
  border: none !important;
  display: inline-block !important;
}

.blog-post-content .post-body .blog-toc ul li a:hover,
.blog-post-content .post-body .table-of-contents ul li a:hover {
  text-decoration: underline !important;
  color: #2FBBE1 !important;
}
