   /* Gallery section – 4 columns by default, responsive */
      .gallery-section {
        padding: 0px 0 60px;
        background: #0b0b0b;
        color: #fff;
      }
      .gallery-section .section-titles {
        margin-bottom: 40px;
      }
      
      /* 4 columns using CSS grid with auto-fill & minmax */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      
      .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        background: #1a1a1a;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        aspect-ratio: 4 / 3;
        cursor: default;
      }
      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
      }
      .gallery-item:hover img {
        transform: scale(1.04);
      }
      .gallery-item .overlay-gallery {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
      }
      .gallery-item:hover .overlay-gallery {
        opacity: 1;
      }
      .gallery-item .overlay-gallery span {
        font-size: 0.8rem;
        letter-spacing: 2px;
        color: #ccc;
        text-transform: uppercase;
      }
      .gallery-item .overlay-gallery h4 {
        font-weight: 600;
        margin: 4px 0 0;
        font-size: 1.2rem;
      }
      .gallery-btn-wrap {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
      }
      .gallery-btn {
        background: transparent;
        border: 1.5px solid rgba(255,255,255,0.25);
        color: #fff;
        padding: 12px 36px;
        border-radius: 10px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s ease;
        letter-spacing: 1px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .gallery-btn i {
        font-size: 1rem;
        transition: 0.3s;
      }
      .gallery-btn:hover {
        background: #fff;
        color: #0b0b0b;
        border-color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(255,255,255,0.08);
      }
      .gallery-btn.primary-btn {
        background: #fff;
        color: #0b0b0b;
        border-color: #fff;
      }
      .gallery-btn.primary-btn:hover {
        background: transparent;
        color: #fff;
        border-color: #fff;
      }

      /* Responsive breakpoints for 4 -> 2 -> 1 columns */
      @media (max-width: 992px) {
        .gallery-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 16px;
        }
      }
      @media (max-width: 576px) {
        .gallery-grid {
          grid-template-columns: 1fr 1fr;
          gap: 12px;
        }
        .gallery-btn {
          padding: 10px 24px;
          font-size: 0.9rem;
        }
      }
      @media (max-width: 400px) {
        .gallery-grid {
          grid-template-columns: 1fr;
          gap: 12px;
        }
      }

      body { font-family: 'Jost', sans-serif; background: #0b0b0b; }
     

      /* fix for the stray "=" char */
      .gallery-item .remove-equal {
        display: none;
      } 