
.ct-justified-grid {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 12px;
}

.ct-justified-item {
  position: relative;
  overflow: hidden;
}

.ct-justified-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 4px solid #ffffff;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.ct-justified-item:hover img {
  transform: scale(1.03);
  cursor: pointer;
}

/* Lightbox */
.ct-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.ct-lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.ct-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
}
