.collection-hero {
  max-width: 2200px;
  margin: 20px auto 10px;
}

.collection-hero .breadcrumb {
  margin: 0;
  padding: 1.5rem 0;
  row-gap: 0;
}

@media (min-width: 750px) {
  .collection-hero .breadcrumb {
    padding: 0.8rem 0;
    margin-bottom: 0.8rem;
  }
}

.collection-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  padding: 0;

  @media (min-width: 990px) {
    flex-direction: row;
    gap: 40px;
  }
}

.collection-hero__inner-text {
  padding-inline: 15px;
  max-width: 414px;

  @media (min-width: 990px) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-inline: 60px 0;
  }

  h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;

    @media (min-width: 990px) {
      font-size: 28px;
    }
  }

  p {
    margin: 0;
    margin-top: 7px;
    font-size: 12px;
  }
}

.collection-hero__description {
  .collection-hero__description-preview {
    @media (min-width: 990px) {
      display: none;
    }
  }

  .collection-hero__description-full {
    display: none;
    @media (min-width: 990px) {
      display: block;
    }
  }

  &.expanded {
    .collection-hero__description-preview {
      display: none;
    }

    .collection-hero__description-full {
      display: block;
    }
  }
}

.collection-hero__read-more {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  color: inherit;
  text-decoration: underline;
}

.collection-hero__inner-subcollections {
  display: flex;
  height: 100%;

  @media (min-width: 990px) {
    justify-content: flex-end;
    align-self: center;
  }

  ul {
    display: flex;
    padding-inline: 15px;
    margin: 0;
    gap: 8px;
    overflow-x: scroll;
    list-style: none;

    @media (min-width: 990px) {
      padding-inline: 0 60px;
      overflow-x: unset;
      width: 100%;
      justify-content: flex-end;
    }

    &::-webkit-scrollbar {
      display: none;
    }
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  li {
    flex: 0 0 108px;
    background-color: #f7f7f7;
  }

  a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: unset;
  }

  img,
  .placeholder-image {
    display: flex;
    width: 100%;
    height: 100%;
    max-height: 135px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
  }

  span {
    font-size: 12px;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 5px;
  }

  .placeholder-image {
    align-items: center;
    justify-content: center;
    padding: 15px;
    svg {
      width: 100%;
    }
  }
}
