
    
    .hover-lift {
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .hover-lift:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -10px rgba(30, 64, 175, 0.15);
    }
    
    .card {
      border-radius: 1.25rem;
      background-color: white;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(226, 232, 240, 0.6);
      overflow: hidden;
    }
    
    .card:hover {
      border-color: rgba(30, 64, 175, 0.08);
    }
    
    .badge {
      display: inline-flex;
      align-items: center;
      padding: 0.35rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 0.5rem;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }
    
    .badge-primary {
      background-color: rgba(30, 64, 175, 0.08);
      color: var(--primary);
    }
    
    .badge-secondary {
      background-color: rgba(37, 99, 235, 0.08);
      color: var(--secondary);
    }
    
    .badge-accent {
      background-color: rgba(245, 158, 11, 0.08);
      color: var(--accent);
    }
    
    .badge-success {
      background-color: rgba(16, 185, 129, 0.08);
      color: var(--success);
    }
    
    .badge-error {
      background-color: rgba(239, 68, 68, 0.08);
      color: var(--error);
    }
    
    .fade-in {
      opacity: 0;
      animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .fade-in-up {
      opacity: 0;
      transform: translateY(25px);
      animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }
    .delay-500 { animation-delay: 0.5s; }
    
    .hero-background {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      overflow: hidden;
    }
    
    .hero-shape {
      position: absolute;
      background: linear-gradient(135deg, var(--primary-light), var(--secondary));
      opacity: 0.04;
      border-radius: 50%;
    }
    
    .hero-shape-1 {
      width: 600px;
      height: 600px;
      top: -250px;
      left: -150px;
      transform: rotate(45deg);
    }
    
    .hero-shape-2 {
      width: 500px;
      height: 500px;
      bottom: -200px;
      right: -150px;
      transform: rotate(60deg);
    }
    
    .search-container {
      position: relative;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .search-input {
      width: 100%;
      padding: 0.75rem 1rem 0.75rem 3rem;
      border: 1px solid rgba(226, 232, 240, 0.7);
      border-radius: 9999px;
      background: white;
      color: var(--text-primary);
      font-size: 0.938rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    }
    
    .search-input:focus {
      outline: none;
      border-color: var(--primary-light);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    }
    
    .search-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-hint);
      pointer-events: none;
      transition: color 0.3s ease;
    }
    
    .search-container:focus-within .search-icon {
      color: var(--primary);
    }
    
    /* Styles spécifiques pour le blog */
    .blog-post-card {
      transition: all 0.3s ease;
      border-radius: 1rem;
      overflow: hidden;
      background: white;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .blog-post-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
    .blog-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      color: var(--text-secondary);
    }
    
    .blog-category {
      background: var(--primary);
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .blog-tag {
      background: rgba(59, 130, 246, 0.1);
      color: var(--primary);
      padding: 0.25rem 0.5rem;
      border-radius: 0.375rem;
      font-size: 0.75rem;
      font-weight: 500;
    }
    
    .reading-time {
      color: var(--text-hint);
      font-size: 0.875rem;
    }
    
    .sidebar {
      position: sticky;
      top: 120px;
    }
    
    .toc {
      background: white;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .toc ul {
      list-style: none;
      padding-left: 0;
    }
    
    .toc ul ul {
      padding-left: 1rem;
      margin-top: 0.5rem;
    }
    
    .toc li {
      margin: 0.5rem 0;
    }
    
    .toc a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.875rem;
      line-height: 1.5;
      display: block;
      padding: 0.25rem 0;
      border-left: 2px solid transparent;
      padding-left: 0.75rem;
      transition: all 0.2s ease;
    }
    
    .toc a:hover,
    .toc a.active {
      color: var(--primary);
      border-left-color: var(--primary);
      background-color: rgba(59, 130, 246, 0.05);
    }
    
    .featured-articles {
      background: white;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .breadcrumbs {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }
    
    .breadcrumbs a {
      color: var(--primary);
      text-decoration: none;
    }
    
    .breadcrumbs a:hover {
      text-decoration: underline;
    }
    

    
    /* Custom Scrollbar élégant */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f8fafc;
    }
    
    ::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: #94a3b8;
    }
    
    /* Media Queries */
    @media (max-width: 768px) {
      .hide-mobile {
        display: none !important;
      }
      
      .text-center-mobile {
        text-align: center !important;
      }
      
      .pb-mobile-8 {
        padding-bottom: 2rem !important;
      }
    }
    
    /* Optimisation des focus pour accessibilité */
    ::selection {
      background-color: rgba(30, 64, 175, 0.2);
      color: var(--primary-dark);
    }
    
    *:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }


  div.prose br{
    display: none;
  }


  button#load-more-posts.hidden{
    display: none!important;
  }


/* =========================================
   STYLES CONTENU ARTICLES (.postsContent)
   ========================================= */

/* Typographie générale */
.postsContent {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #334155;
}

.postsContent > *:first-child {
  margin-top: 0;
}

/* Paragraphes */
.postsContent p {
  margin-bottom: 1.25rem;
}

/* Titres */
.postsContent h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
  line-height: 1.3;
}

.postsContent h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1e40af;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.postsContent h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border-left: 4px solid var(--primary);
  border-radius: 0 0.5rem 0.5rem 0;
  line-height: 1.4;
}

.postsContent h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Liens */
.postsContent a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.postsContent a:hover {
  color: var(--primary-dark);
}

/* Listes */
.postsContent ul,
.postsContent ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.postsContent ul {
  list-style-type: disc;
}

.postsContent ol {
  list-style-type: decimal;
}

.postsContent li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.postsContent li strong {
  color: #1e293b;
}

/* Listes dans les sommaires */
.postsContent > ul:first-of-type a,
.postsContent h3 + ul a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}

.postsContent > ul:first-of-type a:hover,
.postsContent h3 + ul a:hover {
  text-decoration: underline;
}

/* Tableaux */
.postsContent table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.postsContent thead {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: white;
}

.postsContent thead th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.postsContent tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.15s ease;
}

.postsContent tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.postsContent tbody tr:hover {
  background-color: #eff6ff;
}

.postsContent tbody td {
  padding: 0.75rem 1rem;
  vertical-align: top;
}

.postsContent tbody td:first-child {
  font-weight: 500;
  color: #1e293b;
}

/* Code inline */
.postsContent code {
  background: #f1f5f9;
  color: #1e40af;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
  font-family: 'Consolas', 'Monaco', monospace;
}

/* Séparateurs */
.postsContent hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 2rem 0;
}

/* Images */
.postsContent img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Blocs de prix / CTA */
.postsContent h4 + p strong:first-child {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Boutons CTA dans les articles */
.postsContent h3:last-of-type + p a,
.postsContent p > a:only-child {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  text-decoration: none !important;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
  margin: 0.25rem 0.25rem;
}

.postsContent h3:last-of-type + p a:hover,
.postsContent p > a:only-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

/* FAQ - style les h4 comme des questions cliquables */
.postsContent h2 + h4,
.postsContent h4 + p + h4 {
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  color: #1e293b;
  cursor: default;
}

/* Sommaire */
.postsContent > h3:first-of-type {
  font-size: 1.25rem;
  color: #1e293b;
  margin-top: 1.5rem;
  background: #f8fafc;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.postsContent > h3:first-of-type + ul {
  background: #f8fafc;
  padding: 1rem 1rem 1rem 2.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  list-style-type: none;
  counter-reset: none;
}

.postsContent > h3:first-of-type + ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.postsContent > h3:first-of-type + ul li:last-child {
  border-bottom: none;
}

/* Style spécial pour les blocs "À lire aussi" */
.postsContent h3:has(+ ul:last-of-type) {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
  font-size: 1.125rem;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .postsContent {
    font-size: 1rem;
  }

  .postsContent h2 {
    font-size: 1.375rem;
  }

  .postsContent h3 {
    font-size: 1.125rem;
  }

  .postsContent h4 {
    font-size: 1rem;
    padding: 0.625rem 0.75rem;
  }

  .postsContent table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.8125rem;
  }

  .postsContent thead th,
  .postsContent tbody td {
    padding: 0.5rem 0.625rem;
    white-space: nowrap;
  }

  .postsContent thead th:first-child,
  .postsContent tbody td:first-child {
    white-space: normal;
    min-width: 120px;
  }
}

/* Blogsharearea fix */
.blogsharearea a {
  text-decoration: none;
}