/* La Manada Records — Lightbox */
.has-lightbox { cursor: zoom-in; }
.has-lightbox:focus-visible { outline: 3px solid #8A2BE2; outline-offset: 3px; }

.lm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.lm-lightbox.is-open { opacity: 1; visibility: visible; }

.lm-lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 0, 18, .96);
    cursor: zoom-out;
}

.lm-lb-figure {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: min(1400px, calc(100vw - 120px));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.lm-lb-img {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    width: auto;
    height: auto;
    min-width: min(320px, 100%);   /* que una imagen chica no parezca un fallo */
    background: rgba(255, 255, 255, .04);
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .8);
}
.lm-lb-caption {
    margin: 0;
    max-width: 760px;
    font-size: .9rem;
    line-height: 1.5;
    color: #ccc;
    text-align: center;
    font-family: system-ui, -apple-system, sans-serif;
}

.lm-lb-close,
.lm-lb-prev,
.lm-lb-next {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    transition: all .25s ease;
}
.lm-lb-close:hover,
.lm-lb-prev:hover,
.lm-lb-next:hover { background: #8A2BE2; border-color: #8A2BE2; }
.lm-lb-close:focus-visible,
.lm-lb-prev:focus-visible,
.lm-lb-next:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.lm-lb-close { top: 20px; right: 20px; font-size: 1.2rem; }
.lm-lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lm-lb-next  { right: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }

.lm-lb-counter {
    position: absolute;
    bottom: 20px; left: 0;
    width: 100%;
    z-index: 3;
    margin: 0;
    text-align: center;
    font-size: .8rem;
    letter-spacing: 2px;
    color: #888;
    font-family: system-ui, -apple-system, sans-serif;
}

@media (max-width: 700px) {
    .lm-lb-figure { max-width: calc(100vw - 24px); }
    .lm-lb-img { max-height: calc(100vh - 200px); }
    .lm-lb-close { top: 12px; right: 12px; }
    .lm-lb-prev { left: 10px; }
    .lm-lb-next { right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
    .lm-lightbox { transition: none; }
}