/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 44:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.featured-hover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.featured-hover-tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.featured-hover-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.featured-hover-tile:hover img {
  transform: scale(1.05);
}
.featured-hover-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 1rem;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.featured-hover-tile:hover .featured-hover-caption {
  opacity: 1;
}
</style>