.review_team_meet_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background-color: #ffffff;
  border: 2px solid #adccf9;
  padding: 16px;
}

.review_team_meet_info_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review_team_meet_info_text {
  font-size: 16px;
  font-weight: 600;
  color: #3a3a3a;
  text-align: center;
}

.review_team_meet_link_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review_team_meet_link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: #707070;
  transition: all 0.5s ease;
}

.review_team_meet_link:hover {
  color: #fc0307;
}

.review_team_meet_link_active {
  color: #23a455;
}

.review_team_meet_link_active:hover {
  color: #23a455;
}

.review_team_meet_link,
.review_team_meet_score_wrap {
  flex: 1;
  text-align: center;
}

.review_team_meet_link_img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.review_team_meet_link_title {
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review_team_meet_score_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.review_team_meet_score {
  font-size: 36px;
  font-weight: 900;
  color: #000000;
}

.review_team_meet_list_wrap {
  display: flex;
  align-items: baseline;
  border-top: 2px solid #adccf9;
  padding-top: 16px;
}

.review_team_meet_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.review_team_meet_item {
  margin-bottom: 8px;
}

.review_team_meet_item:last-child {
  margin-bottom: 0;
}

.review_team_meet_item_link {
  font-size: 16px;
  font-weight: 600;
  color: #707070;
  transition: all 0.5s ease;
}

.review_team_meet_goal_time {
  font-size: 16px;
  font-weight: 500;
  color: #3a3a3a;
}

.review_stat_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.review_team_meet_stat_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review_team_meet_stat_value_wrapper {
  width: 100%;
}

.review_team_meet_stat_value_top_wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 8px;
}

.review_team_meet_stat_value_top_text {
  font-size: 16px;
  font-weight: 500;
  color: #3a3a3a;
  margin: 0;
}

.review_team_meet_stat_value_top_text_left {
  text-align: left;
}

.review_team_meet_stat_value_top_text_right {
  text-align: right;
}

.review_team_meet_stat_value_top_title {
  font-size: 16px;
  font-weight: 700;
  color: #3a3a3a;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
}

.review_team_meet_stat_value_bottom_wrap {
  position: relative;
  height: 4px;
  overflow: hidden;
  background-color: #f7f5ea;
  width: 100%;
}

.review_team_meet_stat_value_bottom_accent_wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.review_team_meet_stat_value_bottom_accent_left {
  left: 0;
  background-color: #aa2b4a;
}

.review_team_meet_stat_value_bottom_accent_right {
  right: 0;
  background-color: #006;
}

.stat_table_wrapper {
  overflow: hidden;
  border: 1px solid #808080;
}

.stat_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.stat_table_wrap::-webkit-scrollbar {
  height: 4px;
}

.stat_table_wrap::-webkit-scrollbar-thumb {
  background-color: #006;
}

.stat_table_wrap::-webkit-scrollbar-track {
  background-color: #f7f5ea;
}

.stat_table {
  width: 100%;
  table-layout: fixed;
}

.stat_table_head_line {
  background-color: #006;
}

.stat_table_head_point {
  padding: 8px;
}

.stat_table_head_point_text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.stat_table thead td:nth-child(1) p {
  text-align: left;
}

.stat_table_body_line {
  background-color: #f7f5ea;
  border-bottom: 1px solid #808080;
  transition: all 0.5s ease;
}

.stat_table_body_line:hover {
  background-color: #f0f0f0;
}

.stat_table_body_line:last-child {
  border-bottom: none;
}

.stat_table_body_line_active {
  background-color: #f0f0f0;
}

.stat_table_body_point {
  padding: 8px;
}

.stat_team_name_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #707070;
  transition: all 0.5s ease;
}

.stat_team_name_link:hover {
  color: #ffd100;
}

.stat_team_name_link_active {
  color: #aa2b4a;
}

.stat_team_name_link_active:hover {
  color: #aa2b4a;
}

.stat_team_name_link_img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.stat_team_name_link_title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat_table_body_point_text {
  font-size: 16px;
  font-weight: 500;
  color: #3a3a3a;
  text-align: center;
}

.match_story_img_wrap {
  height: auto;
  overflow: hidden;
}

.match_story_text {
  font-size: 11px;
  font-weight: 500;
  color: #3a3a3a;
}

@media screen and (min-width: 1024px) {
  .review_team_meet_info_text {
    font-size: 18px;
  }

  .review_team_meet_link_img {
    width: 90px;
    height: 90px;
  }

  .review_team_meet_link_title {
    font-size: 20px;
  }

  .review_team_meet_score {
    font-size: 40px;
  }

  .review_team_meet_item_link {
    font-size: 18px;
  }

  .review_team_meet_goal_time {
    font-size: 18px;
  }

  .review_stat_wrapper {
    display: flex;
  }

  .review_stat_content_wrap {
    width: 70%;
  }

  .review_team_meet_stat_value_top_text {
    font-size: 18px;
  }

  .review_team_meet_stat_value_top_title {
    font-size: 18px;
  }

  .review_stat_aside_wrap {
    position: sticky;
    width: 30%;
    top: 20px;
  }

  .stat_table_head_line td:first-child,
  .stat_aside_table_body_line td:first-child {
    position: sticky;
    left: 0;
    z-index: 5;
    width: 110px;
  }

  .match_story_text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) {
  .review_team_meet_wrapper {
    gap: 24px;
    padding: 24px;
  }

  .review_team_meet_link_wrap {
    gap: 24px;
  }

  .review_team_meet_link {
    gap: 16px;
  }

  .review_team_meet_list_wrap {
    padding-top: 24px;
  }

  .review_stat_wrapper {
    gap: 24px;
  }

  .review_team_meet_stat_wrapper {
    gap: 24px;
  }

  .review_team_meet_stat_value_top_wrap {
    margin-bottom: 16px;
  }

  .review_team_meet_stat_value_bottom_wrap {
    height: 6px;
  }

  .stat_table_head_line td:first-child,
  .stat_aside_table_body_line td:first-child {
    position: sticky;
    left: 0;
    z-index: 5;
    width: 150px;
  }
}

@media screen and (min-width: 1440px) {
  .review_team_meet_info_text {
    font-size: 20px;
  }

  .review_team_meet_link_img {
    width: 110px;
    height: 110px;
  }

  .review_team_meet_link_title {
    font-size: 22px;
  }

  .review_team_meet_score {
    font-size: 44px;
  }

  .review_team_meet_item_link {
    font-size: 20px;
  }

  .review_team_meet_goal_time {
    font-size: 20px;
  }

  .review_team_meet_stat_value_top_text {
    font-size: 20px;
  }

  .review_team_meet_stat_value_top_title {
    font-size: 20px;
  }

  .match_story_text {
    font-size: 15px;
  }
}
