/* NOMAD team identity placement override.
   Presentation only: move existing team-shirt icons toward the matchup center on desktop.
   Mobile keeps both HOME/AWAY shirt icons in the same left column.
   No feed, runtime, odds, signal, match parsing, or engine behavior changes. */

/* Desktop: HOME [shirt] — [shirt] AWAY */
@media (min-width:1025px){
  .match-main .teams.team-shirts-ready .team-shirt-home{
    justify-content:flex-end!important;
  }
  .match-main .teams.team-shirts-ready .team-shirt-away{
    justify-content:flex-start!important;
  }
  .match-main .teams.team-shirts-ready .team-shirt-home .team-shirt-name{
    order:1!important;
    text-align:right!important;
  }
  .match-main .teams.team-shirts-ready .team-shirt-home .team-shirt-icon{
    order:2!important;
  }
  .match-main .teams.team-shirts-ready .team-shirt-away .team-shirt-icon{
    order:1!important;
  }
  .match-main .teams.team-shirts-ready .team-shirt-away .team-shirt-name{
    order:2!important;
    text-align:left!important;
  }
}

/* Mobile: shirt | team name | score. HOME/AWAY shirts share the same vertical axis. */
@media (max-width:520px){
  .match-main .teams.mobile-team-shirts-ready .mobile-team-home,
  .match-main .teams.mobile-team-shirts-ready .mobile-team-away{
    grid-template-columns:22px minmax(0,1fr) 34px!important;
    overflow:visible!important;
  }

  .match-main .teams.mobile-team-shirts-ready .mobile-team-home .mobile-team-shirt-icon,
  .match-main .teams.mobile-team-shirts-ready .mobile-team-away .mobile-team-shirt-icon{
    grid-column:1!important;
    grid-row:1!important;
  }

  .match-main .teams.mobile-team-shirts-ready .mobile-team-home .mobile-team-name,
  .match-main .teams.mobile-team-shirts-ready .mobile-team-away .mobile-team-name{
    grid-column:2!important;
    grid-row:1!important;
    text-align:left!important;
  }

  .match-main .teams.mobile-team-shirts-ready .mobile-team-home .mobile-team-score,
  .match-main .teams.mobile-team-shirts-ready .mobile-team-away .mobile-team-score{
    grid-column:3!important;
    grid-row:1!important;
    overflow:visible!important;
  }
}

@media (max-width:360px){
  .match-main .teams.mobile-team-shirts-ready .mobile-team-home,
  .match-main .teams.mobile-team-shirts-ready .mobile-team-away{
    grid-template-columns:20px minmax(0,1fr) 30px!important;
  }
}
