/* Section À la Une - Actualités */
.actus-une {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
}

.news-article.vedette {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  gap: 2rem;
}

.vedette-img {
  flex: 0 0 66%;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  min-width: 0;
  min-height: 0;
  height: 350px;
  max-width: 700px;
}

.vedette-texte {
  flex: 1 1 34%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-width: 0;
}

.vedette-texte h1 {
  font-size: 2rem;
  font-weight: bold;
}

.actus-ligne {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
}

.actus-ligne .news-article {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  box-shadow: none;
  border: none;
  max-width: 350px;
}

.ligne-img {
  width: 100%;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  min-height: 0;
}

.ligne-texte {
  text-align: center;
  margin-top: 1rem;
}

.ligne-texte h2 {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 991px) {
  .news-article.vedette {
    flex-direction: column;
    gap: 1.5rem;
  }
  .vedette-img {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }
  .actus-ligne {
    flex-direction: column;
    gap: 2rem;
  }
  .actus-ligne .news-article {
    max-width: 100%;
  }
}

.gradient-deep-blue {
  background: linear-gradient(134deg,rgba(56, 73, 80, 1) 0%, rgba(40, 48, 70, 1) 30%, rgba(40, 48, 70, 1) 50%, #27345a 75%, #27345a 100%)
}

@media (min-width: 768px) {
  .bg-md-blue-neurosciences {
    background-color: #27345A;
  }
}