/* Lightbox แกลอรี่ */
.mlp-lb-zoomable {
  cursor: zoom-in;
}

body.mlp-lb-open {
  overflow: hidden;
}

.mlp-lb {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 18, 35, 0.88);
  backdrop-filter: blur(6px);
}

.mlp-lb[hidden] {
  display: none !important;
}

.mlp-lb__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  text-align: center;
}

.mlp-lb__img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  background: #0b1b33;
}

.mlp-lb__cap {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.mlp-lb__close,
.mlp-lb__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mlp-lb__close:hover,
.mlp-lb__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.mlp-lb__close {
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.6rem;
  line-height: 1;
}

.mlp-lb__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.8rem;
  line-height: 1;
}

.mlp-lb__prev { left: 0.75rem; }
.mlp-lb__next { right: 0.75rem; }

@media (max-width: 640px) {
  .mlp-lb__nav {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.5rem;
  }

  .mlp-lb__prev { left: 0.35rem; }
  .mlp-lb__next { right: 0.35rem; }
}
