/** Shopify CDN: Minification failed

Line 47:0 Unexpected "<"
Line 96:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding: 0 20px;
}

.video-overlay h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.video-overlay p {
  font-size: 1.5rem;
}
<style>
.image-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.image-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.image-grid-item:hover img {
  transform: scale(1.1);
}
.image-grid-item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.image-grid-item:hover .overlay {
  opacity: 1;
}
@media (max-width: 768px) {
  .image-grid {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .image-grid {
    gap: 10px;
  }
}
</style>