.envira-gallery-wrap.envira-layout-highlight-grid {
  .envira-gallery-public {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;

    .envira-gallery-item {
      display: flex;
      width: 100%;
      overflow: hidden;
      position: relative;

      .envira-gallery-item-inner {
        width: 100%;
        height: 100%;
        overflow: hidden;

        .envira-title,
        .envira-caption,
        .envira-exif {
          display: none;
        }

        div.envira-lazy {
          height: 100% !important;
        }

        a {
          display: block;
          width: 100%;
          height: 100%;

          img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            display: block;
          }
        }
      }

      .envira-proofing-selected {
        padding-bottom: 0px !important;
      }
    }

    /* Every 3rd item (1st, 4th, 7th, etc.): full width spanning both columns */
    .envira-gallery-item:nth-child(3n + 1) {
      grid-column: span 2;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      grid-template-columns: 1fr;

      /* All images should be full width on mobile */
      .envira-gallery-item {
        grid-column: span 1 !important;
      }
    }
  }
}
