/* ============================================
   AWARDS PAGE — TAGLINE STRIP
   Same gradient bar as the stats strip,
   but a single centered heading.
   ============================================ */

.tagline-strip {
  position: relative;
  z-index: 3;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 18rem;
  padding: 4rem 6rem;

  background: linear-gradient(
    90deg,
    #00B4FF 0%,
    #8B5CF6 38%,
    #FF6B2D 100%
  );

  overflow: hidden;
}

.tagline-strip__text {
  margin: 0;
  max-width: 110rem;

  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.05em;
  text-align: center;
  color: #FFFFFF;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .tagline-strip {
    padding: 4rem 4rem;
    min-height: 16rem;
  }

  .tagline-strip__text {
    font-size: 4.2rem;
  }
}

@media (max-width: 600px) {
  .tagline-strip {
    padding: 3.5rem 2.4rem;
    min-height: 0;
  }

  .tagline-strip__text {
    font-size: 3rem;
  }
}