/** Profile portfolio / showcase lightbox (#2549) */
.pb-lb-open { overflow: hidden; }

.pb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  background: rgba(15, 23, 42, 0.88);
}
.pb-lightbox.is-open {
  display: flex;
}

.pb-lightbox__dialog {
  position: relative;
  max-width: min(960px, 100%);
  max-height: min(90vh, 900px);
  width: 100%;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  outline: none;
}

.pb-lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  max-height: 75vh;
  background: #0a0a0a;
}

.pb-lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.pb-lightbox__caption {
  padding: 12px 16px 16px;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.4;
  background: #161616;
}
.pb-lightbox__caption strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.pb-lightbox__caption span {
  color: #a3a3a3;
  font-size: 13px;
}

.pb-lightbox__btn {
  position: absolute;
  z-index: 2;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pb-lightbox__btn:hover,
.pb-lightbox__btn:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.pb-lightbox__close {
  top: 10px;
  right: 10px;
}
.pb-lightbox__prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.pb-lightbox__next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Clickable thumbs */
[data-pb-lb] {
  cursor: zoom-in;
}
.pb-portfolio-video-wrap,
.pb-showcase-video-wrap {
  position: relative;
  display: block;
}
.pb-portfolio-video-wrap .pb-video-play,
.pb-showcase-video-wrap .pb-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pb-portfolio-video-wrap .pb-video-play::after,
.pb-showcase-video-wrap .pb-video-play::after {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/28px no-repeat;
}

@media (max-width: 560px) {
  .pb-lightbox {
    padding: 8px;
  }
  .pb-lightbox__prev,
  .pb-lightbox__next {
    width: 40px;
    height: 40px;
  }
}
