/** Shopify CDN: Minification failed

Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 59:16 Expected identifier but found whitespace
Line 59:18 Unexpected "{"
Line 59:27 Expected ":"
Line 59:55 Expected ":"
Line 101:19 Expected identifier but found whitespace
Line 101:21 Unexpected "{"
Line 101:30 Expected ":"
... and 7 more hidden warnings

**/


/* CSS from section stylesheet tags */
.horizontal-image-links-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  justify-items: {{ section.settings.alignment }};
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .horizontal-image-links-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .horizontal-image-links-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .horizontal-image-links-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.horizontal-image-links-wrapper {
  max-width: 1330px;
  margin: auto;
  padding: 20px 0 70px;
  margin-bottom: 40px;
  border-bottom: 1px solid #008080;
}
.image-item {
  text-align: center;
  position: relative;
}

.image-item img {
  width: 100%;
  border-radius: {{ section.settings.border_radius }}px;
  display: block;
}

.image-item-container {
    height: 250px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.image-item a {
  text-decoration: none;
}

[id*="horizontal_image_links"] .caption a {
  border: 2px solid #66B3B3;
  padding: 8px 20px;
  margin-top: 10px;
  display: inline-block;
  color: #66B3B3;
  background-color: transparent;
  transition: background-color 0.4s ease, color 0.4s ease;
  text-decoration: none;
}

[id*="horizontal_image_links"] .caption a:hover {
  background-color: #66B3B3;
  color: #fff !important;
  transform: scale(1.02); /* ~2px increase depending on element size */
}


.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: {{ section.settings.hover_overlay_color }};
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: {{ section.settings.border_radius }}px;
}

.image-item:hover .hover-overlay {
  opacity: {{ section.settings.hover_overlay_opacity }};
}