.actu-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.actu-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.loading {
  text-align: center;
  padding: 20px;
  color: #888;
}

.actu-image {
  height: 200px;
  object-fit: cover;
}

.actu-container {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: fadeIn 0.8s ease;
}

.actu-header {
  position: relative;
}

.actu-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.actu-body {
  padding: 2rem;
}

.actu-body h2 {
  margin-bottom: 1rem;
}

.actu-content {
  margin-top: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-back {
  margin-bottom: 1.5rem;
}

.card-title {
  color: black;
}

.card-title:hover {
  color: #243a6c;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}
