/** Shopify CDN: Minification failed

Line 94:0 Unexpected "}"

**/
/* =============================================
   [New] Promotions Grid
   ============================================= */

.promotions-grid {
  padding: 60px 0;
}

.promotions-grid .page-width {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.promotions-grid .page-width > .shopify-block + .shopify-block {
  border-top: 1px solid rgba(19, 53, 45, 0.12);
  padding-top: 80px;
}

.promo-group__header {
  margin-bottom: 40px;
}

.promo-group__title {
  font-family: 'Stratos SemiLight', sans-serif !important;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #13352d;
  margin: 0;
}

.promo-group__copy {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  color: #566e65;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 600px;
}

.promo-group__copy p {
  margin: 0 0 8px;
}

.promo-group__copy p:last-child {
  margin-bottom: 0;
}

/* --- Grid --- */

.promo-group__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* --- Card --- */

@keyframes promoFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo-group__header {
  animation: promoFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.promo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: promoFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.promo-group__grid > .shopify-block:nth-child(1) .promo-card { animation-delay: 0.1s; }
.promo-group__grid > .shopify-block:nth-child(2) .promo-card { animation-delay: 0.2s; }
.promo-group__grid > .shopify-block:nth-child(3) .promo-card { animation-delay: 0.3s; }
.promo-group__grid > .shopify-block:nth-child(4) .promo-card { animation-delay: 0.4s; }
.promo-group__grid > .shopify-block:nth-child(5) .promo-card { animation-delay: 0.5s; }
.promo-group__grid > .shopify-block:nth-child(6) .promo-card { animation-delay: 0.6s; }
}

.promo-card__image-wrap {
  border-radius: 10px;
  overflow: hidden;
}

.promo-card__image,
.promo-card__placeholder {
  width: 100%;
  aspect-ratio: var(--card-aspect-ratio, 3 / 2);
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.promo-card__image-wrap:hover .promo-card__image {
  transform: scale(1.03);
}

.promo-card__placeholder {
  background: #e9eade;
}

/* --- Card Content --- */

.promo-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 20px;
}

.promo-card__text {
  flex: 0 0 auto;
  margin-bottom: 20px;
}

.promo-card__title {
  font-family: 'Stratos SemiLight', sans-serif !important;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #13352d;
  margin: 0;
}

.promo-card__copy {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  color: #566e65;
  line-height: 1.6;
  margin-top: 12px;
}

.promo-card__copy p {
  margin: 0 0 8px;
}

.promo-card__copy p:last-child {
  margin-bottom: 0;
}

.promo-card__details {
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-style: italic;
  color: #717f75;
  margin-top: 10px;
}

/* --- Button (pill, bottom-aligned) --- */

.promo-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Stratos SemiLight', sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
  background-color: #0b231d;
  color: #ffffff;
  border: 1px solid #0b231d;
}

.promo-card__btn:hover {
  background-color: transparent;
  color: #0b231d;
  border-color: #0b231d;
}

.promo-card__btn:focus-visible {
  outline: 2px solid #13352d;
  outline-offset: 2px;
}

/* --- Tablet: 3 → 2 columns --- */

@media (min-width: 769px) and (max-width: 1024px) {
  .promo-group__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile: single column --- */

@media (max-width: 768px) {
  .promotions-grid {
    padding: 40px 0;
  }

  .promotions-grid .page-width {
    gap: 50px;
  }

  .promotions-grid .page-width > .shopify-block + .shopify-block {
    padding-top: 50px;
  }

  .promo-group__title {
    font-size: 26px;
  }

  .promo-group__header {
    margin-bottom: 24px;
  }

  .promo-group__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Reduced motion --- */

@media (prefers-reduced-motion: reduce) {
  .promo-card__image {
    transition: none;
  }

  .promo-card__image-wrap:hover .promo-card__image {
    transform: none;
  }

  .promo-group__header,
  .promo-card {
    animation: none;
  }
}
