/* ===== Mobile layout: centered but offset (tournament left, winner right) ===== */
@media (max-width: 900px){

  /* sections: full width but slightly shifted left overall */
  .year-section{
    width: 92%;
    margin: 0 auto;
  }

  /* SOLO then TEAM with a clear gap (they're already stacked in DOM) */
  .year-section.is-team{
    margin-top: 18px;
  }

  /* force 1 item per row (vertical list) */
  .tournaments-grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* each solo tournament entry keeps tournament + winner side-by-side */
  .titem{
    grid-template-columns: 1.2fr .8fr;
    gap: 12px;
    align-items: center;
  }

  /* "centered but a bit left" feel for the tournament card */
  .titem .tcard--tournament{
    justify-self: center;
    transform: translateX(-10px);
  }

  /* winner shifted to the right */
  .titem .tcard--winner{
    justify-self: center;
    margin-top: 0;              /* undo the desktop offset */
    transform: translateX(10px);
  }

  /* TEAM cards: keep the card slightly left, but winner name on the right */
  .year-section.is-team .tcard.neon-frame{
    transform: translateX(-10px);
  }
  .year-section.is-team .tcard-winner{
    justify-content: flex-end;
    text-align: right;
  }

  .tcard--winner{
  margin-top: 2%%;
  }
}
