body {
  background-color: #736699;
  margin: 0;
  padding: 0;
}

.hero-awards {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero-awards img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-awards::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: -1;
}

.awards-list-wrapper {
  max-width: 900px;
}

.list-group-item {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  padding: clamp(12px, 2vw, 18px);
}

.awards-judge-section {
  padding: clamp(60px, 8vw, 100px) 20px;
}

.judge-container {
  max-width: 900px;
}

.awards-judge-heading {
  text-align: center;
  color: white;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 40px;
}

.judge-card {
  background: white;
  padding: clamp(20px, 4vw, 40px);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.judge-card .list-group-item {
  font-size: inherit;
}

.ranking-section {
  background: white;
  padding: clamp(50px, 6vw, 80px) 20px;
}

.ranking-image-container {
  max-width: 700px;
}

.ranking-img {
  width: 100%;
}

@media (max-width: 768px) {
  .hero-awards {
    min-height: 65vh;
  }

  .ranking-image-container {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .hero-awards {
    min-height: 75vh;
  }

  .list-group-item {
    font-size: 0.95rem;
  }

  .ranking-image-container {
    max-width: 95%;
  }

  .ranking-img {
    transform: scale(1.1);
  }
}
