.hero-winners-circle {
  background-image: url("../img/winners-circle-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  position: relative;
  margin-bottom: 0;
  padding: 60px;
  isolation: isolate;
}

.hero-winners-circle::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-winners-circle>h2 {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

@keyframes pushUp {
  from {
    transform: translateY(80px) scaleY(0.8);
    /* Initial position pushed down and scaled vertically */
    opacity: 0;
    /* Initial opacity set to 0 for a fade-in effect */
  }

  to {
    transform: translateY(0) scaleY(1);
    /* Final position at normal height and normal scale */
    opacity: 1;
    /* Final opacity set to 1 for full visibility */
  }
}

.hero-winners-circle>h1 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
  animation: pushUp 1.5s ease-out;
}

.btn-winners-circle {
  padding: 10px 15px;
  font-family: "KorolevMedium", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  fill: #1b325f;
  color: #1b325f;
  cursor: pointer;
  border: 1px solid #1b325f;
  transition: 0.3s ease, color 0.3s ease;
}

.btn-winners-circle:hover {
  background-color: #7b1222;
  border: 1px solid #fff;
  color: white;
}

.divider {
  display: flex;
  gap: 1em;
  align-items: center;
  position: relative;
}

.line {
  width: 100%;
  position: relative;
  margin-right: 5px;
  border-bottom: 1px #1b325f solid;
}

.star {
  width: 1em;
  height: 1em;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  color: #1b325f;
}

.pro-winners-header {
  display: flex;
  padding: 16px;
  width: 80%;
  margin-inline: auto;
  margin-block: 3em;
}

.pro-winners-header>* {
  flex: 1 1 33%;
  min-width: 20ch;
}

.pro-winners-header .title {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4em;
}

.pro-winners-wrapper {
  position: relative;
  max-width: 1200px;
}

.pro-winners {
  padding: 15px;
}

.pro-winners-wrapper i {
  height: 50px;
  width: 50px;
  background-color: white;
  color: black;
  text-align: center;
  font-size: 1.25rem;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.pro-winners-wrapper i:first-child {
  left: -10px;
}

.pro-winners-wrapper i:last-child {
  right: -10px;
}

.pro-winners-wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 4) - 16px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel .card {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  list-style: none;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 1em;
  text-align: center;
}

.card-content a {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  text-align: center;
  color: #b53253;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

.bullet.active {
  background-color: black;
}

.scholarship-winners-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.scholarship-winners {
  padding: 15px;
}

.topside-winners {
  display: flex;
  justify-content: space-around;
  gap: 1em;
  width: 100%;
  margin-inline: auto;
  margin-block: 2em;
}

.scholarship-winners-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5em;
}

.scholarship-winners-item h3 {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 300px;
  line-height: 1;
}

.scholarship-winners-item .content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  text-align: left;
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.scholarship-winners-item .content ul {
  margin-left: 2rem;
}

.scoresheet-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 7rem;
}

.scoresheet-wrapper>h2 {
  color: #120b32;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.scoresheets {
  gap: 1rem;
  columns: 2;
}

.scoresheets>a {
  text-decoration: none;
}

.btn-scoresheet {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-width: 200px;
  max-width: 100%;
  width: auto;
  gap: 1em;
  padding: 10px 15px;
  font-family: "KorolevBold", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #7b1222;
  color: white;
  cursor: pointer;
  border: none;
  margin-bottom: 1rem;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.btn-scoresheet:hover {
  background-color: white;
  color: #7b1222;
  outline: 1px solid #7b1222;
}

.btn-scoresheet>i {
  line-height: 1.5em;
}

@media (width <=900px) {
  .pro-winners-wrapper .carousel {
    grid-auto-columns: calc((100% / 3) - 16px);
  }
}

@media (width <=768px) {
  .pro-winners-header {
    flex-direction: column;
  }

  .topside-winners {
    flex-direction: column;
  }

  .scoresheet-flex {
    flex-direction: column;
  }

  .scoresheets {
    columns: 1;
  }
}

@media (width <=600px) {
  .pro-winners-wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 16px);
  }
}

@media (width <=500px) {
  .pro-winners-wrapper .carousel {
    grid-auto-columns: 100%;
  }
}
