/** Shopify CDN: Minification failed

Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 29:20 Unexpected "{"
Line 29:29 Expected ":"
Line 37:20 Unexpected "{"
Line 37:29 Expected ":"
Line 44:20 Unexpected "{"
Line 44:29 Expected ":"
Line 48:20 Unexpected "{"
Line 48:29 Expected ":"
... and 4 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:image-social-grid (INDEX:21) */
#shopify-section-{{ section.id }} .image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
  }

  #shopify-section-{{ section.id }} .image-grid__item {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    line-height: 0; /* eliminates inline-block gap */
  }

  #shopify-section-{{ section.id }} .image-grid__img {
    display: block;
    object-fit: cover;
    /* aspect-ratio: 1 / 1; */
    transition: transform 0.4s ease;
  }

  #shopify-section-{{ section.id }} .image-grid__item:hover .image-grid__img {
    transform: scale(1.04);
  }

  #shopify-section-{{ section.id }} .image-grid__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f4f4f4;
  }

  #shopify-section-{{ section.id }} .image-grid__label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
    pointer-events: none;
  }

  @media screen and (max-width: 749px) {
    #shopify-section-{{ section.id }} .image-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
/* END_SECTION:image-social-grid */