/** Shopify CDN: Minification failed

Line 44:9 Expected identifier but found whitespace
Line 44:11 Unexpected "{"
Line 44:20 Expected ":"
Line 44:61 Expected ":"

**/


/* CSS from section stylesheet tags */
.section-margin {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  width: 94% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.custom-sports-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .custom-sports-cards__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .section-margin {
  margin-top: 20px !important;
  margin-bottom: 40px !important;
  width: 94% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

}

.custom-sports-cards__item {
  position: relative;
  overflow: hidden;
  height: {{ section.settings.card_height | default: 500 }}px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-sports-cards__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.custom-sports-cards__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.custom-sports-cards__item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.custom-sports-cards__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-sports-cards__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.custom-sports-cards__button {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  transition: background 0.3s ease;
}

.custom-sports-cards__button:hover {
  background: #f3f3f3;
}