/* ============================================
   BATTLE PAGE — TICKETS PROMO
   Desktop: full-width card, tickets-promo.png as
            background (blur baked in), text on the LEFT.
   Mobile:  tickets-promo-mobile.png on top,
            dark text block below it.
   ============================================ */

.tickets-promo {
  padding: 0 10rem 12rem;
}

.tickets-promo__card {
  width: 100%;
  max-width: 148rem;
  margin: 0 auto;

  position: relative;
  overflow: hidden;
  border-radius: 3rem;
  min-height: 56rem;            /* tweak to match your image */

  display: flex;
  align-items: center;
  justify-content: flex-start;  /* text column on the left */

  background: url('../../img/bridge2026/tickets-promo.png') center left / cover no-repeat;
  background-color: var(--color-deep-space);
}

.tickets-promo__content {
  position: relative;
  z-index: 2;
  max-width: 62rem;
  padding: 6rem 4rem;
  margin-left: 8rem;            /* pull the block in from the left edge */
}

.tickets-promo__title {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 3rem;
}

.tickets-promo__text {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 4rem;
}

.tickets-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34rem;
  padding: 2rem 4rem;
  border-radius: 11.6rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: var(--color-white);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.tickets-promo__btn:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 1rem 3rem rgba(255, 107, 45, 0.35);
  filter: brightness(1.05);
}

/* Mobile image — hidden on desktop */
.tickets-promo__mobile-img {
  display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1280px) {
  .tickets-promo {
    padding: 0 6rem 10rem;
  }

  .tickets-promo__content {
    max-width: 54rem;
    padding: 5rem 3rem;
    margin-left: 4rem;
  }

  .tickets-promo__title {
    font-size: 4.6rem;
  }
}

/* MOBILE — image on top, text block below */
@media (max-width: 900px) {
  .tickets-promo {
    padding: 0 4rem 8rem;
  }

  .tickets-promo__card {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    border-radius: 2.4rem;

    background-image: none;
    background-color: #0A0E1A;
  }

  /* order flips the DOM sequence so the image comes first */
  .tickets-promo__mobile-img {
    display: block;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    order: -1;
  }

  .tickets-promo__content {
    max-width: 100%;
    padding: 3rem 3rem 4rem;
    margin-left: 0;
    order: 1;
  }

  .tickets-promo__title {
    font-size: 4rem;
    margin-bottom: 2rem;
  }

  .tickets-promo__text {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .tickets-promo__btn {
    width: 100%;
    min-width: 0;
    padding: 2rem 3rem;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .tickets-promo {
    padding: 0 2.4rem 6rem;
  }

  .tickets-promo__card {
    border-radius: 2rem;
  }

  .tickets-promo__title {
    font-size: 3.4rem;
  }

  .tickets-promo__content {
    padding: 2.4rem 2.4rem 3.2rem;
  }
}