 .pkc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 30px;
  }
  .pkc-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }
  .pkc-gallery-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .pkc-gallery-item:hover img { transform: scale(1.06); }
  .pkc-gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    padding: 20px 12px 10px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
	  text-transform: uppercase;
  }
  .pkc-zoom-icon {
    position: absolute;
    top: 8px; right: 8px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .pkc-gallery-item:hover .pkc-zoom-icon { opacity: 1; }

  /* Lightbox */
  .pkc-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .pkc-lightbox.active { display: flex; }
  .pkc-lb-img {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    animation: pkcZoom 0.3s ease;
  }
  @keyframes pkcZoom {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  .pkc-lb-title {
    color: #fff;
    margin-top: 14px;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
  }
  .pkc-lb-close {
    position: absolute;
    top: 16px; right: 20px;
    color: #fff; font-size: 32px;
    cursor: pointer; opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
  }
  .pkc-lb-close:hover { opacity: 1; }
  .pkc-lb-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 40px;
    cursor: pointer;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    transition: background 0.2s;
    user-select: none;
  }
  .pkc-lb-nav:hover { background: rgba(255,255,255,0.25); }
  .pkc-lb-nav.prev { left: 14px; }
  .pkc-lb-nav.next { right: 14px; }
  .pkc-lb-counter {
    position: absolute;
    bottom: 16px;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    letter-spacing: 1px;
  }