/** Shopify CDN: Minification failed

Line 53:16 Expected identifier but found whitespace
Line 53:18 Unexpected "{"
Line 53:27 Expected ":"
Line 53:78 Expected ":"
Line 54:19 Expected identifier but found whitespace
Line 54:21 Unexpected "{"
Line 54:30 Expected ":"
Line 54:84 Expected ":"
Line 59:18 Expected identifier but found whitespace
Line 59:20 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.chef-grid .grid { gap: 18px; }
.chef-grid .grid__item { padding: 6px; }
.chef-grid .card:hover { 
  box-shadow:0 6px 14px rgba(0,0,0,.08); 
  transform: translateY(-2px); 
  transition:.25s; 
}

/* Photo wrapper for zoom effect */
.chef-photo-wrapper {
  overflow: hidden;
}
.chef-grid .chef-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.chef-grid .card:hover .chef-photo {
  transform: scale(1.08);
}

@media screen and (max-width: 749px) {
  .chef-grid .chef-photo {
    height: 220px;
  }
}
.section--centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60vh;
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section--centered {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }