/** Shopify CDN: Minification failed

Line 326:20 Unexpected "{"
Line 326:29 Expected ":"

**/
.gallery-showcase {
  position: relative;
  overflow: hidden;
}

.gallery-showcase .container,
.gallery-showcase .full-width {
  width: 100%;
}

.gallery-showcase .full-width {
  padding-inline: 2rem;
}

.gallery-showcase__wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gallery-gap, 2rem);
  align-items: stretch;
}

.gallery-showcase__featured {
  position: relative;
  overflow: hidden;
  border-radius: var(--gallery-radius, 24px);
}

.gallery-showcase__featured-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gallery-showcase__featured-media {
  position: absolute;
  inset: 0;
}

.gallery-showcase__featured-media img, .gallery-showcase__featured-media svg,
.gallery-showcase__featured-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform .7s cubic-bezier(.22,.61,.36,1),
    filter .35s ease;
}


.gallery-showcase__overlay {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 3rem;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.gallery-showcase__subheading {
  color: var(--text-color);
  line-height: 1;
}

.gallery-showcase__heading {
  margin: 0;
  color: var(--heading-color);
  line-height: 1.05;
}

.gallery-showcase__button {
  margin-top: .5rem;
}

.gallery-showcase__grid {
  position: relative;
  display: flex;
  gap: var(--gallery-gap, 2rem);
  overflow: hidden;
  flex: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.gallery-showcase__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--gallery-gap,2rem);
    flex-shrink: 0;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.gallery-showcase__column--offset {
  padding-top: 90px;
}

.gallery-showcase__item {
  position: relative;

  overflow: hidden;

  border-radius: var(--gallery-radius,24px);

  flex-shrink: 0;
}

.gallery-showcase__item-link {
  display: block;
}

.gallery-showcase__item-media {
  position: relative;
  aspect-ratio: var(--gallery-img-ratio);
}

.gallery-showcase__item-media::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.gallery-showcase__item img,
.gallery-showcase__item video,
.gallery-showcase__item .placeholder-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .7s cubic-bezier(.22,.61,.36,1),
    filter .35s ease;
}

.gallery-showcase.enable-hover .gallery-showcase__featured:hover img,
.gallery-showcase.enable-hover .gallery-showcase__featured:hover video,
.gallery-showcase.enable-hover .gallery-showcase__item:hover img,
.gallery-showcase.enable-hover .gallery-showcase__item:hover video {
  transform: scale(1.08);
}

.gallery-showcase__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 1;
}

.gallery-showcase__featured-media svg {
    background: var(--secondary-bg-color);
}

.gallery-showcase.enable-hover .gallery-showcase__item:hover::after {
  opacity: 1;
}

.gallery-showcase__featured:hover::after {
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.30) 45%,
      transparent 100%
    );
}

.gallery-showcase__overlay > * {
  position: relative;
  z-index: 2;
}

.gallery-showcase__button {
  display: flex;
  align-items: center;
}

.gallery-showcase__button .button,
.gallery-showcase__button .btn {
  width: fit-content;
}

.gallery-showcase__item .placeholder-svg path,
.gallery-showcase__featured .placeholder-svg path{
  background: rgba(var(--secondary-bg-color), .05);
}

.gallery-showcase__featured:focus-within,
.gallery-showcase__item:focus-within {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.gallery-showcase__featured,
.gallery-showcase__grid,
.gallery-showcase__column,
.gallery-showcase__item {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.gallery-showcase__featured img,
.gallery-showcase__featured video,
.gallery-showcase__item img,
.gallery-showcase__item video {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gallery-showcase__featured,
.gallery-showcase__grid {
    height: clamp(650px, 85vh, 900px);
}

.gallery-showcase__grid {
  isolation: isolate;
}

.gallery-showcase__column {
  position: relative;
}

.gallery-showcase__column > * {
  flex-shrink: 0;
}

.gallery-showcase video {
  object-fit: cover;
}

.gallery-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-showcase__grid,
.gallery-showcase__column {
  scrollbar-width: none;
}

.gallery-showcase__grid::-webkit-scrollbar,
.gallery-showcase__column::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1199px) {

  .gallery-showcase .full-width {
    padding-inline: 1.6rem;
  }

  .gallery-showcase__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }

  .gallery-showcase__featured,
  .gallery-showcase__grid {
    max-height: 450px;
  }

  .gallery-showcase__grid {
    gap: 1.2rem;
  }

  .gallery-showcase__column {
    gap: 1.2rem;
  }

  .gallery-showcase__column--offset {
    padding-top: 60px;
  }

  .gallery-showcase__overlay {
    left: 2.4rem;
    right: 2.4rem;
    bottom: 2.4rem;
  }
}

@media screen and (max-width: 767px) {

  .gallery-showcase .full-width {
    padding-inline: 1rem;
  }

  .gallery-showcase__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .gallery-showcase__featured {
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: unset;
  }

  .gallery-showcase__featured-media {
    position: absolute;
    inset: 0;
  }

  #shopify-section-{{ section.id }} .gallery-showcase__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

  .gallery-showcase__subheading {
    font-size: 1.2rem;
  }

  .gallery-showcase__heading {
    max-width: 100%;
  }

  .gallery-showcase__button {
    margin-top: .4rem;
  }

  .gallery-showcase__column {
    width: calc(50% - .5rem);
    gap: 1rem;
  }

  /* Hide third column */

  .gallery-showcase__column:nth-child(3) {
    display: none;
  }

  .gallery-showcase__column--offset {
    padding-top: 35px;
  }

  .gallery-showcase__item {
    border-radius: 18px;
  }

  .gallery-showcase.enable-hover .gallery-showcase__featured:hover img,
  .gallery-showcase.enable-hover .gallery-showcase__featured:hover video,
  .gallery-showcase.enable-hover .gallery-showcase__item:hover img,
  .gallery-showcase.enable-hover .gallery-showcase__item:hover video {
    transform: none;
  }

  .gallery-showcase__overlay {
  align-items: center;
  text-align: center;
}

.gallery-showcase__button {
  align-self: center;
}
}

@media (prefers-reduced-motion: reduce) {

  .gallery-showcase *,
  .gallery-showcase *::before,
  .gallery-showcase *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .gallery-showcase__column {
    transform: none !important;
  }
}

.gallery-mobile-overlay {
  display: none;
}

@media screen and (max-width: 768px) {
  .gallery-mobile-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Change 0.45 to make it darker/lighter */
    pointer-events: none;
    z-index: 1;
  }

  .gallery-showcase__overlay {
    z-index: 2;
  }

  @media screen and (max-width: 768px) {
  .gallery-showcase .container,
  .gallery-showcase .full-width {
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .gallery-showcase__wrapper,
  .gallery-showcase__featured,
  .gallery-showcase__grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}

}