/** Shopify CDN: Minification failed

Line 22:13 Expected identifier but found whitespace
Line 22:15 Unexpected "{"
Line 22:24 Expected ":"
Line 22:49 Expected ":"
Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 23:55 Expected ":"
Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
... and 6 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:four-image-collection-tags (INDEX:23) */
.beyours-collection-section {
  margin-top: {{ section.settings.margin_top }}px;
  margin-bottom: {{ section.settings.margin_bottom }}px;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.beyours-collection-heading {
  text-align: center;
  margin-bottom: 10px;
  font-size: calc(var(--font-heading-scale) * 2.8rem);
  font-weight: 400;
}

.beyours-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .beyours-collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.beyours-collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.beyours-collection-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

.beyours-collection-item:hover img {
  transform: scale(1.01);
}

.beyours-collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.1));
}

.beyours-collection-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  z-index: 2;
}
/* END_SECTION:four-image-collection-tags */