/*
  Description : Ceci est les 10 meilleurs joueurs de mon site(css).
  Auteur : Esteban Crausaz
  Date de création : 09.01.2026
  */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#f2f2f2;
}

nav{
  width: 980px;
  max-width: calc(100% - 60px);
  margin: 24px auto 0;
  background: white;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  padding: 12px 0;
  text-align: center;
}

nav a{
  color: #2b5db7;
  text-decoration: underline;
  font-size: 14px;
  margin: 0 10px;
}


main.page{
  width: 980px;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  background: white;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  padding: 20px 40px;
}


.hero{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 10px 0 12px;
}

.hero h1{
  font-size: 18px;
  font-weight: bold;
}

.hero-logo{
  width: 90px;
  height: auto;
}

hr{
  border: none;
  border-top: 1px solid #ddd;
  margin: 12px 0 18px;
}


.joueur{
  width: 820px;
  max-width: 100%;
  margin: 0 auto;
  padding: 16px 0;

  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 18px;
  align-items: start;
}

.joueur + .joueur{
  border-top: 1px solid #eee;
}

.rang{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding-top: 6px;
}

.contenu h2{
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}


.photo{
  width: 280px;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
  border: 1px solid #d9d9d9;
  background: #f1f1f1;
}

.contenu p{
  font-size: 17px;
  line-height: 1.55;
  color: #222;
  width: 520px;
  max-width: 100%;
  margin: 0 auto;
}


footer{
  width: 980px;
  max-width: calc(100% - 60px);
  margin: 0 auto 24px;
  background: white;
  border: 1px solid #e5e5e5;
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
}



@media (max-width: 850px){
  main.page{
    padding: 18px;
  }

  .joueur{
    grid-template-columns: 45px 1fr;
    column-gap: 12px;
  }

  .photo{
    width: 100%;
    max-width: 340px;
    height: auto;
  }

  .contenu p{
    width: 100%;
  }

  .hero h1{
    font-size: 16px;
  }
  
}
.click-info{
  font-size: 12px;
  font-style: italic;
  color: #555;
  text-align: center;
  margin-bottom: 10px;
}

.joueur{
  transition: transform 0.2s ease;
}

.joueur:hover{
  transform: scale(1.1);
}
.infos {
  list-style-position: inside;
  text-align: left;        /* texte lisible */
  margin: 10px auto 15px;  /* centre le bloc */
  padding: 0;
  max-width: 500px;
}




