/* Gallery lightbox — Masajistas Galicia */
.gallery img,
.profile-hero-media > img {
  cursor: zoom-in;
}
.gallery img:focus-visible,
.profile-hero-media > img:focus-visible {
  outline: 3px solid var(--clay, #A85C34);
  outline-offset: 3px;
}

.mg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(20, 26, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.mg-lightbox[hidden] {
  display: none !important;
}
.mg-lightbox-figure {
  margin: 0;
  max-width: min(920px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mg-lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.mg-lightbox-caption {
  color: #EDEAE0;
  font-size: 0.92rem;
  text-align: center;
  max-width: 36rem;
  line-height: 1.4;
}
.mg-lightbox-close,
.mg-lightbox-prev,
.mg-lightbox-next {
  position: absolute;
  background: rgba(251, 248, 241, 0.12);
  border: 1px solid rgba(251, 248, 241, 0.28);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mg-lightbox-close:hover,
.mg-lightbox-prev:hover,
.mg-lightbox-next:hover {
  background: rgba(251, 248, 241, 0.22);
}
.mg-lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
}
.mg-lightbox-prev {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.mg-lightbox-next {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .mg-lightbox-prev,
  .mg-lightbox-next {
    width: 40px;
    height: 40px;
  }
  .mg-lightbox-caption {
    font-size: 0.82rem;
  }
}
