/** Shopify CDN: Minification failed

Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 45:8 Expected identifier but found whitespace
Line 45:10 Unexpected "{"
Line 45:19 Expected ":"
Line 52:8 Expected identifier but found whitespace
Line 52:10 Unexpected "{"
Line 52:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.mosaic-image-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Adjust image size */
  gap: 0; /* No gap between images */
  margin-top: 20px;
  background-color: {{ section.settings.background_color }}; /* Apply background color from settings */
}

.mosaic-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.mosaic-image-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic-image-item__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for contrast */
  color: {{ section.settings.text_color }}; /* Apply text color from settings */
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

h2 {
  color: {{ section.settings.text_color }}; /* Apply text color to the section title */
  text-align: center; /* Ensure title is centered */
  margin-bottom: 20px; /* Space between title and images */
}