/** Shopify CDN: Minification failed

Line 46:0 Unexpected "}"

**/
@media(max-width:768px){
  .collection-list__content {
    display: grid;
    grid-template-columns: repeat({{ section.settings.thumbnail_columns_mobile }}, 1fr);
    text-decoration: none !important;
    gap: 15px;
    align-items: stretch;
    justify-items: stretch;
  }

  .collection__item {
    display: flex;
    text-decoration: none !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; /* Stretch to fill the container */
    height: 100%; /* Force consistent height */
    text-align: center;
    max-height: 300px; /* Force a uniform max height */
  }
}

  .collection__item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none !important;
    min-height: 40px;
    margin-top: auto;
    white-space: normal; /* Allow text to wrap */
    overflow: visible; /* Ensure text stays visible */
  }

  .collection__item img {
    object-fit: contain;
    text-decoration: none !important;
    width: 100%;
    height: auto;
    max-height: 100%; /* Adjust height for consistency */
  }
}
.collection__item-info a, .collection__item-info a:visited, .collection__item-info a:hover {
  text-decoration: none !important;
  color: inherit !important; /* Ensures no color change */
}