.block_player_info_wrapper {
  display: grid;
  /* grid-template-columns: 50% 1fr; */
  grid-template-columns: 1fr;
}

.player_info_list {
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
}

.player_info_item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}

.player_info_item:last-child {
  margin-bottom: 0;
}

.player_info_item_subtitle {
  /* font-size: 20px; */
  font-size: 16px;
  font-weight: 500;
  color: rgb(18, 18, 18);
}

.player_info_item_text {
  color: rgb(108, 107, 107);
  /* font-size: 20px; */
  font-size: 16px;
  font-weight: 500;
}

.player_bio_text {
  color: rgb(108, 107, 107);
  /* font-size: 18px; */
  font-size: 14px;
  font-weight: 400;
}

.block_player_stats_list {
  display: grid;
  /* grid-template-columns: 1fr 1fr 1fr 1fr; */
  grid-template-columns: 1fr;
  /* gap: 15px; */
  gap: 16px;
}

@media screen and (min-width: 576px) {
  .block_player_stats_list {
    /* gap: 20px; */
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  .player_info_item_subtitle {
    font-size: 18px;
  }

  .player_info_item_text {
    font-size: 18px;
  }

  .player_bio_text {
    font-size: 16px;
  }

  .block_player_stats_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .block_player_info_wrapper {
    grid-template-columns: 50% 1fr;
  }

  .block_player_stats_list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .player_info_item_subtitle {
    font-size: 20px;
  }

  .player_info_item_text {
    font-size: 20px;
  }

  .player_bio_text {
    font-size: 18px;
  }
}

@media screen and (min-width: 1440px) {
}
