/** Shopify CDN: Minification failed

Line 90:12 Unexpected "{"
Line 90:21 Expected ":"
Line 91:16 Expected identifier but found whitespace
Line 91:18 Unexpected "{"
Line 91:27 Expected ":"
Line 91:53 Expected ":"
Line 92:19 Expected identifier but found whitespace
Line 92:21 Unexpected "{"
Line 92:30 Expected ":"
Line 92:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.store-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  @media screen and (max-width: 749px) {
    .store-locations-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .store-location-card {
    padding: 2rem;
    border: 0.1rem solid rgba(var(--color-foreground), 0.1);
    border-radius: var(--border-radius);
  }
  
  .location-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: rgba(var(--color-foreground), 0.04);
  }
  
  .location-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .location-name {
    margin-bottom: 1rem;
    font-size: 16pt;
    font-weight: 600;
  }
  
  .location-description {
    margin-bottom: 1.5rem;
    line-height: 1.75rem;
    font-size: 1.25rem;
  }
  
  .location-description p {
    margin: 0;
  }
  
  .location-address {
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-size: 10pt;
  }
  
  .location-address p {
    margin: 0.25rem 0;
  }
  
  .location-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }