/* ============================================================
   Winners page — three stacked tiers (title, subtitle, name list).
   Plain vertical scroll, mobile-first; no slider / scroll-jacking.
   ============================================================ */

.winners-section {
  color: #ffffff;
  min-height: 100vh;

  /* Same gradient as the contest hero / slider. */
  background: #020f32;
  background: radial-gradient(
    circle,
    rgba(0, 99, 195, 1) 0%,
    rgba(0, 15, 50, 1) 83%,
    rgba(0, 15, 50, 1) 100%
  );
}

@media (min-width: 769px) {
  .winners-section {
    background: radial-gradient(
      circle,
      rgba(0, 99, 195, 1) 0%,
      rgba(0, 13, 69, 1) 83%,
      rgba(0, 13, 69, 1) 100%
    );
  }
}

/* Push content below the absolutely-positioned global nav. */
.winners {
  position: relative;
  padding: clamp(9rem, 20vh, 13rem) clamp(1.25rem, 5vw, 4rem)
    clamp(4rem, 10vh, 7rem);
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 9vh, 7rem);
}

/* --- One prize tier --- */

.winners-tier {
  text-align: center;
  padding-top: 70px;
}

.winners-tier-title {
  font-size: clamp(1.9rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 0;
  color: #ffffff;
}

.winners-tier-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  margin: 0.5rem 0 clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Winner names --- */

.winners-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 2rem;
  width: 100%;
  max-width: 900px;
}

.winner-name {
  font-size: clamp(15px, 4vw, 20px);
  line-height: 1.5;
  color: #ffffff;
}

/* On wider screens, the longer lists flow into multiple columns so
   the section doesn't become an endless single column. */
@media (min-width: 600px) {
  .winners-list--20 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .winners-list--50 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 769px) {
  .winners-list--20 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .winners-list--50 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --- ΦΙΞ ΕΛΛΑΣ badge --- */

.winners-fix-badge {
  display: block;
  margin: clamp(3rem, 8vh, 5rem) auto 0;
  width: clamp(70px, 9vw, 110px);
  height: auto;
}
