.channel-product-page {
  --page-banner-height: 55lvh;
  --page-banner-overlay: #00000030;
}

.channel-product-page .page-banner-page__bg img {
  object-position: center bottom;
}

.channel-product-page .page-banner__title,
.channel-product-page .page-banner__subtitle {
  color: var(--ui-color-white);
}

.channel-product-content {
  padding: 30px 0 75px;
}

.channel-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(360px, calc((100% - 96px) / 3)), 1fr));
  gap: 50px 48px;
  width: 100%;
  min-height: 0;
  grid-auto-rows: 1fr;
  align-items: center;
  justify-items: center;
  margin-top: clamp(28px, 3vw, 40px);
}

.channel-product-grid .product-card[data-io] {
  --news-card-shadow-rest: none;
  --io-extra-transition-property: box-shadow;
  --io-extra-transition-duration: 0.2s;
  --io-extra-transition-easing: ease;
  --io-extra-transition-delay: 0ms;
}

.channel-product-grid .product-card[data-io].is-shadow-visible {
  --news-card-shadow-rest: var(--ui-shadow-elevated);
}

@media (max-width: 1199.98px) {
  .channel-product-page {
    --page-banner-height: 35lvh;
  }
  
  .channel-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: 32px;
  }

  .channel-product-grid .product-card--aspect-fixed {
    aspect-ratio: auto;
    max-height: 350px;
  }

  .channel-product-grid .product-card__media {
    max-height: 300px;
  }
}