.bio_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bio_img_wrap {
  border-radius: 5px;
  overflow: hidden;
  height: auto;
}

.bio_content_text {
  font-size: 11px;
  font-weight: 500;
  color: #3a3a3a;
}

.player_table_wrapper {
  overflow: hidden;
  border: 1px solid #808080;
}

.player_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.player_table_wrap::-webkit-scrollbar {
  height: 4px;
}

.player_table_wrap::-webkit-scrollbar-thumb {
  background-color: #006;
}

.player_table_wrap::-webkit-scrollbar-track {
  background-color: #f7f5ea;
}

.player_table {
  width: 710px;
  table-layout: fixed;
}

.player_table_head_line {
  background-color: #006;
}

.player_table_head_point {
  padding: 8px;
}

.player_table_head_point_text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.player_table thead td:nth-child(-n + 2) p {
  text-align: left;
}

.player_table_head_line td:last-child p {
  font-weight: 900;
}

.player_table_body_line {
  background-color: #f7f5ea;
  border-bottom: 1px solid #808080;
  transition: all 0.5s ease;
}

.player_table_body_line:hover {
  background-color: #f0f0f0;
}

.player_table_body_line:last-child {
  border-bottom: none;
}

.player_table_body_point {
  padding: 8px;
}

.player_table_body_point_text {
  font-size: 16px;
  font-weight: 500;
  color: #3a3a3a;
  text-align: center;
}

.player_table tbody td:first-child p {
  text-align: left;
}

.player_table_body_line td:last-child p {
  font-weight: 900;
  color: #aa2b4a;
}

.player_table_body_point_link {
  font-size: 16px;
  font-weight: 600;
  color: #707070;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease;
}

.player_table_body_point_link:hover {
  color: #ffd100;
}

.player_table_head_line td:first-child,
.player_table_body_line td:first-child {
  position: sticky;
  left: 0;
  z-index: 5;
  width: 90px;
}

.player_table_head_line td:nth-child(2),
.player_table_body_line td:nth-child(2) {
  position: sticky;
  left: 90px;
  z-index: 3;
  width: 90px;
}

.player_table_head_line td:first-child,
.player_table_head_line td:nth-child(2) {
  background-color: #006;
}

.player_table_body_line td:first-child,
.player_table_body_line td:nth-child(2) {
  background-color: #f7f5ea;
  transition: all 0.5s ease;
}

.player_table_body_line:hover td:first-child,
.player_table_body_line:hover td:nth-child(2) {
  background-color: #f0f0f0;
}

@media screen and (min-width: 768px) {
  .bio_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .player_table {
    width: 930px;
  }

  .player_table_head_line td:nth-child(2),
  .player_table_body_line td:nth-child(2) {
    width: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .bio_content_text {
    font-size: 13px;
  }

  .player_table_head_point_text {
    font-size: 18px;
  }

  .player_table_body_point_text {
    font-size: 18px;
  }

  .player_table_body_point_link {
    font-size: 18px;
  }

  .player_table_head_line td:nth-child(2),
  .player_table_body_line td:nth-child(2) {
    width: 250px;
  }
}

@media screen and (min-width: 1200px) {
  .bio_wrapper {
    gap: 24px;
  }

  .player_table {
    width: 100%;
  }

  .player_table_head_point {
    padding: 16px;
  }

  .player_table_body_point {
    padding: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .bio_content_text {
    font-size: 15px;
  }
}
