/* Seaweed Futures universal image lightbox */
.sf-expandable-image {
  cursor: zoom-in;
  transition: filter .18s ease, transform .18s ease;
}
.sf-expandable-image:hover {
  filter: brightness(1.04);
}
.sf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 8, 14, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sf-lightbox.is-open { display: flex; }
.sf-lightbox__figure {
  position: relative;
  margin: 0;
  max-width: 96vw;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sf-lightbox__image {
  display: block;
  max-width: 96vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 22px 70px rgba(0,0,0,.65);
}
.sf-lightbox__caption {
  max-width: min(900px, 88vw);
  color: #f4f8fa;
  font: 500 14px/1.4 Arial, Helvetica, sans-serif;
  text-align: center;
}
.sf-lightbox__close {
  position: fixed;
  top: 14px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(5,18,27,.82);
  color: #fff;
  font-size: 31px;
  line-height: 42px;
  cursor: pointer;
}
.sf-lightbox__hint {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font: 12px Arial, Helvetica, sans-serif;
  white-space: nowrap;
}
body.sf-lightbox-open { overflow: hidden !important; }
@media (max-width: 680px) {
  .sf-lightbox { padding: 12px; }
  .sf-lightbox__image { max-width: 98vw; max-height: 82vh; }
  .sf-lightbox__close { top: 8px; right: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .sf-expandable-image { transition: none; }
}
