.history_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.history_img_wrap {
  border-radius: 5px;
  overflow: hidden;
  height: auto;
}

.history_content_text {
  font-size: 11px;
  font-weight: 500;
  color: #1e1e1e;
}

.stat_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat_top_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat_top_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat_top_item_value {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #333333;
  text-transform: capitalize;
}

.stat_top_item_label {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: #242424;
  text-transform: capitalize;
}

.stat_bottom_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat_bottom_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 16px;
}

.stat_bottom_item_title {
  font-size: 16px;
  font-weight: 700;
  color: #242424;
  text-transform: capitalize;
}

.stat_bottom_item_circle_wrap {
  width: 90px;
  height: 90px;
  position: relative;
}

.stat_bottom_item_circle_svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat_bottom_item_circle_bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.12);
  stroke-width: 5;
}

.stat_bottom_item_circle_progress {
  fill: none;
  stroke: #0c77a4;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}

.stat_bottom_item_circle_value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

.players_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.players_item {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  transition: all 0.9s ease;
  transform: translateY(0);
  will-change: transform, box-shadow;
}

.players_item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.2);
}

.players_link {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #333333;
  transition: all 0.9s ease;
}

.players_link:hover {
  color: #333333a6;
}

.players_link_img_wrap {
  background-color: #0d2042;
  width: 100%;
  overflow: hidden;
}

.players_link_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.players_text {
  position: absolute;
  left: 5%;
  top: 5%;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.players_info_wrap {
  padding: 16px;
}

.players_info_title {
  font-size: 14px;
  font-weight: 700;
}

.players_info_subtitle {
  font-size: 16px;
  font-weight: 600;
}

.players_bottom_info_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.players_bottom_info_text {
  font-size: 11px;
  font-weight: 500;
  color: #1e1e1e;
  text-transform: uppercase;
}

.players_bottom_info_img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  border-radius: 5px;
  overflow: hidden;
}

.awards_link {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #333333;
  gap: 16px;
  height: 100%;
  transition: all 0.9s ease;
}

.awards_link:hover {
  color: #333333a6;
}

.awards_link_img {
  aspect-ratio: 2/1;
  width: 100%;
  overflow: hidden;
  object-fit: contain;
}

.awards_link_info_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.awards_link_info_title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.awards_link_info_text {
  font-size: 11px;
  font-weight: 500;
  color: #1e1e1e;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .history_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat_top_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat_bottom_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .players_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .history_content_text {
    font-size: 13px;
  }

  .stat_top_item_value {
    font-size: 20px;
  }

  .stat_top_item_label {
    font-size: 13px;
  }

  .stat_bottom_item_title {
    font-size: 18px;
  }

  .stat_bottom_item_circle_wrap {
    width: 120px;
    height: 120px;
  }

  .stat_bottom_item_circle_value {
    font-size: 20px;
  }

  .players_text {
    font-size: 30px;
  }

  .players_info_title {
    font-size: 16px;
  }

  .players_info_subtitle {
    font-size: 18px;
  }

  .players_bottom_info_text {
    font-size: 13px;
  }

  .players_bottom_info_img {
    width: 25px;
    height: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .history_wrapper {
    gap: 24px;
  }

  .stat_wrapper {
    gap: 24px;
  }

  .stat_top_list {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .stat_bottom_list {
    gap: 24px;
  }

  .stat_bottom_item {
    gap: 24px;
    padding: 24px;
  }

  .players_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .players_info_wrap {
    padding: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .history_content_text {
    font-size: 15px;
  }

  .stat_top_item_value {
    font-size: 22px;
  }

  .stat_top_item_label {
    font-size: 15px;
  }

  .stat_bottom_item_title {
    font-size: 20px;
  }

  .stat_bottom_item_circle_wrap {
    width: 150px;
    height: 150px;
  }

  .stat_bottom_item_circle_value {
    font-size: 22px;
  }

  .players_text {
    font-size: 36px;
  }

  .players_info_title {
    font-size: 18px;
  }

  .players_info_subtitle {
    font-size: 20px;
  }

  .players_bottom_info_text {
    font-size: 15px;
  }

  .players_bottom_info_img {
    width: 30px;
    height: 30px;
  }
}
