/** Shopify CDN: Minification failed

Line 16:13 Expected identifier but found whitespace
Line 16:15 Unexpected "{"
Line 16:24 Expected ":"
Line 114:16 Expected identifier but found whitespace
Line 114:18 Unexpected "{"
Line 114:27 Expected ":"

**/


/* CSS from section stylesheet tags */
/* --- General Styles --- */
.icon-blocks-section {
  background: {{ section.settings.bg_color }};
  padding: 60px 0;
  box-sizing: border-box;
}
.icon-blocks-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.icon-blocks-row::-webkit-scrollbar {
  display: none; /* Webkit browsers */
}

/* --- Block Styles --- */
.icon-block {
  flex: 0 0 200px;
  text-align: center;
  padding: 20px 10px;
  border-radius: 16px;
  display: flex; /* Use flex to ensure child link takes full height */
}

.icon-block-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%; /* Ensure link takes full width of parent */
}

.icon-block img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: grayscale(80%);
  transition: filter 0.3s;
}

.icon-block-title {
  font-size: 1.25rem;
  margin: 0 0 6px;
  color: #232323;
  font-weight: 600;
  /* Text wrapping for long words */
  overflow-wrap: break-word;
  word-break: break-word;
}

.icon-block-learn {
  color: #232323;
  font-size: 1rem;
  margin-top: auto; /* Magic: Pushes this element to the bottom */
  padding-top: 8px; /* Space between title and learn more */
  transition: color 0.2s;
}

/* --- Hover Effects --- */
.icon-block-link:hover img {
  filter: grayscale(0%);
}
.icon-block-link:hover .icon-block-learn {
  color: #007aff;
  text-decoration: underline;
}

/* --- Mobile Styles (max-width: 900px) --- */
@media (max-width: 900px) {
  .icon-blocks-section {
    padding: 30px 0;
  }
  .icon-blocks-row {
    /* VISUAL FIX: Add padding to prevent edge clipping */
    padding: 0 20px;
    gap: 15px; /* VISUAL FIX: Reduce gap between items */
    /* This makes the scroll snapping feel better on mobile */
    scroll-snap-type: x mandatory;
  }
  .icon-block {
    /* VISUAL FIX: Reduce the width of each item */
    flex: 0 0 125px;
    padding: 14px 5px;
    scroll-snap-align: start;
  }
  .icon-block img {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }
  .icon-block-title {
    /* VISUAL FIX: Slightly smaller font for better fit */
    font-size: 0.95rem;
    margin: 0;
    line-height: {{ section.settings.mobile_title_line_height }};
  }
  .icon-block-learn {
    font-size: 0.9rem;
  }
}