.bio_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background-color: #00001b;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  padding: 16px;
}

.bio_wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bio_list_wrap {
  order: 2;
}

.bio_img_wrap {
  order: 1;
}

.bio_content_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.bio_content_item:last-child {
  margin-bottom: 0;
}

.bio_content_item p:nth-child(1) {
  font-size: 16px;
  font-weight: 700;
  color: #ff4b44;
  text-transform: uppercase;
}

.bio_content_item p:nth-child(2) {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.bio_img_wrap {
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.bio_text {
  font-size: 12px;
  font-weight: 500;
  color: #adadb6;
}

.player_table_wrapper {
  border: 1px solid #eaeaea;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  overflow: hidden;
}

.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: #ff4b44;
  border-radius: 16px;
}

.player_table_wrap::-webkit-scrollbar-track {
  background-color: #f4f4f4;
}

.player_table {
  width: 710px;
  table-layout: fixed;
}

.player_table_head_line {
  background-color: #00001b;
}

.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 {
  border-bottom: 1px solid #dadada;
  transition: all 0.3s ease;
}

.player_table_body_line:last-child {
  border-bottom: none;
}

.player_table_body_line:nth-child(odd) {
  background-color: #ffffff;
}

.player_table_body_line:nth-child(even) {
  background-color: #fafafa;
}

.player_table_body_point {
  padding: 8px;
}

.player_table_body_point_text {
  font-size: 16px;
  font-weight: 500;
  color: #00001b;
  text-align: center;
}

.player_table tbody td:first-child p {
  text-align: left;
}

.player_table_body_line td:last-child p {
  font-weight: 900;
}

.player_table_body_point_link {
  font-size: 16px;
  font-weight: 600;
  color: #00001b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.player_table_body_point_link:hover {
  color: #ff4b44;
}

.player_table_body_line:hover .player_table_body_point_link {
  color: #ff4b44;
}

.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: #00001b;
}

.player_table_body_line td:first-child,
.player_table_body_line td:nth-child(2) {
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.player_table_body_line:nth-child(even) td:first-child,
.player_table_body_line:nth-child(even) td:nth-child(2) {
  background-color: #fafafa;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .bio_wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .bio_list_wrap {
    order: 1;
  }

  .bio_img_wrap {
    order: 2;
  }

  .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_item p:nth-child(1) {
    font-size: 18px;
  }

  .bio_content_item p:nth-child(2) {
    font-size: 14px;
  }

  .bio_text {
    font-size: 14px;
  }

  .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;
    padding: 24px;
  }

  .bio_wrap {
    gap: 24px;
  }

  .bio_content_item {
    padding-bottom: 16px;
    margin-bottom: 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_item p:nth-child(1) {
    font-size: 20px;
  }

  .bio_content_item p:nth-child(2) {
    font-size: 16px;
  }

  .bio_text {
    font-size: 16px;
  }
}
