/* v1.7.8 - keep every point-card spice count visible on narrow landscape screens */
.game-card.point .point-cost-top,
.official-card-slot .game-card.point .point-cost-top{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  grid-auto-rows:minmax(17px,1fr)!important;
  column-gap:2px!important;
  row-gap:2px!important;
  padding:4px 2px 3px!important;
  overflow:visible!important;
}
.game-card.point .point-cost-top.cost-count-1,
.official-card-slot .game-card.point .point-cost-top.cost-count-1{
  grid-template-columns:1fr!important;
}
.game-card.point .point-cost-top.cost-count-2,
.official-card-slot .game-card.point .point-cost-top.cost-count-2{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
.game-card.point .point-cost-chip,
.official-card-slot .game-card.point .point-cost-chip{
  box-sizing:border-box!important;
  width:100%!important;
  min-width:0!important;
  padding:1px 0!important;
  gap:2px!important;
  overflow:visible!important;
  white-space:nowrap!important;
}
.game-card.point .point-cost-chip .cube,
.official-card-slot .game-card.point .point-cost-chip .cube{
  width:clamp(10px,1.25vw,13px)!important;
  height:clamp(10px,1.25vw,13px)!important;
  flex:0 0 clamp(10px,1.25vw,13px)!important;
}
.game-card.point .point-cost-chip b,
.official-card-slot .game-card.point .point-cost-chip b{
  display:inline-block!important;
  min-width:12px!important;
  font-size:clamp(8px,1vw,11px)!important;
  line-height:1!important;
  font-weight:900!important;
  color:#241a14!important;
  letter-spacing:-.3px!important;
}
.game-card.point>.index{
  display:none!important;
}
@media (orientation:landscape) and (max-height:520px){
  .game-card.point .point-cost-top,
  .official-card-slot .game-card.point .point-cost-top{
    grid-auto-rows:minmax(15px,1fr)!important;
    padding:3px 1px 2px!important;
    gap:1px!important;
  }
  .game-card.point .point-cost-chip .cube,
  .official-card-slot .game-card.point .point-cost-chip .cube{
    width:10px!important;
    height:10px!important;
    flex-basis:10px!important;
  }
  .game-card.point .point-cost-chip b,
  .official-card-slot .game-card.point .point-cost-chip b{
    min-width:11px!important;
    font-size:8px!important;
  }
}
