#actualites {
  padding: 0px 8px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-gap: 20px;
  justify-content: center;
  justify-items: center;
  margin-bottom: 80px;
  flex: 4;

}

#actualites section {
  padding: 0px;
}

#actualites .event {
  width: 100%;
  margin-bottom: 20px;
  background-color: white;
  color: rgb(77, 80, 83);
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#actualites .event:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
  transition: transform 0.5s, box-shadow 0.5s;
}

.event a {
  color: black;
}

.event .top {
  padding: 0px;
  height: 60px;
  display: flex;
}

.event .top .title {
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  margin: auto;
  margin-top: 10px;
}

.event .event-image {
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.event .event-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.event .top-title {}

.event .bottom {}

.event .bottom .date {
  font-weight: normal;
  font-size: 0.8em;
  color: rgb(127, 127, 127);

}

.event .bottom .location {
  font-weight: normal;
  font-size: 0.9em;
  background-color: rgb(200, 245, 255);
  color: rgb(50, 50, 50);
  padding: 1px 12px;
  border-radius: 20px;
}

.event .bottom iframe {
  margin: auto;
  display: block;
}