/** Shopify CDN: Minification failed

Line 208:3 Unexpected "/"

**/
.collection-header {

}

.collection-header.collection-header__style-text-and-image {
  background: var(--beige);
  min-height: 300px;
}

.collection-header h4,
.collection-header h3,
.collection-header p {
  margin: 0;
}

/* Text Only */
.collection-header__text-only {
  padding: 40px 40px 10px;
  color: var(--black);
}

@media screen and (max-width: 768px) {
  .collection-header__text-only {
    padding: 30px 20px;
  }
}

/* Text and Image */
.collection-header__text-and-image {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: inherit;
  height: 100%;
  overflow: hidden;
}

.collection-header__text-and-image  .collection-header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px;
  color: var(--black);
  max-width: 300px;
  box-sizing: content-box;
  margin: auto;
}

.collection-header__text-and-image  .collection-header__image {
  aspect-ratio: 2.5/1;
  width: 100%;
  height: 100%;
}

.collection-header__text-and-image  .collection-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media screen and (max-width: 768px) {
  .collection-header__text-and-image {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }

  .collection-header__text-and-image .collection-header__content {
    padding: 40px 57px;
    gap: 10px;
  }
}

/* Text over Image */
.collection-header__style-text-over-image {
  min-height: 385px;
}

.collection-header__text-over-image {
  position: relative;
  min-height: inherit;
}

.collection-header__text-over-image  .collection-header__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection-header__text-over-image  .collection-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.collection-header__text-over-image .collection-header__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 40px;
  box-sizing: border-box;
  color: white;
  height: 100%;
  min-height: inherit;
}

@media screen and (max-width: 768px) {
  .collection-header__text-over-image .collection-header__content {
    align-items: center;
    text-align: center;
  }
}

/* ================ Image ================
.collection-header__image {
  height: 450px;
  position: relative;
}

.collection-header__image-breadcrumbs {
  margin: 20px 0 30px;
}

.collection-header__image .page-width {
  height: 100%;
}

.collection-header__image-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}

.collection-header__image-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.collection-header__image-title {
  margin: 0;
  color: white;
}

@media screen and (max-width: 1050px) {
  .collection-header__image-container svg {
    width: 300px;
    height: auto;
  }
}

@media screen and (max-width: 850px) {
  .collection-header__image-container svg {
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .collection-header__image {
    height: 215px;
  }

  .collection-header__image-container svg {
    width: 185px;
  }

  .collection-header__image-container svg:nth-child(2) {
    display: none;
  }

  .collection-header__image-breadcrumbs {
    margin: 20px 0;
  }
}

/*================ Text ================*/
.collection-header__text-breadcrumbs {
  margin: 20px 0;
}

.collection-header__text-title {
  margin: 0 0 20px;
  color: var(--mossy);
} */