.block_player_bio_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.player_bio_text {
  font-size: 15px;
  font-weight: normal;
  color: rgb(255, 255, 255);
}
.block_player_bio_table {
  border-radius: 8px;
  overflow: hidden;
  border-style: solid;
  border-color: rgb(40, 40, 40);
  border-width: 1px;
}

@media screen and (min-width: 768px) {
  .block_player_bio_wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .block_player_bio_wrap {
    grid-column: 1 / -1;
  }
}

@media screen and (min-width: 1024px) {
}

@media screen and (min-width: 1200px) {
  .block_player_bio_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .block_player_bio_wrap {
    grid-column: auto;
  }
}

@media screen and (min-width: 1440px) {
}
