.actus-list {
  padding: 20px 10px;
  background-color: #e6e6e6;
}

.actus-list .container {
  margin: 0 auto;
  padding: 0 20px;
}

actuhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

actuhead h2 {
  color: #379cd0;
  font-size: 1.8rem;
}

actuhead a {
  text-decoration: none;
  color: white;
  background-color: #379cd0;
  padding: 8px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

actuhead a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.actus-container {
  list-style: none;
  padding: 0px;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.actu_item a {
  display: flex;
  flex-direction: column;
  background: #f4f9fc;
  border-radius: 20px;
  padding: 15px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.actu_item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.actu_item img {
  width: 100%;
  height: 160px;
  border-radius: 20px;
  display: block;
}

.label {
  display: inline-block;
  flex-direction: row;
  background: #379cd0;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  margin: 10px auto 0 10px;
}

.actu_item p {
  padding: 10px 15px 15px 15px;
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}
