.container-actualite {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
    
  }
  
  @media (max-width: 768px) {
    .container-actualite {
      grid-template-columns: 1fr;
    }
  }
  

.main-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(236, 12, 12, 0.1);
}

.main-content h1 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #222;
 
}

.main-content .date {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.image-box {
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;

}

.image-box img {
  width: 100%;
  display: block;
 
}

.main-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.btn-lire {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-lire:hover {
  background-color: #0056b3;
}

.sidebar {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   width: 100%;
}

.sidebar h3 {
  margin-bottom: 15px;
  color: #333;
  
}

.recent-article {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  
}

.recent-article a {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}

.recent-article p {
  font-size: 13px;
  color: #777;
}

 

 .descri {
        font-size: 0.88rem;
        color: #f90505;
        margin-bottom: 12px;
        line-height: 1.4;
        
        font-size: 1rem;
      }
      
      .read-more {
        display: inline-block;
        width: 120px;
        text-align: center;
        padding: 10px 0;
        background-color: #7ea2f2;
        color: #ffffff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      }
      
      .read-more:hover {
        background-color: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
       
      }