/** Shopify CDN: Minification failed

Line 152:3 Expected "}" to go with "{"

**/
.collection-scent-highlight__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Desktop layout */
@media screen and (min-width: 990px) {
  .collection-scent-highlight__grid {
    flex-direction: row;
    gap: 2rem;
  }

  .collection-scent-highlight__grid--reverse {
    flex-direction: row-reverse;
  }
}

/* Force column on mobile even when layout is reverse */
@media screen and (max-width: 989px) {
  .collection-scent-highlight__grid--reverse {
    flex-direction: column !important;
  }
}

@media screen and (min-width: 1200px) {
  .collection-scent-highlight__grid {
    gap: 3rem;
    padding-top: 3rem;
  }
}

.collection-scent-highlight__left {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 990px) {
  .collection-scent-highlight__left {
    width: 29%;
  }
}

.collection-scent-highlight__media--adapt,
.collection-scent-highlight__media--all-height {
  height: 37.6rem;
}

@media screen and (min-width: 990px) {
  .collection-scent-highlight__media--all-height {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
  }
}

.collection-scent-highlight__body {
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  font-family: 'Logic Monospace', monospace;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .collection-scent-highlight__body {
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
  }
}

@media screen and (min-width: 990px) {
  .collection-scent-highlight__body {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}

.collection-scent-highlight__body p {
  margin-top: 0;
}

.collection-scent-highlight__body p:last-child {
  margin-bottom: 5rem;
}

.collection-scent-highlight__container--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 1076px;
}

.collection-scent-highlight__subheading {
  font-family: 'Logic Monospace', monospace;
  font-style: italic;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 0.1rem;
}

.collection-scent-highlight__subheading p {
  margin: 0;
}

.collection-scent-highlight__title {
  font-family: 'Gelica', serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0.2rem;
  margin-top: 0.5rem;
}

.collection-scent-highlight__title p {
  margin: 0;
  margin-bottom: 3rem;
}

.collection-scent-highlight__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Default: stack text then image */
.collection-scent-highlight__text-col {
  order: 1;
}

.collection-scent-highlight__image-col {
  order: 2;
}

/* On desktop, respect layout direction */
@media screen and (min-width: 990px) {
  .collection-scent-highlight__text-col {
    order: initial;
  }

  .collection-scent-highlight__image-col {
    order: initial;
  }