/** Shopify CDN: Minification failed

Line 68:75 Unexpected "{"

**/
@media screen and (max-width: 749px) {
  .media-list .grid__item:only-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .media-list .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item, 
  .media-list .slider--mobile.grid--peek.grid--1-col-tablet-down .grid__item {
    width: calc(100% - var(--grid-mobile-horizontal-spacing) - 10rem);
  }
}
 
@media screen and (max-width: 989px) {
  .media-list .slider.slider--tablet {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 989px) {
  .media-list .slider--tablet.product-grid {
    scroll-padding-left: 1.5rem;
  }
}
 
.media-list__title .title + .media-list__description {
  margin-top: 1rem;
}
 
@media screen and (min-width: 990px) { 
  .media-list__title.title-wrapper--self-padded-tablet-down {
    padding: 0 5rem;
  }
 
  .media-list slider-component:not(.page-width-desktop) {
    padding: 0;
  }

  .media-list--full-width slider-component:not(.slider-component-desktop) {
    padding: 0 1.5rem;
    max-width: none;
  }
}

.media-list slider-component .slider-buttons .slider-counter {
  display: none;
}

@media screen and (min-width: 990px) {
  .media-list slider-component .slider {
    margin-top: 0;
    margin-bottom: 0;
  }

  .media-list slider-component .slider:not(.slider--desktop) {
    justify-content: center;
  }
}

.media-list__media.media--hover-effect > img:only-child {
  transition: transform var(--duration-long) ease;
}

.media-list__media.media--hover-effect:hover > img:first-child:only-child, {
  transform: scale(1.03);
}

.media-list__media.media--hover-effect:hover > img:first-child:not(:only-child) {
  opacity: 0;
}

.media-list__media.media--hover-effect:hover > img + img {
  opacity: 1;
  transition: transform var(--duration-long) ease;
  transform: scale(1.03);
}

.media-list__media .media__content {
  position: absolute;
  top: unset;
  bottom: 1rem;
  left: 50%;
  width: auto; /* Fallback */
  width: max-content;
  max-width: calc(100% - 4rem);
  height: auto;  
  transform: translateX(-50%);
  padding: 1rem 1rem;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  border-radius: 0.5rem;
  text-align: center;
}

.media-list__media .media__title {
  margin: 0;
}

.media-list__media .media__text {
  line-height: 1.2;
}

.media-list__media .media__text:not(:first-child) {
  margin-top: 0.5rem;
}
