.tenistas {
  margin-top: 2rem;
}

.tenistas-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)); /* escritorio: 6 por fila */
  gap: 1.5rem;
}

.tenista a {
  text-decoration: none;
  color: inherit;
}

.tenista-media {
  aspect-ratio: 1 / 1; /* cuadrado consistente */
  border-radius: 0.8rem;
  overflow: hidden;
  background: #e9eef3;
}

.tenista-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* relleno sin deformar */
  display: block;
}

.tenista-info {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tenista-nombre {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fuenteHeading);
  font-size: 1.6rem;
  color: var(--grisOscuro);
}

.tenista-nombre .pais {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.tenista .puntos {
  margin: 0;
  font-size: 1.4rem;
  color: var(--azulOscuro);
  font-weight: 600;
}

/* iPad / tablets: 3 por fila */
@media (max-width: 1024px) {
  .tenistas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Móvil: 2 por fila */
@media (max-width: 768px) {
  .tenistas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
