/** Shopify CDN: Minification failed

Line 6:1 Unexpected "+"

**/
++ assets/component-collection-hero.css
.collection-hero {
  position: relative;
}

.collection-hero__media-wrapper {
  margin: 0 auto;
}

.collection-hero__media {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #111;
  min-height: unset;
}

.collection-hero__media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.78) 0%, rgba(12, 12, 12, 0.55) 42%, rgba(12, 12, 12, 0.25) 65%, rgba(12, 12, 12, 0) 82%);
}

.collection-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.collection-hero__content-inner {
  padding: clamp(2.4rem, 5vw, 4.8rem);
  padding-bottom: clamp(3.2rem, 6vw, 6rem);
  max-width: min(52rem, 60%);
  color: #fff;
  margin-left: 0;
}

.collection-hero__content-inner .collection-hero__title {
  color: inherit;
}

.collection-hero__content-inner .collection-hero__description {
  color: rgba(255, 255, 255, 0.85);
}

.collection-hero__content-inner .collection-hero__description.rte *:not(a) {
  color: inherit;
}

.collection-hero__content-inner .page-header {
  margin-bottom: 0;
}

.collection-hero__content--standalone {
  padding: clamp(2.4rem, 5vw, 4.8rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.collection-hero__content--standalone .collection-hero__description {
  color: rgba(var(--color-foreground), 0.6);
}

.collection-hero__content--standalone .page-header {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

/* Desktop: show content overlay, hide mobile content */
.collection-hero__content--mobile {
  display: none;
}

.collection-hero__content--desktop {
  display: flex;
}

@media screen and (max-width: 749px) {
  /* Mobile: hide desktop overlay, show mobile content below */
  .collection-hero__content--desktop {
    display: none;
  }

  .collection-hero__content--mobile {
    display: block;
    padding: .5rem 0 0;
  }

  .collection-hero__content--mobile .page-header {
    margin-bottom: 0;
  }

  .collection-hero__content--mobile .collection-hero__title {
    color: rgb(var(--color-foreground));
  }

  .collection-hero__content--mobile .collection-hero__description {
    color: rgba(var(--color-foreground), 0.6);
  }

  .collection-hero__media-wrapper {
    margin-bottom: 0;
  }
}
