.player_wrap {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
  overflow: hidden;
  padding: 16px;
}

.player_bio_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.player_bio_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(0, 0, 64, 0.35);
}

.player_bio_item:last-child {
  border: none;
}

.player_bio_item_subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgb(165, 165, 165);
}

.player_bio_item_text {
  font-size: 14px;
  font-weight: 500;
  color: rgb(26, 49, 60);
}

.player_bio_text {
  font-size: 14px;
  font-weight: 500;
  color: rgb(26, 49, 60);
}

@media screen and (min-width: 768px) {
  .player_bio_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .player_bio_item_subtitle {
    font-size: 18px;
  }

  .player_bio_item_text {
    font-size: 16px;
  }

  .player_bio_text {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .player_wrap {
    padding: 24px;
  }

  .player_bio_wrapper {
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .player_bio_item_subtitle {
    font-size: 20px;
  }

  .player_bio_item_text {
    font-size: 18px;
  }

  .player_bio_text {
    font-size: 18px;
  }
}
