header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(3, 12, 54, 0.7);;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ajout d'une ombre pour le contraste */
    transition: background-color 0.3s ease; /* Transition pour changement d'arrière-plan */
  }
.featured-news {
    width: 100%;
    padding: 20px;
    border-bottom: 2px solid #ccc;
}
.featured-news .footsikasso {
    display: flex;
    justify-content: space-between;
  }
  
  .featured-news .footsikasso img {
    width: calc(100% - 4px); /* Largeur des images en mode bureau */
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .featured-news .footsikasso img:hover {
    transform: scale(1.05); /* Effet de zoom au survol */
  }
  /* Media query pour écran 1024px ou moins */
@media (max-width: 1024px) {
.featured-news .footsikasso  {
    display: block;
}
}
