     ::selection {
      background:  #ffebee;
      color: #d32f2f;
    }

    ::-moz-selection {
      background:  #ffebee;
      color: #d32f2f;
    }

    @keyframes pageEntrance {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .page-animate {
      animation: pageEntrance 0.8s ease-out forwards;
    }

   

    .hero-blog h1 {
      font-size: 3.5rem;
      color : white;
      font-weight: 700;
      margin-bottom: 1rem;
      font-family: 'Cormorant Garamond', serif;
    }

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

    .blog-card {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      background: white;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .blog-image {
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .blog-category {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #f42828;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 2;
    }

    .blog-content {
      padding: 1.5rem;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 10px;
      color: #666;
      font-size: 0.9rem;
    }

    .blog-meta i {
      color: #f42828;
      margin-right: 5px;
    }

    .blog-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.4;
      color: #333;
    }

    .blog-title a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-title a:hover {
      color: #f42828;
    }

    .blog-excerpt {
      color: #666;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .blog-read-more {
      color: #f42828;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: gap 0.3s ease;
    }

    .blog-read-more:hover {
      gap: 10px;
    }

    .sidebar {
      background: #f8f9fa;
      border-radius: 1rem;
      padding: 2rem;
      position: sticky;
      top: 100px;
    }

    .sidebar-title {
      color: #f42828;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      padding-bottom: 10px;
      border-bottom: 2px solid #eee;
    }

    .search-box {
      position: relative;
      margin-bottom: 2rem;
    }

    .search-box input {
      width: 100%;
      padding: 12px 20px 12px 45px;
      border: 2px solid #e9ecef;
      border-radius: 30px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .search-box input:focus {
      outline: none;
      border-color: #f42828;
      box-shadow: 0 0 0 3px rgba(244, 40, 40, 0.1);
    }

    .search-box i {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
    }

    .categories-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .categories-list li {
      margin-bottom: 10px;
    }

    .categories-list a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 15px;
      background: white;
      border-radius: 8px;
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .categories-list a:hover {
      background: #f42828;
      color: white;
      transform: translateX(5px);
    }

    .categories-list .count {
      background: #f8f9fa;
      padding: 2px 8px;
      border-radius: 10px;
      font-size: 0.8rem;
      color: #666;
    }

    .categories-list a:hover .count {
      background: rgba(255, 255, 255, 0.2);
      color: white;
    }

    .recent-posts .post-item {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee;
    }

    .recent-posts .post-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .recent-posts .post-image {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .recent-posts .post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .recent-posts .post-content h4 {
      font-size: 1rem;
      margin-bottom: 5px;
      line-height: 1.4;
    }

    .recent-posts .post-content h4 a {
      color: #333;
      text-decoration: none;
    }

    .recent-posts .post-content h4 a:hover {
      color: #f42828;
    }

    .recent-posts .post-date {
      color: #666;
      font-size: 0.85rem;
    }

    .tags-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      background: white;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid #e9ecef;
    }

    .tag:hover {
      background: #f42828;
      color: white;
      border-color: #f42828;
    }

    .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 3rem;
    }

    .page-link {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #f8f9fa;
      color: #333;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .page-link:hover,
    .page-link.active {
      background: #f42828;
      color: white;
    }

    .newsletter-box {
      background: linear-gradient(135deg, #f42828, #ff6a5b);
      color: white;
      padding: 2rem;
      border-radius: 1rem;
      margin-top: 2rem;
      text-align: center;
    }

    .newsletter-box h4 {
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    .newsletter-box p {
      opacity: 0.9;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .newsletter-box input {
      width: 100%;
      padding: 12px 20px;
      border: none;
      border-radius: 30px;
      margin-bottom: 15px;
      font-size: 1rem;
    }

    .newsletter-box button {
      width: 100%;
      padding: 12px;
      background: white;
      color: #f42828;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-box button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    
    .featured-post::before {
      content: 'À LA UNE';
      position: absolute;
      top: 20px;
      left: 20px;
      background: #f42828;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 2;
    }

    .featured-post .blog-meta {
      color: rgba(255, 255, 255, 0.8);
    }

    .featured-post .blog-title {
      font-size: 2rem;
      color: white;
      margin: 1rem 0;
    }

    .featured-post .blog-excerpt {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    @media (max-width: 768px) {
      .hero-blog {
        padding: 60px 0;
      }
      
      .hero-blog h1 {
        font-size: 2.5rem;
      }
      
      .featured-post {
        padding: 2rem;
      }
      
      .featured-post .blog-title {
        font-size: 1.5rem;
      }
      
      .sidebar {
        margin-top: 3rem;
      }
      
      .blog-image {
        height: 200px;
      }
    }

    .announcement-bar {
      width: 100%;
      height: 40px;
      background-color: #d40000;
      color: white;
      display: flex;
      align-items: center;
      overflow: hidden;
      font-weight: 500;
    }

    .announcement-text {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-text 40s linear infinite;
    }

    @keyframes scroll-text {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }