.athlete-card {
  max-width: 700px;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  background: #fff;
}
.athlete-card .athlete-header {
  background: #1e3c72;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
}
.athlete-card .athlete-header h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.athlete-card .athlete-content {
  display: flex;
  padding: 20px;
  gap: 20px;
}
.athlete-card .athlete-text {
  flex: 2;
}
.athlete-card .palmares {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.athlete-card .palmares li {
  margin-bottom: 8px;
  line-height: 1.4;
}
.athlete-card .athlete-photo {
  flex: 1;
  text-align: right;
  margin-right: 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.athlete-card .athlete-photo img {
  border-radius: 30px;
  border: 3px solid #1e3c72;
}
.athlete-card .athlete-photo:hover {
  transform: translateY(-5px);
}
.athlete-card .athlete-photo:hover .materiel-picture img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.athlete-card .athlete-image {
  max-width: 250px;
  max-height: 200px;
  width: auto;
  height: auto;
  cursor: pointer;
}
.athlete-card .athlete-footer {
  text-align: right;
  padding: 10px 20px 15px;
  font-style: italic;
  color: #555;
}

.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1000;
}
.photo-modal .modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.photo-modal.active {
  opacity: 1;
  visibility: visible;
}
.photo-modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.modal-trigger {
  cursor: pointer;
}

.athlete-materiel {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc(33.333% - 15px);
  text-align: center;
  min-width: 150px;
}
.athlete-materiel a {
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.athlete-materiel a:hover {
  transform: translateY(-5px);
}
.athlete-materiel a:hover .materiel-picture img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.athlete-materiel .materiel-title {
  font-weight: bold;
  font-size: 14px;
  color: #1e3c72;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.athlete-materiel .materiel-name {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.3;
  flex-grow: 1;
}
.athlete-materiel .materiel-ref {
  font-size: 12px;
  color: #555;
  margin-bottom: 10px;
}
.athlete-materiel .materiel-ref-label {
  font-weight: bold;
}
.athlete-materiel .materiel-picture {
  margin-bottom: 10px;
}
.athlete-materiel .materiel-picture img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #1e3c72;
  transition: box-shadow 0.35s ease;
}

.athlete-materials {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  margin-top: 50px;
  justify-content: center;
}

/*# sourceMappingURL=style.css.map */
