/* Styles pour la section des actualités */
.news-section {
  text-align: center;
  padding: 40px;
}

.news-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.news-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.news-item {
  width: 300px;
  margin: 20px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  background-color: white;
  border-radius: 8px;
}

.news-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.news-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.news-item p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  color: #fff;
  background-color: #3498db;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #2980b9;
}

.news-item .publication-date {
  font-size: 14px;
  color: #888;
  display: block;
  margin-bottom: 10px;
}
/* Ajout de styles pour les écrans plus petits (responsive) */
@media screen and (max-width: 768px) {
  .news-container {
    flex-direction: column;
    align-items: center;
  }

  .news-item {
    width: 90%;
    max-width: 300px;
  }
}
