.employer-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.88);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s, visibility 0.22s;
}

.employer-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.employer-lightbox__stage {
    position: relative;
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.employer-lightbox__img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    object-fit: contain;
    background: #0f172a;
}

.employer-lightbox__close,
.employer-lightbox__nav {
    position: absolute;
    border: none;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: background 0.15s, transform 0.1s;
}

.employer-lightbox__close:hover,
.employer-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.employer-lightbox__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 28px;
    line-height: 1;
    z-index: 2;
}

.employer-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
}

.employer-lightbox__nav--prev {
    left: 12px;
}

.employer-lightbox__nav--next {
    right: 12px;
}

.employer-lightbox__counter {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 640px) {
    .employer-lightbox {
        padding: 12px;
    }
    .employer-lightbox__nav {
        width: 40px;
        height: 40px;
    }
}
