/** Shopify CDN: Minification failed

Line 84:1 Expected "}" to go with "{"

**/
.collection-banner__content.color-scheme {
  padding: var(--gutter-sm, 20px);
}
.collection-banner__content.color-scheme h1 {
  padding-top: calc(4 * var(--space-unit));
}

.collection-banner__media {
  order: 2;
}

.collection-banner__heading {
  margin-inline-end: 5px;
}

.collection-banner__count {
  color: rgba(var(--heading-color)/0.6);
  font-size: 1.4rem;
  line-height: 1.4rem;
  white-space: nowrap;
}

.collection-banner__description-mobile {
  display: none;
}
@media (max-width: 768px) {
  .collection-banner__description-full {
    display: none;
  }
  .collection-banner__description-mobile {
    display: block;
  }
}

@media (min-width: 600px) {
  .collection-banner__content--with-media {
    padding-inline-end: calc(8 * var(--space-unit));
  }
  .collection-banner__content.color-scheme {
    padding: calc(10 * var(--space-unit));
  }
  .collection-banner__content.color-scheme h1 {
    padding-top: calc(2 * var(--space-unit));
  }
}
@media (min-width: 769px) {
  .collection-banner__content {
    width: 50%;
    min-width: 400px;
  }
  .collection-banner__content.color-scheme {
    padding: calc(12 * var(--space-unit));
  }
  .collection-banner__content-wide {
    width: 66%;
  }
}
@media (min-width: 1024px) {
  .collection-banner__content--with-media.text-start,
  .collection-banner__content--with-media.panel.text-start {
    padding-inline-end: 112px;
  }

@media (min-width: 769px) {
  /* Lock PLP banner to a consistent desktop height matching the Trains page reference:
     1080x600 image rendered at 50% of the row → row aspect ratio 3.6:1.
     Copy beyond ~567 characters (or a non-1080x600 image) will clip/stretch by design. */
  .cc-collection-banner .collection-banner {
    aspect-ratio: 3.6 / 1;
    overflow: hidden;
  }
  .cc-collection-banner .collection-banner > * {
    min-height: 0;
    max-height: 100%;
  }
  .cc-collection-banner .collection-banner__content--with-media {
    overflow: hidden;
  }
}