.hero_container {
  min-height: 320px;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 20%,
      rgba(0, 0, 0, 0.5) 50%,
      #000 100%
    ),
    url("../img/sports/hero-bg.jpg") no-repeat center;
  background-size: cover;
}
.hero_heading-wrapper {
  width: 100%;
  padding: 0 1rem;
}
.hero_heading.two {
  background-color: var(--color-red);
  color: white;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  padding: 8px 40px;
  width: 100%;
}
.hero_text {
  font-size: 12px;
}

/* SPORTS LINKS */
.sports-links {
  padding: 3rem 1rem;
}
.sports-links__card {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 8px;
}

.sports-links__card.active .sports-links__card-text {
  background-color: var(--color-red);
}

.sports-links__card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  padding: 8px 40px;
  color: white;
  width: 100%;
  text-align: center;
  margin: 0;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ACHIEVEMENT */
.activities-achievements {
  padding: 3rem 1rem;
}
.activities-achievements__heading {
  color: var(--color-blue-new);
  text-transform: uppercase;
  text-align: center;
}

.activities-achievements__links {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1rem;
}

.activities-achievements__link {
  border: 1px solid #00000057;
  box-shadow: 0px 4px 4px 0px #00000040;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}

.activities-achievements__link.active {
  background-color: #a01c14;
  color: white !important;
}

.tournament {
  padding: 0rem 1rem;
}

.tournament-heading {
  font-size: 1.4rem;
  color: var(--color-blue-new);
  text-align: center;
}

.tournament-subheading {
  font-size: 1.2rem;
  color: var(--color-blue-new);
  padding: 0.6rem 0;
}

.tournament-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.6rem 0;
  flex-wrap: wrap;
}

.tournament-link {
  border: 1px solid #00000057;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.9rem;
}

.tournament-link.active {
  background-color: #a01c14;
  color: white !important;
}
.tournament-details {
  width: 100%;
  overflow-x: auto;
}

.tournament-details::-webkit-scrollbar {
  display: none;
}
.tournament-table {
  width: 100%;
  border-spacing: 8px;
  min-width: 1000px;
}

.tournament-table__head {
  background-color: #fff;
}

.tournament-table__head-cell,
.tournament-table__body-cell {
  padding: 0.6rem;
  /* text-align: center; */
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.tournament-table__body-cell.large-cell {
  text-wrap: nowrap;
}

.tournament-table__body-cell.min-h-66px {
  min-height: 66px;
}

.tournament-table__head-cell {
  background-color: #a01c14;
  color: #fff;
  font-size: 14px;
  border: none;
}

/* SPORTS DAY */
.sportsday-details__text {
  color: rgba(0, 0, 0, 0.6);
  line-height: 2;
  font-size: 1.1rem;
}

.sportsday-details__lists {
  display: flex;
  list-style: none;
  margin: 0;
  flex-direction: column;
  gap: 1rem;
}

.sports-day__wrapper {
  gap: 2rem;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-items: center;
  padding: 3rem 0;
}

.sports-day__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.sports-day__card-image {
  transition: scale 0.2s ease-in;
  object-fit: cover;
  width: 100%;
}

.sports-day__card:hover .sports-day__card-image {
  scale: 1.1;
}

.sports-day__card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #a01c14;
  padding: 8px 40px;
  color: white;
  width: 100%;
  text-align: center;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

@media (min-width: 576px) {
  .hero_heading.two {
    width: fit-content;
    padding: 8px 80px;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  }

  /* TOURNAMENT */
  .activities-achievements__links {
    margin-top: 3rem;
    margin-bottom: 1rem;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .tournament-heading {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }

  .tournament-link {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .sports-day__wrapper {
    justify-items: unset;
  }
}

@media (min-width: 992px) {
  .hero_heading.two {
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    padding: 8px 100px;
  }

  /* SPORTS LINK */
  .sports-links {
    padding: 4rem 1rem;
  }

  /* TOURNAMENT */
  .activities-achievements__links {
    grid-template-columns: repeat(3, 1fr);
  }

  .tournament-link {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }

  .sports-day__wrapper {
    justify-items: center;
    padding: 3rem 0;
  }
}

@media (min-width: 1200px) {
  /* SPORTS LINK */
  .sports-links {
    padding: 5rem 1rem;
  }
  /* TOURNAMENT */
  .activities-achievements__links {
    grid-template-columns: repeat(4, 1fr);
  }

  .sports-day__wrapper {
    grid-template-columns: repeat(3, 1fr);
    justify-items: unset;
    gap: 2rem;
  }
}
