/* =========================================
   CONFERENCE PAGE MOBILE FIX
   Add at END of this page <style>
   or gbcstyle.css
========================================= */

@media (max-width: 768px){

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

  .section{
    padding: 32px 0;
  }

  body{
    overflow-x: hidden;
  }

  /* HERO SECTION */
  #top{
    padding: 40px 0 !important;
    background-position: center center !important;
  }

  #top .grid2{
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  #top .reveal{
    order: 2;
  }

  #top .grid1{
    order: 1;
  }

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

  .h2{
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .lead{
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .pill{
    white-space: normal;
    line-height: 1.5;
    font-size: 0.86rem;
  }

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

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

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

  /* MEDIA CARD */
  .mediaBox{
    aspect-ratio: 4 / 3;
  }

  /* OBJECTIVE / BENEFITS CARDS */
  .card,
  .cardBlue{
    border-radius: 16px;
  }

  .card{
    padding: 16px;
  }

  /* FOCUS SECTION */
  #focus,
  #attend{
    padding: 50px 0;
    background-position: center center;
  }

  #focus .container,
  #attend .container{
    width: calc(100% - 24px);
  }

  #focus .h2,
  #attend .h2{
    font-size: 1.45rem;
    line-height: 1.25;
  }

  /* PILLS */
  #focus .pill,
  #attend .pill{
    margin-bottom: 8px;
    font-size: 0.82rem;
  }

  /* SCHEDULE TABLE */
  #schedule{
    overflow-x: auto;
  }

  #schedule table{
    min-width: 700px;
  }

  /* CONTACT */
  #contact .card,
  #contact .cardBlue{
    padding: 18px;
  }

  /* STATS */
  .stats{
    padding: 14px;
  }

  .stat .n{
    font-size: 1.3rem;
  }

  .stat .t{
    font-size: 0.68rem;
  }

  /* TEXT ALIGN */
  p{
    text-align: left !important;
  }

  /* IMAGES */
  img{
    max-width: 100%;
    height: auto;
  }

}