/* v3.17: INT 100 hands show six cards on a single row instead of wrapping the sixth card. */
.battle-card-hand:has(> .battle-card:nth-child(6)) {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

@media (max-width: 760px) {
  .battle-card-hand:has(> .battle-card:nth-child(6)) {
    grid-template-columns: repeat(6, 180px) !important;
    grid-auto-flow: column;
    grid-auto-columns: 180px;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
