/* Auto promo banner */
.promo-banner {
  position: relative;
  width: 100%;
  max-width: 900px; /* Ajuste selon ton design */
  height: 250px; /* Hauteur réduite */
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.726), rgba(0, 0, 0, 0.9));
}

.promo-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fdf9e0;
  z-index: 2;
  width: 80%;
}

.promo-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.promo-content.anantys h2 span {
  color: #3cdb69; /* Accent sur le titre */
}

.promo-content span {
  color: #ff8c00; /* Accent sur le titre */
}

.promo-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.anantys-button {
  background: #3cdb69;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.anantys-button:hover {
  background: #3cdb69;
  transform: scale(1.05);
}

.cta-button {
  background: #ff8c00;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: #ffa500;
  transform: scale(1.05);
}

/* Posts */
.crawler-post {
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #aaaaaa22, #2929293f);
  border-left: 4px solid #cd7f32;
  border-radius: 6px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Liens */
a {
  color: #e4a17b; /* Accentuation cuivre clair */
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #ffa951;
}

/* Images de fond */
.error-404 {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), #121212),
    url("https://colorfulminis.com/static/images/warcry-squelettes.jpeg")
      no-repeat center center/cover;
}

/* Global settings */
body {
  font-family: "Roboto", sans-serif;
  background-color: #121212;
  color: #d3d3d3;
  scroll-behavior: smooth;

  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.078), #121212),
    url("https://colorfulminis.com/static/images/warcry-ruines-1.jpeg")
      no-repeat center;
  /*	background-size: contain; /* Conserve les proportions de l'image sans l'étirer */
  background-size: cover; /* Prend toute la largeur de l'écran */

  background-attachment: fixed; /* Rend l'image statique lors du scroll */

  margin: 0;
  padding: 0;
  line-height: 1.6;
}

img.emoji {
  max-width: 16px;
  max-height: 16px;
}

.topic-body-old {
  background: transparent;
}

#main-outlet {
  background: rgba(
    18,
    18,
    18,
    0.619
  ); /* Fond légèrement transparent (noir, opacité 85%) */
  border-radius: 8px; /* Bords légèrement arrondis */
  padding: 20px;
  margin: 20px auto; /* Centrer le conteneur */
  max-width: 1200px; /* Largeur maximale pour le contenu */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Ajout d'une ombre subtile */
  backdrop-filter: blur(5px); /* Effet de flou sous le conteneur */
}

.post h1,
.post h2,
.post h3 {
  font-family: "Cinzel", "serif";
  color: rgba(205, 128, 50, 0.94);
  text-shadow: #12121260;
}

.post h1 {
  font-size: 1.6rem;
}
.post h2 {
  font-size: 1.4rem;
}
.post h3 {
  font-size: 1.2rem;
}

/* Header */
header {
  background-color: rgba(18, 18, 18, 0.9); /* Fond semi-transparent */
  color: #cd7f32; /* Accentuation cuivre/orange */
  text-align: center;
  padding: 15px 0;
  font-size: 1.8em;
  font-family: "Cinzel", serif; /* Police médiévale pour les titres */
  font-weight: bold;
  border-bottom: 2px solid #cd7f32;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

header a {
  color: #cd7f32;
  text-decoration: none;
}

header a:hover {
  color: #e4a17b; /* Couleur cuivre plus clair */
}

/* Titre principal : .main-outlet h1 */
#main-outlet h1 {
  font-family: "Cinzel", serif; /* Police classique pour style médiéval */
  font-size: 3rem; /* Taille imposante pour attirer l'attention */
  color: #cd7f32; /* Accent cuivre/or pour cohérence */
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Ajout de profondeur */
  border-bottom: 2px solid rgba(205, 127, 50, 0.4); /* Séparation subtile */
  padding-bottom: 10px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), #121212),
    url("https://colorfulminis.com/static/images/warcry-ruines-1.jpeg")
      no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #cd7f32;
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

table h2,
table h3 {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #d3d3d3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Main content wrapper */
.wrap {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
  border: 1px solid #cd7f32;
}

/* Table : Général */
.topic-list {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  background-color: #1e1e1e; /* Fond sombre */
  border: 1px solid rgba(205, 127, 50, 0.4); /* Bordure cuivre */
  border-radius: 8px; /* Coins arrondis */
  overflow: hidden;
}
.link-bottom-line .badge-category {
  display: none;
}

/* Style pour les noms de catégorie */
.badge-category .category-name {
  font-size: 0.7rem !important; /* Plus petit que le texte normal */
  font-weight: bold;
  color: #ced9de; /* Texte blanc */
  background-color: #e4583573; /* Couleur de fond contrastée */
  padding: 4px 8px; /* Espacement intérieur pour un effet de badge */
  border-radius: 12px; /* Coins arrondis */
  text-transform: uppercase; /* Style capitalisé */
  display: inline-block; /* Format de badge */
  margin-top: 1rem; /* Espacement avec le contenu au-dessus */
}
/* Conteneur pour repositionner le badge */
.badge-wrapper {
  position: relative; /* Nécessaire pour placer le badge en absolu */
  display: flex; /* Alignement flexible pour contenu */
  align-items: center; /* Centre verticalement */
}

span.link-top-line a.title {
  font-family: "Cinzel", serif; /* Police classique pour style médiéval */
  font-size: 1.5rem; /* Taille imposante pour attirer l'attention */
  color: #cd7f32; /* Accent cuivre/or pour cohérence */
}

span.link-top-line a.title:hover {
  color: #cdb832;
  text-decoration: none !important;
}

/* Style pour le badge */
.badge-category {
  right: 10px; /* Décale légèrement à gauche pour coller au bord */
  z-index: 1; /* Assure qu'il est au-dessus des autres éléments */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Ajoute une ombre subtile */
}

/* Conteneur global */
.topic-category {
  display: flex; /* Affiche les éléments en ligne */
  flex-wrap: wrap; /* Permet de passer à la ligne si nécessaire */
  justify-content: center; /* Centre horizontalement les éléments */

  gap: 0.2rem; /* Espacement horizontal et vertical entre les tags */
  margin: 0;
  padding: 0; /* Supprime les marges internes */
  list-style: none; /* Supprime les puces éventuelles */
}

/* Chaque tag (badge-wrapper) */
.badge-wrapper {
  display: flex; /* Place le contenu en ligne */
  align-items: center; /* Aligne verticalement */
  padding: 0.2rem 0.6rem; /* Taille compacte */
  border-radius: 0.2rem; /* Coins arrondis */
  text-decoration: none; /* Supprime le soulignement des liens */
  white-space: nowrap; /* Empêche les retours à la ligne à l'intérieur des tags */
  transition: background-color 0.3s ease; /* Transition pour effet au survol */
  margin: 0;
}

/* Couleur de fond dynamique (badge-category-bg) */
.badge-category-bg {
  display: none; /* Supprime l'élément visuellement */
}

/* Nom de la catégorie (category-name) */
.badge-category .category-name {
  margin: 0; /* Supprime les marges */
  text-transform: none; /* Pas de capitalisation automatique */
}

/* Effet au survol */
.badge-wrapper:hover {
  color: #e7b872;
}

/* Optionnel : Espacement entre les tags si nécessaire */
.badge-wrapper + .badge-wrapper {
  margin-left: 0.5rem; /* Espacement horizontal entre tags */
}

/* Ajustements si nécessaire pour petit écran */
@media (max-width: 768px) {
  .badge-category {
    left: -5px; /* Ajustement pour écrans étroits */
  }
}

/* En-tête */
.topic-list thead th {
  background-color: #292929; /* Contraste avec le fond */
  color: #e4a17b; /* Texte clair */
  text-transform: uppercase;
  padding: 12px;
  font-size: 1rem;
  border-bottom: 2px solid rgba(205, 127, 50, 0.6); /* Ligne cuivre */
}

/* Avatars : arrondis et ombrés */
.topic-list td.posters img.avatar {
  border-radius: 50%; /* Rond */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Ombre subtile */
  border: 2px solid rgba(205, 127, 50, 0.6); /* Bordure cuivre */
  width: 35px; /* Taille légèrement augmentée */
  height: 35px; /* Garde les proportions */
  transition: transform 0.2s ease-in-out; /* Animation au survol */
}

.topic-list td.posters img.avatar:hover {
  transform: scale(1.1); /* Zoom léger au survol */
}

/* Lignes du tableau */
.topic-list tbody tr:nth-child(odd) {
  background-color: rgba(30, 30, 30, 0.6); /* Alternance subtile */
}

.topic-list tbody tr:nth-child(even) {
  background-color: rgba(18, 18, 18, 0.6);
}

.topic-list tbody tr:hover {
  background-color: rgba(205, 127, 50, 0.1); /* Survol cuivre léger */
  cursor: pointer;
}

/* Cellules */
.topic-list td {
  padding: 12px;
  color: #d3d3d3;
  border-bottom: 1px solid #444444; /* Ligne de séparation */
}

td.posters {
  min-width: 200px;
}
.topic-list td.main-link a {
  transition: color 0.3s ease-in-out;
}

/* Titres des sujets */
.topic-list td.main-link a {
  color: #e4a17b; /* Accent cuivre clair */
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
}

.topic-list td.main-link a:hover {
  color: #ffa951; /* Plus clair au survol */
  text-decoration: none;
}

/* Colonne des "réponses", "vues" et "activité" */
.topic-list td.replies,
.topic-list td.views,
.topic-list td:last-child {
  text-align: center;
  font-weight: bold;
  color: #e4a17b; /* Accentuation cuivre */
}

/* Topic Titles */
#topic-title h1 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #cd7f32;
  margin: 0 0 20px 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

#topic-title a {
  color: #cd7f32;
  text-decoration: none;
}

#topic-title a:hover {
  text-decoration: none;
  color: #eac171;
}

/* Posts */
.crawler-post {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #cd7f32;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

.crawler-post-meta {
  font-size: 0.9em;
  color: #aaaaaa;
  margin-bottom: 10px;
}

/* Posts */
.crawler-post {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #cd7f32;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}
.crawler-post .post {
  font-size: 1.1em; /* Taille de police légèrement augmentée */
  color: #d3d3d3; /* Couleur gris clair pour une meilleure lisibilité */
  line-height: 1.6; /* Espacement vertical pour faciliter la lecture */
}

.crawler-post-meta [itemprop="position"] {
  display: none;
}

.post-likes {
  font-size: 0.8em; /* Réduction de la taille */
  color: #aaaaaa80; /* Gris clair pour atténuer */
  background-color: transparent; /* Pas de fond pour plus de discrétion */
  padding: 0; /* Suppression des marges internes */
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Espacement entre icône et texte */

  position: absolute;
  right: 20px; /* Distance par rapport au bord droit */
  bottom: 10px; /* Distance par rapport au bas du bloc post */
}
.crawler-post {
  position: relative; /* Nécessaire pour utiliser position: absolute dans .post-likes */
  padding-bottom: 30px; /* Ajoute de l'espace pour éviter un chevauchement avec les likes */
}

/* Les images incluses au sein des posts - on exclut les emoji */
.post p img:not(.emoji) {
  display: block; /* Permet d'utiliser margin auto */
  margin: 20px auto; /* Centre horizontalement et ajoute un espace au-dessus/au-dessous */

  max-height: 80vh; /* Limite la taille de l'image à la largeur du conteneur */
  width: auto;

  aspect-ratio: contain; /* Respecte l'aspect ratio de l'image */

  border: 1px solid #444444; /* Cadre gris foncé pour délimiter l'image */
  border-radius: 6px; /* Coins légèrement arrondis */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5); /* Ombre pour un effet de profondeur */

  transition: all 0.5s ease-in-out; /* Transition fluide pour tous les états */
}

img.emoji {
  margin-left: 0.1em;
  margin-right: 0.2em;
}

/* zoom au survol */
.post p img:not(.emoji):hover {
  transform: scale(1.2);
  box-shadow: 0px 4px 12px rgba(246, 196, 158, 0.724); /* lueur cuivrée */
}

@media (hover: none) {
  .post p img:not(.emoji):hover {
    transform: none;
    box-shadow: none;
  }
}

/* Métadonnées du post */
.crawler-post-meta {
  font-size: 0.9em;
  color: #aaaaaa;
  margin-bottom: 10px;
  display: flex;
  align-items: center; /* Aligne le contenu sur une même ligne */
  gap: 0px; /* Espacement entre les éléments */
}

/* Style pour le pseudo */
.crawler-post-meta .creator {
  font-size: 0.9em;
  font-weight: bold;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #e4a17be0; /* Cuivre discret pour le texte */
  background-color: #333333d1; /* Fond sombre et subtil */
  padding: 2px 6px;
  border-radius: 3px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin-right: 10px;
}

/* Style pour la date */
.crawler-post-meta .post-time {
  font-size: 0.8em;
  color: #888888;
  margin-left: auto; /* Décale à droite */
}

/* Style pour le contenu du post */
.crawler-post .post {
  font-size: 1.2em;
  color: #d3d3d3;
}

/* Liens dans le contenu */
.crawler-post .post a {
  color: #e4a17b; /* Accentuation cuivre clair */
  text-decoration: none;
}

.crawler-post .post a:hover {
  text-decoration: none;
  color: #ffa951;
}

/* Lists */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* Cards */
.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: linear-gradient(135deg, #1e1e1e, #292929);
  border: 1px solid #cd7f32;
}

.card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px #cd7f32;
}

.card-title {
  font-family: "Cinzel", serif;
  color: #cd7f32;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #1e1e1e;
}

table th,
table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #444444;
}

table th {
  background-color: #292929;
  color: #e4a17b;
}

table tbody tr:nth-child(odd) {
  background-color: #2a2a2a;
}

table tbody tr:hover {
  background-color: #333333;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #aaaaaa;
  padding: 20px 0;
  border-top: 1px solid #444444;
  margin-top: 30px;
  background: linear-gradient(135deg, #1e1e1e, #292929);
}

footer a {
  color: #cd7f32;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Error Section */
.error-404 {
  min-height: 80vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), #121212),
    url("https://colorfulminis.com/static/images/warcry-squelettes.jpeg")
      no-repeat center center/cover;
}

.error-404 h1 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

tr:nth-child(odd) {
  background-color: rgba(
    30,
    30,
    30,
    0.6
  ); /* Alternance légère pour lisibilité */
}

tr:nth-child(even) {
  background-color: rgba(18, 18, 18, 0.6);
}

.category h3 {
  font-size: 1.5rem; /* Légèrement plus grand pour meilleure hiérarchie */
  color: #cd7f32; /* Cuivre pour cohérence */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Ajout de profondeur */
}

.category h3:hover {
  color: #a6692c; /* Variation au survol */
}

.category div[itemprop="description"] {
  color: #d3d3d3; /* Gris clair pour contraste doux */
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Bloc des sujets */
.topics div {
  color: #cd7f32; /* Cuivre pour uniformité avec les titres */
  font-size: 1.2rem;
  font-weight: bold;
}

/* FOOTER : Amélioration du bloc de navigation */
footer.container.wrap {
  border-top: 2px solid #cd7f32; /* Séparation plus marquée */
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

nav.crawler-nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none !important;
  padding: 0;
  margin: 1rem 0;
}

nav.crawler-nav a {
  font-size: 1.1rem;
  color: #cd7f32;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.crawler-nav a:hover {
  color: #a6692c;
  text-decoration: underline;
}

.powered-by-link {
  font-size: 0.9rem;
  color: #6f8490; /* Gris bleuté pour discrétion */
  margin-top: 1rem;
}

.discourse-tag {
  display: inline-block;
  padding: 0.2em 0.6em; /* Taille compacte */
  font-size: 0.65rem !important; /* Petit texte */
  color: #8c969c !important;
  background-color: #474747a3; /* Fond gris neutre (style Bootstrap) */
  border-radius: 0.2rem; /* Coins légèrement arrondis */
  text-transform: none; /* Garde le texte tel quel */
  margin: 0 0.2em; /* Espacement horizontal entre tags */
  line-height: 1.2; /* Légèrement compacté pour un effet propre */
  vertical-align: middle; /* Alignement propre avec le texte environnant */
  white-space: nowrap; /* Évite les retours à la ligne */
  cursor: default; /* Indique que ce n'est pas un bouton cliquable */
}

/* Optionnel : Effet de survol si le tag est interactif */
.discourse-tag:hover {
  background-color: #5a6268; /* Légèrement plus foncé au survol */
  text-decoration: none; /* Supprime le soulignement éventuel */
}

div.post p,
ul,
li,
blockquote {
  color: #a7b0b6;
  font-family: Robotto, Tahoma, sans-serif;
}

/* === Table des catégories (home) === */

table.category-list tr,
table.category-list td {
  border: 0;
}

/* En-tête */
.category-list thead th {
  color: #cd7f32; /* Texte cuivre */
}

/* Lignes du tableau : Alternance */
.category-list tbody tr:nth-child(odd) {
  background-color: #12121218;
}

.category-list tbody tr:nth-child(even) {
  background-color: #12121256;
}

/* Effet au survol */
.category-list tbody tr:hover {
  background-color: rgba(205, 127, 50, 0.15); /* Cuivre léger */
  cursor: pointer;
}

/* Titres des catégories */
.category h3 {
  color: #cd7f32; /* Texte cuivre */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); /* Ajout de profondeur */
}

.category h3:hover {
  color: #ffa951; /* Texte plus clair au survol */
}

/* Description sous les catégories */
.category div[itemprop="description"] {
  font-size: 1rem; /* Lisibilité accrue */
  color: #d3d3d3; /* Gris clair pour contraste */
}

/* Colonne des sujets */
.topics div {
  color: #cd7f32; /* Texte cuivre */
  font-size: 1.2rem; /* Taille légèrement augmentée */
  font-weight: bold;
}

/* === Transitions === */
.category-list tbody tr,
.category h3 {
  transition: background-color 0.3s ease, color 0.3s ease; /* Fluidité au survol */
}

/* === Conteneur des images : Suppression de la bordure et ajustement === */
.lightbox-wrapper {
  display: flex;
  justify-content: center; /* Centrage horizontal */
  align-items: center; /* Centrage vertical (utile si taille variable) */
  margin: 15px 0; /* Espacement réduit autour */
  padding: 0; /* Supprime les marges internes */
  background: none; /* Supprime tout fond */
  box-shadow: none; /* Supprime l'ombre résiduelle */
}

/* === Image : Centrage et effet au survol === */
.lightbox img {
  max-width: 100%; /* Image responsive */
  height: auto; /* Conserve les proportions */
  display: block; /* Supprime les marges latérales par défaut */
  border-radius: 4px; /* Coins légèrement arrondis */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation fluide */
}

/* Effet au survol */
.lightbox img:hover {
  transform: scale(1.02); /* Zoom très léger */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5); /* Ombre subtile */
}

svg.svg-icon {
  display: none;
}

/* === Légende sous l'image === */
.lightbox .meta {
  font-size: 0.9rem;
  color: #a9b4c293; /* Bleu-gris sobre */
  text-align: center;
  margin-top: 1rem;

  font-style: italic;
  text-decoration: none; /* Supprime le soulignement */
  transition: color 0.3s ease;
}
.lightbox .meta span {
  margin-right: 1rem;
}

/* Interaction de la légende au survol */
.lightbox .meta span:hover {
  color: #cdd7e3; /* Légère accentuation au survol */
  text-decoration: none !important;
}
