/** Shopify CDN: Minification failed

Line 47:2 Unexpected "1st"
Line 81:3 Expected "}" to go with "{"

**/
.collection-feature-grid {
  display: flex;
  gap: 110px;
  justify-content: space-between;
  padding: 40px 0;
}

.collection-block {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.collection-image {
  position: relative;
  padding-top: 170%;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  background-repeat: no-repeat;
    background-size: 100% 100%; 
}

.collection-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 700;
  color: black;
  background:transparent;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: var(--trans, color .4s ease 0s);
}
.collection-title:hover{
  color: #BCCEFB;
}
* 1st block - title in center (already default) */
.collection-feature-grid .collection-block:nth-child(1) .collection-title {
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 2nd block - title at top */
.collection-feature-grid .collection-block:nth-child(2) .collection-title {
  top: 20px;
  transform: translateX(-50%);
}

/* 3rd block - title at bottom */
.collection-feature-grid .collection-block:nth-child(3) .collection-title {
  top: auto;
  bottom: 20px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .collection-feature-grid {
    flex-direction: column;
    gap: 30px;
    margin: 0 62px;
  }

  .collection-image {
    padding-top: 120%; /* slightly reduced height for mobile */
  }

  .collection-title {
    font-size: 3rem;
    padding: 0.3rem 0.8rem;
    text-align: center;
    white-space: nowrap;
  }