/** Shopify CDN: Minification failed

Line 13:18 Expected identifier but found whitespace
Line 13:20 Unexpected "{"
Line 13:29 Expected ":"
Line 13:57 Expected ":"

**/

  .lb-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: {{ section.settings.border_radius }}px;
    overflow: hidden;
    background: rgb(var(--color-background));
  }

  .lb-left-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
  }

  .lb-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .lb-title {
    font-size: 45px;
    color: rgb(var(--color-foreground));
    margin: 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .lb-number {
    font-weight: 400;
    opacity: 0.4;
    color: rgb(var(--color-foreground));
    margin-left: 6px;
    margin: 0px;
    transition: opacity 0.3s ease;
  }

  .lb-list-item.active .lb-title,
  .lb-list-item:hover .lb-title {
    opacity: 1;
  }

  .lb-list-item.active .lb-number,
  .lb-list-item:hover .lb-number {
    opacity: 1;
  }

  .lb-right-image {
    position: relative;
    width: 100%;
    background: rgb(var(--color-background));
    overflow: hidden;
  }

  .lb-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
  }

  /* IMAGE RATIO SYSTEM */
  .lb-media {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .lb-media.adapt {
    height: auto;
  }

  .lb-media.square {
    padding-bottom: 100%;
  }

  .lb-media.portrait {
    padding-bottom: 130%;
  }

  .lb-media.landscape {
    padding-bottom: 70%;
  }

  .lb-media.square img,
  .lb-media.portrait img,
  .lb-media.landscape img {
    position: absolute;
    inset: 0;
  }

  .lb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .lb-image-caption {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    color: rgba(0,0,0,0.65);
    text-align: center;
    letter-spacing: 0.5px;
    z-index: 2;
  }

  /* Stacked pre-rendered images */
  .lb-stacked-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }

  .lb-stacked-img.active {
    opacity: 1;
  }

  /* Make sure .lb-media has a positioning context */
  .lb-media {
    position: relative;
  }

  /* adapt ratio: use the first image's natural aspect ratio as a min-height fallback */
  .lb-media.adapt {
    min-height: 300px;
  }

  @media screen and (max-width: 990px) {
    .lb-split-wrapper {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .lb-left-content {
      gap: 16px;
    }
    .lb-title {
      font-size: 30px;
    }
    .lb-list-item {
      gap: 6px;
    }
  }