.hero-team {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-team__content .hero__title {
  margin-bottom: 8px;
}
.hero-team__logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
}

.hero-team__list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-team__list-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  text-transform: capitalize;
  gap: 8px;
}

.hero-team__label {
  font-size: 20px;
  color: var(--color-white);
}

.hero-team__separator {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  margin-right: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}



.biography {
  margin-bottom: 48px;
}

.biography__header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.biography__header--space-between {
  justify-content: space-between;
}

.biography__title {
  margin: 0;
  font-size: 32px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.biography__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biography__text {
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.6;
}

.biography__image-wrap {
  margin: 16px 0;
}

.biography__image {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: cover;
  display: block;
}










@media (max-width: 768px) {
.player-page__best-stat {
  display: block;
}
}