.section_hero {
  background-image: url("../images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 112px 0;
}

.hero_container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  display: flex;
  align-items: center;
}

.hero_title {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  width: 75%;
}

.hero_link {
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  border-radius: 5px;
  display: inline-flex;
  background: #de0404;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-top: 20px;
  flex-direction: row-reverse;
  column-gap: 10px;
  align-items: center;
  transition: ease 0.5s;
}

.hero_link:hover {
  background: #ef4623;
}

.hero_link_img {
  width: 20px;
  height: 20px;
}

.block_home_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.events_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.events_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-radius: 5px;
  background-color: #191a1d;
  border: 1px solid #3c3f46;
  padding: 16px;
}

.events_team_meet_info_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.events_team_meet_info_text {
  font-size: 14px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-align: center;
  text-transform: uppercase;
}

.events_team_meet_link_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.events_team_meet_link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: #dddddd;

  transition: all 0.9s ease;
}

.events_team_meet_link:hover {
  color: #de0404;
}

.events_team_meet_link_active {
  color: #de0404;
}

.events_team_meet_link_active:hover {
  color: #de0404;
}
.events_team_meet_link,
.events_vs,
.events_team_meet_score_wrap {
  flex: 1;
  text-align: center;
}

.events_team_meet_link_img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.events_team_meet_link_title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.events_team_meet_score {
  font-size: 36px;
  font-weight: 900;
  color: #de0404;
}

.events_link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #de0404;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 auto;
  transition: all 0.9s ease;
}

.events_link:hover {
  background: #ef4623;
}

.home_results_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home_results_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.events_team_meet_score_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.results_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .section_hero {
    padding: 176px 0;
  }

  .hero_title {
    font-size: 28px;
  }

  .hero_link {
    font-size: 14px;
  }

  .hero_link_img {
    width: 25px;
    height: 25px;
  }

  .events_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .home_results_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .results_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .section_hero {
    padding: 200px 0;
  }

  .hero_title {
    font-size: 36px;
  }

  .home_results_wrapper {
    display: flex;
  }

  .home_results_wrap {
    width: 70%;
  }

  .hero_title {
    font-size: 32px;
  }

  .hero_link {
    font-size: 16px;
  }

  .hero_link_img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .section_hero {
    padding: 240px 0;
  }

  .hero_title {
    font-size: 36px;
  }

  .hero_link {
    padding: 16px 24px;
    font-size: 16px;
  }

  .hero_link_img {
    width: 30px;
    height: 30px;
  }

  .events_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .home_players_wrapper {
    padding: 32px 0;
  }

  .home_results_wrapper {
    gap: 24px;
  }

  .home_results_list {
    gap: 24px;
  }

  .results_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .section_hero {
    padding: 264px 0;
  }

  .hero_title {
    font-size: 42px;
  }

  .hero_link {
    font-size: 18px;
  }

  .hero_link_img {
    width: 35px;
    height: 35px;
  }
}
