.hero__team-bg {
  object-position: top;
}

.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;
}

.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%;
}





.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
  margin-bottom: 48px;
}

.team-stats__item {
  background-color: var(--color-white);
  padding: 16px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.10);
}

.team-stats__title {
  font-size: 0.875rem;
  margin-bottom: 8px;
  text-transform: capitalize;
  color: var(--color-gray);
}

.team-stats__value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-dark);
  margin: 0;
}




.player-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.player-details__group {
  background-color: var(--color-white);
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.player-details__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.player-details__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.player-details__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player-details__label {
  font-size: 16px;
  color: var(--color-gray);
  text-transform: capitalize;
}

.player-details__value {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-details__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
