/** Shopify CDN: Minification failed

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

**/
.three-image-collections {
  background: #fafaf8;
  padding: 48px 0 24px;
}

.three-image-collections__header {
  margin-bottom: 28px;
}

.three-image-collections__title {
  margin: 0 0 10px;
  color: #101214;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.three-image-collections__subtitle {
  margin: 0;
  max-width: 760px;
  color: #7b8087;
  font-size: 1.5rem;
  line-height: 1.55;
}

.three-image-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.three-image-collections__item {
  min-width: 0;
}

.three-image-collections__card {
  position: relative;
  display: block;
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  background: #f3f3f3;
  isolation: isolate;
}

.three-image-collections__media {
  position: absolute;
  inset: 0;
}

.three-image-collections__image,
.three-image-collections__placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.three-image-collections__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16, 18, 20, 0.65) 0%,
    rgba(16, 18, 20, 0.42) 26%,
    rgba(16, 18, 20, 0.12) 55%,
    rgba(16, 18, 20, 0) 100%
  );
  z-index: 1;
}

.three-image-collections__card-title,
.three-image-collections__card-text,
.three-image-collections__eyebrow {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.three-image-collections__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 360px;
}

.three-image-collections__eyebrow {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

.three-image-collections__card-title {
  margin: 0 0 8px;
  font-size: clamp(2.6rem, 3vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.three-image-collections__card-text {
  margin: 0 0 16px;
  font-size: 1.45rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.three-image-collections__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #101214;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.three-image-collections__card:hover .three-image-collections__image {
  transform: scale(1.05);
}

.three-image-collections__card:hover .three-image-collections__button {
  transform: translateY(-1px);
}

@media screen and (max-width: 989px) {
  .three-image-collections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-image-collections__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 749px) {
  .three-image-collections {
    padding: 36px 0 20px;
  }

  .three-image-collections__header {
    margin-bottom: 20px;
  }

  .three-image-collections__subtitle {
    font-size: 1.4rem;
  }

  .three-image-collections__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .three-image-collections__item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .three-image-collections__card {
    min-height: 320px;
    border-radius: 20px;
  }

  .three-image-collections__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .three-image-collections__card-title {
    font-size: 2.8rem;
  }

  .three-image-collections__card-text {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .three-image-collections__button {
    min-height: 36px;
    padding: 0 16px;
    font-size: 1.05rem;
  }