/* =========================
   MOBILE FIXES
   Add this at the END of gbcstyle.css
   ========================= */

@media (max-width: 768px){

  /* Global spacing */
  .container{
    width: calc(100% - 24px);
  }

  .section{
    padding: 28px 0;
  }

  /* HERO */
  .hero{
    min-height: 88vh;
    text-align: left;
  }

  .heroVideo{
    object-position: center center;
  }

  .heroTint{
    background:
      linear-gradient(
        180deg,
        rgba(11,18,32,.82) 0%,
        rgba(11,18,32,.65) 50%,
        rgba(11,18,32,.75) 100%
      );
  }

  .heroInner{
    max-width: 100%;
    padding: 80px 0 40px;
  }

  .h1{
    font-size: 2rem;
    line-height: 1.12;
  }

  .h2{
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .lead{
    font-size: .98rem;
    line-height: 1.6;
  }

  .pill{
    white-space: normal;
    line-height: 1.45;
    font-size: .85rem;
  }

  /* BUTTONS */
  .btn{
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 13px 16px;
  }

  /* GRID FIXES */
  .grid2,
  .grid3,
  .grid4{
    grid-template-columns: 1fr !important;
  }

  /* TITLE ROW */
  .titleRow{
    align-items: flex-start;
    gap: 16px;
  }

  /* VENUE SECTION */
  .venueBand{
    width: 100%;
    border-radius: 16px;
  }

  .venueBand__inner{
    width: calc(100% - 24px);
  }

  .venueBand__title{
    font-size: 1.6rem;
    line-height: 1.2;
  }

  /* ABOUT / TEXT */
  .text-justify{
    text-align: left;
  }

  /* GAINS SECTION */
  .gbcGains__grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .gbcGains__title{
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .gbcGains__card{
    padding: 18px;
  }

  /* EXPO */
  .gbcExpo__headGrid{
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .gbcExpo__grid{
    grid-template-columns: 1fr !important;
  }

  .gbcExpo__media{
    height: 220px;
  }

  .gbcExpo__title{
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .gbcExpo__aside{
    width: 100%;
  }

  .gbcExpo__asideActions{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .gbcExpo__asideBtn{
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* EVENT CARDS */
  .eventGrid{
    grid-template-columns: 1fr !important;
  }

  .eventCard{
    padding: 18px;
  }

  /* FINAL CTA */
  #register .cardBlue{
    padding: 22px 18px !important;
  }

  /* TOPBAR NAV */
  .topbarRow{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav{
    justify-content: center;
    gap: 6px;
  }

  .topbarActions{
    justify-content: center;
  }

  /* Prevent overflow issues */
  img,
  video{
    max-width: 100%;
    height: auto;
  }

  body{
    overflow-x: hidden;
  }
}