/** Shopify CDN: Minification failed

Line 209:10 Expected identifier but found whitespace
Line 209:11 Unexpected "''"

**/
/* Section Multicolumn Images styles */

.multicolumn-images-section {
  padding: 0;
}

.multicolumn-images-row {
  display: flex;
  flex-direction: row;
  gap: 14px; /* Slightly reduced gap for all screens */
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 0 8px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
  align-items: stretch;
  /* Edge blending for mobile, similar to multicolumn */
  margin-left: calc(-1 * var(--section-padding-left-mobile, 24px));
  margin-right: calc(-1 * var(--section-padding-right-mobile, 24px));
  padding-left: var(--section-padding-left-mobile, 24px);
  padding-right: var(--section-padding-right-mobile, 24px);
}

.multicolumn-images-row::-webkit-scrollbar {
  display: none;
}

.multicolumn-image-card {
  position: relative;
  border-radius: 20px 100px 20px 20px; /* Top-left, top-right, bottom-right, bottom-left */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f5f5f5;
  z-index: 0; /* Ensure card is below overlays or other UI */
}

.multicolumn-image-card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.multicolumn-image-card__info {
  padding: 8px 32px 24px 32px; /* Reduce space above text inside cards */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Lower z-index so it doesn't overlap higher z content outside the card */
  pointer-events: auto;
}

.multicolumn-image-card__heading {
  font-size: 3.5rem; /* Bigger card number */
  font-weight: 700;
  color: #FFCA4E;
  margin-top: 0;
  margin-bottom: 0.01em; /* Even less space below heading */
}

.multicolumn-image-card__desc {
  font-size: 1.3rem; /* Reduced by 0.2rem */
  font-weight: 500;
  color: #414141; 
  margin: 0;
  margin-top: 0.005em; /* Even less space above description */
  letter-spacing: -0.02em; /* Tightly pack the text */
  line-height: 1.1; /* Reduced line spacing */
  max-width: 70%; /* Span 60% through the card */
  /* No text shadow */
}

.multicolumn-image-card__tagline {
  font-size: 3.5rem;
  font-weight: 400;
  color: #414141;
  padding-top: 0.08em; /* Less padding above */
  padding-bottom: 0.005em; /* Less padding below */
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.15;
  max-width: 100%; /* Allow tagline to use full width to avoid unnecessary newlines */
  white-space: normal; /* Allow wrapping only when needed */
}

.multicolumn-image-card:nth-child(even) .multicolumn-image-card__heading {
  color: #DC600E;
}

@media screen and (max-width: 749px) {
  .multicolumn-images-row {
    gap: 10px; /* Even smaller gap for mobile */
    margin-left: calc(-1 * var(--section-padding-left-mobile, 24px));
    margin-right: calc(-1 * var(--section-padding-right-mobile, 24px));
    padding-left: var(--section-padding-left-mobile, 24px);
    padding-right: var(--section-padding-right-mobile, 24px);
  }
  .multicolumn-images-row > .multicolumn-image-card:first-child {
    margin-left: 0;
    /* No extra padding-left, row handles edge spacing */
  }
  .multicolumn-images-row > .multicolumn-image-card:last-child {
    margin-right: 0;
  }
  .multicolumn-image-card__heading {
    font-size: 2.5rem; /* Bigger on mobile */
  }
  .multicolumn-image-card__desc {
    font-size: 1.1rem;
    margin-top: 0.002em; /* Reduce space above description on mobile */
  }
  .multicolumn-image-card__tagline {
    font-size: 2.5rem;
    padding-top: 0.12em;
    padding-bottom: 0.002em; /* Reduce space below tagline on mobile */
    max-width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .multicolumn-image-card {
    min-width: 176px;
    max-width: 229px;
  }
}

/* === Multicolumn Section Heading (copied from section-multicolumn.css) === */
.multicolumn-row-section__heading {
  margin: 0;
  text-align: left;
  white-space: normal;
  font-family: var(--font-heading-family, inherit);
  font-size: 2.1rem;
  font-weight: var(--font-heading-weight, 700);
  color: #414141;
  line-height: 1.08;
  position: relative;
  padding: 0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em !important;
}
.multicolumn-row-section__heading .multicolumn-row-heading-desktop {
  display: none;
}
.multicolumn-row-section__heading .multicolumn-row-heading-mobile {
  display: block;
}
@media screen and (min-width: 750px) {
  .multicolumn-row-section__heading {
    margin-bottom: 3rem;
    font-size: 4rem;
    text-align: left;
    line-height: 1.08;
  }
  .multicolumn-row-section__heading .multicolumn-row-heading-mobile {
    display: none;
  }
  .multicolumn-row-section__heading .multicolumn-row-heading-desktop {
    display: block;
  }
  .multicolumn-row-section__heading.desktop-h0 {
    font-size: 4.5rem !important;
  }
  .multicolumn-row-section__heading.desktop-h1 {
    font-size: 3.5rem !important;
  }
  .multicolumn-row-section__heading.desktop-h2 {
    font-size: 2.5rem !important;
  }
  .multicolumn-row-section__heading p {
    background: none;
  }
  .multicolumn-row-section__heading p:last-child {
    background: none;
  }
}
.multicolumn-row-section__heading p {
  display: inline;
  background: none;
  margin: 0;
  padding: 0;
  line-height: inherit;
  white-space: normal;
  position: relative;
  margin-bottom: 0;
  letter-spacing: -0.03em !important;
}
.multicolumn-row-section__heading p:last-child {
  position: relative;
  margin-bottom: 0;
}

/* Highlighted heading effect */
.multicolumn-row-heading-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.multicolumn-row-heading-highlight > * {
  position: relative;
  z-index: 2;
}
  content: '';
  position: absolute;
  left: -0.1em;
  right: -0.25em;
  bottom: -0.04em;
  height: 48%;
  background: #E0DCE9;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 750px) {
  .multicolumn-row-heading-highlight::before {
    height: 48%;
    bottom: -0.05em;
    left: -0.1em;
    right: -0.25em;
  }

}

/* Ensure overlays and slideshow buttons are above */
.multicolumn-image-card__overlay {
  z-index: 2;
}
.multicolumn-images-slideshow-buttons {
  z-index: 3;
}
