/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:34 Unexpected "{"
Line 20:21 Expected identifier but found whitespace
Line 20:23 Unexpected "{"
Line 20:32 Expected ":"
Line 21:16 Expected identifier but found whitespace
Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 21:53 Expected ":"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
#shopify-section-{{ section.id }} {
    background-color: {{ section.settings.background_color }};
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    width: 100%;
  }

  .custom-spotlight-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .custom-spotlight-block {
    flex: 1 1 calc(25% - 20px);
    min-width: 250px;
    text-align: center;
  }

  .custom-spotlight-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .custom-spotlight-block a:hover img {
    transform: scale(1.03);
  }

  @media (max-width: 749px) {
    .custom-spotlight-block {
      flex: 1 1 100%;
    }
  }