.player_info_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.player_info_link_wrap {
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
}

.player_info_link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

  width: 100%;
  color: #ffffff;
  background-color: #333333;
  transition: all 0.5s ease;
}

.player_info_link:hover {
  color: #d9363e;
  background-color: #252729;
}

.player_info_link_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: #252729;
  padding: 16px;
}

.player_info_title {
  font-size: 16px;
  font-weight: 700;
}

.player_info_subtitle {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.player_info_text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.player_link_img_wrap {
  position: relative;
  aspect-ratio: 14/14;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.player_link_img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.9s ease-in-out;
}

.player_info_link:hover .player_link_img {
  transform: scale(1.04);
}

.player_link_number {
  position: absolute;
  top: 20%;
  left: 5%;
  font-size: 75px;
  font-weight: 700;
}

.player_info_bio_wrap {
  border: 1px solid #d9d9d9;
  background-color: #252729;
  padding: 16px;
  border-radius: 20px;
}

.player_info_bio_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.player_info_bio_item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.player_info_bio_item_title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.player_info_bio_item_subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.player_info_bio_title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.player_info_bio_text {
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
}

.player_stat_table_wrapper {
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
}

.player_stat_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.player_stat_table_wrap::-webkit-scrollbar {
  height: 6px;
}

.player_stat_table_wrap::-webkit-scrollbar-thumb {
  background-color: #ff2d55;
  border-radius: 24px;
}

.player_stat_table_wrap::-webkit-scrollbar-track {
  background-color: #252729;
}
.player_stat_table {
  width: 630px;
  table-layout: fixed;
}

.player_stat_table_head_line {
  background-color: #16151a;
}

.player_stat_table_head_point {
  padding: 8px;
}

.player_stat_table_head_point_text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.player_stat_table_body_line {
  background-color: #252729;
  border-bottom: 1px solid #d9d9d9;
  transition: all 0.9s ease;
}

.player_stat_table_body_line:last-child {
  border: none;
}

.player_stat_table_body_line:hover {
  background-color: #333333;
}

.player_stat_table_body_line_active {
  background-color: #333333;
}

.player_stat_table_body_point {
  padding: 8px;
}

.player_stat_table_body_point_text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.player_stat_table_head td:first-child {
  color: #d9363e;
}

.player_stat_table_body td:first-child {
  color: #d9363e;
}

.player_stat_table_head td:first-child,
.player_stat_table_body td:first-child {
  position: sticky;
  left: 0;
  z-index: 5;
  width: 75px;
}

.results_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .player_info_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .player_link_img_wrap {
    aspect-ratio: 8/10;
  }

  .player_link_number {
    top: 15%;
  }

  .player_stat_table {
    width: 930px;
  }

  .player_stat_table_head td:first-child,
  .player_stat_table_body td:first-child {
    width: 95px;
  }

  .results_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .player_info_title {
    font-size: 18px;
  }

  .player_info_subtitle {
    font-size: 22px;
  }

  .player_info_text {
    font-size: 18px;
  }

  .player_link_number {
    font-size: 85px;
  }

  .player_info_bio_item_title {
    font-size: 18px;
  }

  .player_info_bio_item_subtitle {
    font-size: 18px;
  }

  .player_info_bio_title {
    font-size: 18px;
  }

  .player_info_bio_text {
    font-size: 13px;
  }

  .player_stat_table_head_point_text {
    font-size: 18px;
  }

  .player_stat_table_body_point_text {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .player_info_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .player_info_link_wrapper {
    padding: 24px;
  }

  .player_link_img_wrap {
    aspect-ratio: 4/6;
  }

  .player_link_number {
    top: 20%;
  }

  .player_info_bio_wrap {
    padding: 24px;
  }

  .player_info_bio_item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .player_stat_table {
    width: 100%;
  }

  .player_stat_table_head_point {
    padding: 16px;
  }

  .player_stat_table_body_point {
    padding: 16px;
  }

  .results_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .player_info_title {
    font-size: 20px;
  }

  .player_info_subtitle {
    font-size: 24px;
  }

  .player_info_text {
    font-size: 20px;
  }

  .player_link_number {
    font-size: 95px;
  }

  .player_info_bio_item_title {
    font-size: 20px;
  }

  .player_info_bio_item_subtitle {
    font-size: 20px;
  }

  .player_info_bio_title {
    font-size: 20px;
  }

  .player_info_bio_text {
    font-size: 15px;
  }

  .player_stat_table_head_point_text {
    font-size: 20px;
  }

  .player_stat_table_body_point_text {
    font-size: 20px;
  }
}
