/** Shopify CDN: Minification failed

Line 156:0 Expected "}" to go with "{"

**/
.collection-hero__inner {
  display: flex;
  flex-direction: column;
}

.collection-hero--with-image .collection-hero__inner {
  margin-bottom: 0;
  padding-bottom: 2rem;
}

@media screen and (min-width: 750px) {
  .collection-hero.collection-hero--with-image {
    padding: calc(4rem + var(--page-width-margin)) 0 calc(4rem + var(--page-width-margin));
    overflow: hidden;
  }

  .collection-hero--with-image .collection-hero__inner {
    padding-bottom: 0;
  }
}

.collection-hero__text-wrapper {
  flex-basis: 100%;
}

@media screen and (min-width: 750px) {
  .collection-hero {
    padding: 0;
  }

  .collection-hero__inner {
    align-items: center;
    flex-direction: row;
    padding-bottom: 0;
  }
}

.collection-hero__title {
  margin: 2.5rem 0;
}

.collection-hero__title + .collection-hero__description {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .collection-hero__title + .collection-hero__description {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .collection-hero__description {
    max-width: 66.67%;
  }

  .collection-hero--with-image .collection-hero__description {
    max-width: 100%;
  }
}

.collection-hero--with-image .collection-hero__title {
  margin: 0;
}

.collection-hero--with-image .collection-hero__text-wrapper {
  padding: 5rem 0 4rem;
}

.collection-hero__image-container {
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}

@media screen and (max-width: 749px) {
  .collection-hero__image-container {
    height: 20rem;
  }
}

@media screen and (min-width: 750px) {
  .collection-hero--with-image .collection-hero__text-wrapper {
    padding: 4rem 2rem 4rem 0;
    flex-basis: 50%;
  }

  /* Allow Shopify's backend styles (color, font-size, etc.) to apply */
.collection-hero__description * {
  all: unset !important; /* Ensures that Shopify backend styles are not overridden */
}

/* Ensure text formatting applies from Shopify backend */
.collection-hero__description {
  font-size: inherit !important; /* Uses the size from Shopify backend */
  line-height: inherit !important;
  color: inherit !important;
  text-align: left !important;
  white-space: normal !important;
}

/* Restore paragraph spacing */
.collection-hero__description p {
  margin-bottom: 1.5rem !important;
}

/* Ensure bold, italics, and links are displayed correctly */
.collection-hero__description b,
.collection-hero__description strong {
  font-weight: bold !important;
}

.collection-hero__description i,
.collection-hero__description em {
  font-style: italic !important;
}

.collection-hero__description a {
  color: inherit !important;
  text-decoration: underline !important;
}

/* Allow Shopify's backend heading sizes to apply */
.collection-hero__description h1,
.collection-hero__description h2,
.collection-hero__description h3 {
  font-size: inherit !important;
  font-weight: bold !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* Ensure Shopify's backend colors and inline styles apply */
.collection-hero__description span[style],
.collection-hero__description p[style] {
  color: unset !important;
  font-size: unset !important;
  line-height: unset !important;
}

/* Remove text truncation or hidden overflow */
.collection-hero__description {
  max-width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
}
