.history_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.history_img_wrap {
  border-radius: 2px;
  overflow: hidden;
  height: auto;
}

.history_content_text {
  font-size: 11px;
  font-weight: 500;
  color: #666;
}

.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: #999;
  text-transform: capitalize;
}

.stat_top_item_label {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: #666;
  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;
  background-color: #f4f4f4;
  border: 1px solid #dadada;
  overflow: hidden;
  padding: 16px;
}

.stat_bottom_item_title {
  font-size: 16px;
  font-weight: 700;
  color: #666;
  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: #f0f0f0;
  stroke-width: 5;
}

.stat_bottom_item_circle_progress {
  fill: none;
  stroke: #024274;
  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: #999;
}

.players_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.players_link {
  display: block;
  width: 100%;
  height: 100%;
}

.players_link_img_wrap {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}

.players_link_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.9s ease-in-out;
}

.players_link:hover .players_link_img {
  transform: scale(1.04);
}

.awards_link {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #999;
  gap: 16px;
  height: 100%;
  transition: all 0.9s ease;
}

.awards_link:hover {
  color: #0099ff;
}

.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: #666;
  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;
  }

  .awards_link_info_title {
    font-size: 18px;
  }

  .awards_link_info_text {
    font-size: 13px;
  }
}

@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;
  }
}

@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;
  }

  .awards_link_info_title {
    font-size: 20px;
  }

  .awards_link_info_text {
    font-size: 15px;
  }
}
