.zone_icone {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center;     /* Centre verticalement si tu donnes une hauteur */
    width: 100%;
    z-index: 888;
}
  
.zone_icone img {
    max-width: 55%;
    border-radius: 100px;
    opacity: 1;
    border: 3px #fff solid;
}
  

ul.liste_elements {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
  
  /* Chaque li devient un conteneur flex horizontal */
ul.liste_elements li {
    display: flex;
    align-items: center;  /* alignement vertical centré */
    justify-content: space-between; /* ou space-around ou autre */
    margin-bottom: 10px;
    background-color: #f5f3eb;
    border-radius: 5px;
    padding: 5px;
}
  
  /* Icône de gauche */
.zone_image {
    flex: 0 0 auto;  /* taille fixe (auto) */
    width: 10%;      /* ou un max-width, selon besoin */
    box-sizing: border-box;
    margin-right: 20px;
}

.zone_image img {
    max-width: 100%;
    display: block;
}  
  
  /* Le contenu texte */
.zone_texte {
    flex: 1 1 auto; /* prend l’espace restant */
    box-sizing: border-box;
}

.zone_texte p {
    margin: 0;
    padding: 0;
    font-size: clamp(1rem, 2.5vw, 3rem); /* min, viewport, max */
    line-height: 0.8em;
}  


.texte_titre {
    color: #111;
    font-size: clamp(1rem, 2.5vw, 3rem); /* entre ~17px et ~24px */
    line-height: 1.5em;
    margin: 0;
    padding: 0;
}
  
.texte_date {
    font-size: clamp(0.5rem, 2.5vw, 1.5rem); /* entre ~11px et ~16px */
    line-height: 1.0em;
    margin: 0;
    padding: 0;
}



.ligne_joueur {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #f5f3eb;
    border-radius: 5px;
    padding: 0.5em 1em;
    gap: 1em;
    width: 100%;
}

.zone_image {
    flex: 0 0 auto;
    width: 8%;
    min-width: 40px;
}

.zone_icone img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
}

.zone_infos {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.zone_recompenses {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4em;
    margin-top: 0.3em;
}

.recompense {
    display: flex;
    align-items: center;
    gap: 0.2em;
}

.icone_recompense {
    width: 1.4em;
    height: auto;
}

.zone_scores {
    flex: 0 0 auto;
    text-align: right;
    font-size: 1.2em;
}

.zone_rang {
    flex: 0 0 auto;
    text-align: center;
    margin-left: auto; /* pousse à droite */
    display: flex;
    align-items: center;
    justify-content: center;
}

.texte_rang {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #000;
    text-shadow: 2px 2px 4px #aaa;
    display: inline;
}

.texte_rang_ieme {
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 0.1em;
}



