/*** COPYRIGHT ***/

.image-with-badge {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.image-with-badge img {
  display: block;
  max-width: 100%;
  height: auto;
}

.copyright-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px; /* espace entre texte et rond */
  cursor: default;
  user-select: none;
  z-index: 5;
}

.copyright-circle {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
  color: #111;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.copyright-tooltip {
  background: #fff;
  color: #111;
  padding: 10px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  white-space: nowrap;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .16s ease, transform .16s ease;
}

/* Afficher le texte au survol / focus */
.copyright-badge:hover .copyright-tooltip,
.copyright-badge:focus-within .copyright-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Petit effet focus accessibilité */
.copyright-badge:focus {
  outline: 2px solid rgba(0,120,215,0.3);
  outline-offset: 2px;
}

/*** FIN COPYRIGHT ***/