.actualites-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  margin-top: 1rem;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}

.actualites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.actualite-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.actualite-card:hover {
  transform: translateY(-5px);
}

.actualite-image {
  width: 100%;
  height: auto;
  max-height: 438px;
  object-fit: contain;
  background-color: #f8f8f8;
}

.actualite-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.actualite-title {
  color: #4a276f;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.actualite-description {
  color: #221335;
  font-size: 1rem;
  line-height: 1.5;
}

.actualite-link {
  display: inline-block;
  margin-top: 1rem;
  color: #008a7d;
  text-decoration: none;
  font-weight: 500;
}

.actualite-link:hover {
  color: #bcff6a;
}

.section-title {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  background-color: #008a7d;
  padding: 1rem 2rem;
  border-radius: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #bcff6a;
  margin: 0.5rem auto;
}
