.collection-hero {

  margin-bottom: 1.6rem;

  @media screen and (min-width: 1024px) {
    padding: 0;
  }

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

.collection-hero__inner {
  display: flex;
  flex-direction: column;

  @media screen and (min-width: 768px) {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  @media screen and (min-width: 1024px) {
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 1.6rem;
  }
}

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

  @media screen and (min-width: 768px) {
    padding-bottom: 0;
  }

  @media screen and (min-width: 1024px) {
    flex-direction: row;
  }
}

.collection-hero__text-wrapper {
  flex-basis: 100%;
  max-width: 100%;
  margin-top: 1.6rem;

  @media screen and (min-width: 1024px) {
    margin-top: 0;
  }
}

.collection-hero__title {
  font-family: 'Apris', sans-serif;
  font-size: 3.2rem;
  letter-spacing: normal;
  font-weight: 450;
  line-height: 120%;
  text-align: center;
  color: #2c2d2b;
  margin: 0 0 1.2rem;

  @media screen and (min-width: 1024px) {
    font-size: 4.2rem;
  }
}

.collection-hero__description {
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
}

.collection-hero__description p {
  margin: 0;
  font-size: 1.6rem;
  font-family: var(--font-wix-madefor-text);
  line-height: 150%;
  letter-spacing: -0.3px;
  text-align: center;
}

.collection-hero__description p  a{
  text-decoration: underline;
}

.collection-hero__description p  a:hover {
  color: #6f706e;
  text-decoration: underline;
  text-decoration-skip-ink: all;
}


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

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

  @media screen and (min-width: 768px) {
    padding: 4rem 2rem 4rem 0;
    flex-basis: 50%;
  }
}

.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: 767px) {
    height: 20rem;
  }

  @media screen and (min-width: 768px) {
    align-self: stretch;
    flex: 1 0 50%;
    margin-left: 3rem;
    min-height: 20rem;
  }
}
