.cf-site-zoomable {
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cf-site-zoomable:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(33, 41, 113, 0.14);
}

.cf-site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(12, 18, 42, 0.82);
  backdrop-filter: blur(8px);
}

.cf-site-lightbox[hidden] {
  display: none !important;
}

.cf-site-lightbox-dialog {
  position: relative;
  width: min(92vw, 1600px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-site-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  border-radius: 18px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  background: #fff;
}

.cf-site-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #252b77;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 767px) {
  .cf-site-lightbox {
    padding: 16px;
  }

  .cf-site-lightbox-close {
    top: -10px;
    right: -2px;
  }
}
