/** Shopify CDN: Minification failed

Line 22:24 Expected identifier but found whitespace
Line 22:26 Unexpected "{"
Line 22:35 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-two-column {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.left-column {
    width: 50%;
    padding: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: {{ section.settings.left_background_position }};
}

.right-column {
    width: 50%;
    padding: 40px;
  font-family: Source Sans Variable;
    line-height: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-two-column {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        width: 100%;
    }
}
h2.gallery_heading {
    font-family: "Jost", sans-serif;
    font-size: 45px;
    color: #aa824f;
    text-align: center;
}  
.gallery-grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  padding: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease;
    /* box-shadow: 0px 1px 5px #0000001a; */
    border: 1px solid #ccc;
    border-radius: 0;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
  .gallery-item video {
  width: 100%;
  height: 100%;
  max-height: 350px; 
  display: block;
}

@media screen and (max-width: 768px){
  .gallery-grid {
    grid-template-columns: auto auto !important;
}
}

@media screen and (max-width: 500px){
  .gallery-grid {
    grid-template-columns: auto !important;
}
}