/*
Theme Name: Astra Child
Template: astra
*/

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7faff;
  color: #222;
}

/* Fiche coureur */
.fiche-coureur-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', sans-serif;
}

.fiche-header {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.coureur-photo img {
  width: 180px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.coureur-infos h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.coureur-infos ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coureur-infos li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.fiche-section {
  margin-top: 2.5rem;
  background: #fdfdfd;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.fiche-section h2 {
  margin-bottom: 1rem;
  color: #0055a5;
  border-bottom: 2px solid #0055a5;
  padding-bottom: 0.5rem;
}

.notes-techniques {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  list-style: none;
  padding: 0;
}