.lb-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(32, 38, 51, .82);
  backdrop-filter: blur(8px);
}

.lb-nav:active {
  transform: translateY(calc(-50% + 1px));
}

.lb-prev {
  left: 8px;
}

.lb-next {
  right: 8px;
}

.lb-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 520px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(15, 18, 22, .82);
  color: #f2f5f9;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(8px);
}

.lb-promo span {
  color: #9aa3ad;
}

.lb-promo a {
  color: #f2f5f9;
  font-weight: 700;
  text-decoration: none;
}

.lb-promo a:focus-visible,
.lb-promo a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .lightbox {
    padding-left: 10px;
    padding-right: 10px;
  }

  .lb-inner {
    max-height: 94vh;
  }

  .lb-img {
    max-height: 66vh;
  }

  .lb-nav {
    width: 42px;
    height: 42px;
  }

  .lb-prev {
    left: 4px;
  }

  .lb-next {
    right: 4px;
  }

  .lb-promo {
    max-width: calc(100vw - 28px);
    padding: 7px 10px;
    font-size: 12px;
  }
}
