/** Shopify CDN: Minification failed

Line 59:0 Unexpected "}"

**/
.pokemon-calendar {
  display: grid;
  /* as many columns as will fit, each at least 120px wide */
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
   padding: 0 1rem;          /* space inside left/right */
  box-sizing: border-box;   /* include padding in the width */
}

.tile {
  /* remove any width:100% you may have added */
  /* allow the tile to shrink/grow within the grid cell */
  width: auto;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow .2s, transform .2s;
}

.tile img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
}

.tile .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
}

.tile .number {
  font-weight: bold;
}

.tile.unreleased img {
  filter: grayscale(100%);
  opacity: 0.4;
}

.tile.released img {
  cursor: pointer;
  transition: transform 0.2s;
}

.tile.released img:hover {
  transform: scale(1.05);
}

}
.tile:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.filters {
  position: sticky;
  top: 0;
  background: #fff;
  padding: .5rem 0;
  z-index: 10;
}
