/** Shopify CDN: Minification failed

Line 17:13 Unexpected "{"
Line 17:22 Expected ":"
Line 21:13 Unexpected "{"
Line 21:22 Expected ":"
Line 30:13 Unexpected "{"
Line 30:22 Expected ":"
Line 32:13 Unexpected "{"
Line 32:22 Expected ":"
Line 36:13 Unexpected "{"
Line 36:22 Expected ":"
... and 109 more hidden warnings

**/

  .section--{{ section.id }} .project-gallery__container {
    padding: 0 0 50px;
  }

  .section--{{ section.id }} .project-gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .section--{{ section.id }}.align-left .project-gallery__header-text { text-align: left; }

  .section--{{ section.id }}.align-center .project-gallery__header {
    position: relative;
    justify-content: center; 
  }
  .section--{{ section.id }}.align-center .project-gallery__header-text { 
    text-align: center; 
    flex: none; 
  }

  .section--{{ section.id }}.align-right .project-gallery__header { 
    justify-content: flex-end; 
    text-align: right; 
  }
  .section--{{ section.id }}.align-right .project-gallery__header-text { 
    text-align: right; 
  }

  .section--{{ section.id }} .project-gallery__subtitle {
      text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
    text-align: center;
    position: relative;
  }



  .section--{{ section.id }} .project-gallery__title {
    margin: 0;
    font-size: calc(var(--heading-font-size-scale-factor, 1) * 32px);
    color: #1a1a1a;
    line-height: 1.2;
  }

  .section--{{ section.id }} .project-gallery__view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    white-space: nowrap;
  }

  .section--{{ section.id }} .project-gallery__view-all-btn:hover {
    border-bottom-color: #1a1a1a;
  }

  .section--{{ section.id }}.align-center .project-gallery__view-all-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .section--{{ section.id }} .project-gallery__grid {
    display: grid;
    gap: 24px;
  }

  .section--{{ section.id }}.grid-desktop-2 .project-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .section--{{ section.id }}.grid-desktop-3 .project-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .section--{{ section.id }}.grid-desktop-4 .project-gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .section--{{ section.id }}.grid-desktop-5 .project-gallery__grid { grid-template-columns: repeat(5, 1fr); }
  .section--{{ section.id }}.grid-desktop-6 .project-gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .section--{{ section.id }} .project-gallery__card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

  .section--{{ section.id }} .project-gallery__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }

  .section--{{ section.id }} .project-gallery__images-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; 
    overflow: hidden;
  }

  .section--{{ section.id }} .project-gallery__img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .section--{{ section.id }} .project-gallery__img-slide.is-hidden {
    display: none;
  }

  .section--{{ section.id }} .project-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .section--{{ section.id }} .project-gallery__card:hover .project-gallery__image {
    transform: scale(1.05);
  }

  .section--{{ section.id }} .project-gallery__card-content {
    padding: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .section--{{ section.id }} .project-gallery__card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .section--{{ section.id }} .project-gallery__modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .section--{{ section.id }} .project-gallery__modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  .section--{{ section.id }} .project-gallery__modal-image-container {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .section--{{ section.id }} .project-gallery__modal-overlay.is-open .project-gallery__modal-image-container {
    transform: scale(1);
  }
  .section--{{ section.id }} .project-gallery__modal-image-container img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
  }
  .section--{{ section.id }} .project-gallery__modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: transform 0.2s ease;
  }

  .section--{{ section.id }} .project-gallery__modal-close:hover { transform: rotate(90deg); }
  .section--{{ section.id }} .project-gallery__modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10;
  }

  .section--{{ section.id }} .project-gallery__modal-nav:hover { background: rgba(255, 255, 255, 0.25); }
  .section--{{ section.id }} .project-gallery__modal-nav--prev { left: 20px; }
  .section--{{ section.id }} .project-gallery__modal-nav--next { right: 20px; }
  .section--{{ section.id }} .project-gallery__modal-nav.is-disabled { opacity: 0.3; pointer-events: none; }

  @media (max-width: 1024px) {
    .section--{{ section.id }} .project-gallery__grid { 
      grid-template-columns: repeat(3, 1fr); 
      gap: 20px;
    }
  }

  @media (max-width: 767px) {
    .section--{{ section.id }} { padding: 30px 0; }
    .section--{{ section.id }} .project-gallery__container { padding: 0; }
    
  
    .section--{{ section.id }} .project-gallery__header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      margin-bottom: 24px;
    }
    .section--{{ section.id }} .project-gallery__header-text {
      text-align: center !important;
      flex: none !important;
    }
    .section--{{ section.id }}.align-center .project-gallery__view-all-btn,
    .section--{{ section.id }}.align-left .project-gallery__view-all-btn,
    .section--{{ section.id }}.align-right .project-gallery__view-all-btn {
      position: static;
      transform: none;
      margin-top: 12px;
    }

    h2.project-gallery__title.heading--h2 {
    font-size: 30px;
    margin: 10px 0;
}

    .section--{{ section.id }} .project-gallery__title { font-size: 26px; }
    .section--{{ section.id }} .project-gallery__grid {
      display: flex !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory !important;
      -webkit-overflow-scrolling: touch !important;
      gap: 16px !important;
      padding-left: 20px;
      padding-right: 20px;
      scroll-padding-left: 20px;
      -ms-overflow-style: none;
      scrollbar-width: none;
      cursor: grab;
    }
    .section--{{ section.id }} .project-gallery__grid::-webkit-scrollbar { display: none; }
    
    
    .section--{{ section.id }} .project-gallery__card {
      flex-shrink: 0 !important;
      scroll-snap-align: start !important;
      width: 75vw; 
      min-width: 260px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }


    .section--{{ section.id }} .project-gallery__card:hover {
      transform: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .section--{{ section.id }} .project-gallery__card:hover .project-gallery__image {
      transform: none;
    }

    .section--{{ section.id }} .project-gallery__card-content {
      padding: 14px 16px;
    }
    .section--{{ section.id }} .project-gallery__card-title {
      font-size: 15px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .section--{{ section.id }} .project-gallery__modal-image-container {
      max-height: calc(85vh - 100px);
      margin-bottom: 80px; 
    }

    .section--{{ section.id }} .project-gallery__modal-nav {
      top: auto;
      bottom: 20%;
      transform: none;
      width: 44px;
      height: 44px;
    }

    .section--{{ section.id }} .project-gallery__modal-nav--prev {
      left: calc(50% - 54px); 
      right: auto;
    }

    .section--{{ section.id }} .project-gallery__modal-nav--next {
      left: calc(50% + 10px); 
      right: auto;
    }
    .align-center .project-gallery__view-all-btn{
        position:relative;
    }
    .project-gallery{
        padding:35px 0;
    }
  }