.page-actualites .visionneuse {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;
  overflow: hidden;
}

.page-actualites .slide {
text-align: left; /* Aligne tout le contenu à gauche */ 
  padding: 10px;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.page-actualites .slide.active {
  opacity: 1;
  z-index: 1;
}

.page-actualites .slide img {
  display: block;
  margin: 0 auto;
  max-height: 80vh;
  max-width: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.page-actualites .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #444;
  background-color: rgba(255,255,255,0.7);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
 z-index: 10001;
}

.page-actualites .arrow.left {
  left: 20px;
}

.page-actualites .arrow.right {
  right: 20px;
}

.page-actualites .btn-fichier {
  position: absolute;
  top: 20px;
  right: 30px;
  background: #d40000;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}
.modal-supplementaire {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  width: 95%;
  height: 90%;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.titre-avec-puce {
  display: inline-flex;   /* flex horizontal, mais dans ligne centrée */
  align-items: center;
  justify-content: flex-start;
}

.titre-avec-puce img {
  width: 20px;
  height: auto;
  margin-right: 6px; /* colle le titre à la puce */
}

.titre-news {
  margin: 0;
  font-size: 1.2em;
}

.date-news {
  margin: 5px 0 10px 0;
  font-size: 0.9em;
  color: #555;
}