/* Bloc réseaux sociaux + langue */
.reseaux-et-langue {
  position: absolute;
  top: 40px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.reseaux-et-langue .social-icon {
  background-color: #09365d;
  color: white;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.reseaux-et-langue .social-icon:hover {
  filter: brightness(1.2);
}

.reseaux-et-langue .lang {
  font-family: 'lato-regular';
  color: #0a3b61;
  font-size: 1em;
  text-decoration: none;
  position: static; /* annule le positionnement absolu */
}

.reseaux-et-langue .lang:hover {
  opacity: 0.8;
}

.reseaux-et-langue .lang:after {
  content: "\f078";
  font-family: "fontawesome";
  margin-left: 10px;
  font-size: 0.8em;
}
