.collection-highlight {
  border-top: 1px solid var(--color-secondary-light-grey-200);
  overflow: hidden;
  padding: 80px 0;
}

.collection-highlight__image-wrapper {
  height: 100%;
  overflow: hidden;
  order: 3;

  @media (min-width: 1024px) {
    order: 2;
  }
}

.collection-highlight__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 382/255;

  @media (min-width: 1024px) {
    aspect-ratio: 472/315;
  }

}

.collection-highlight__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.collection-highlight__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  order: 2;
  margin-bottom: 40px;

  @media (min-width: 1024px) {
    justify-content: center;
    margin-bottom: 0;
  }
}

.collection-highlight__subtitle {
  font-size: 12px;
  font-family: var(--font-secondary);
  color: var(--color-secondary-dark-grey-300);
  margin-bottom: 6px;

  @media (min-width: 1024px) {
      font-size: 10px;
  }
}

.collection-highlight__title-text {
  margin-bottom: 40px;

  @media (min-width: 1024px) {
    margin-bottom: 0;
  }
}

.collection-highlight__cta {
  font-size: 12px;

  @media (min-width: 1024px) {
    font-size: 14px;
  }
}

.collection-highlight__cta span {
  margin-top: 3px;
}