/* Ormsjö lightbox — minimal, dependency-free image viewer. */
.olb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.olb-overlay.olb-open {
  display: flex;
  opacity: 1;
}
.olb-figure {
  margin: 0;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.olb-img {
  max-width: 92vw;
  max-height: 82vh;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
}
.olb-caption {
  color: #eee;
  font: 0.9em/1.4 Arial, Helvetica, sans-serif;
  text-align: center;
  margin-top: 10px;
  max-width: 80vw;
}
.olb-close,
.olb-prev,
.olb-next {
  position: fixed;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}
.olb-close:hover,
.olb-prev:hover,
.olb-next:hover {
  opacity: 1;
}
.olb-close {
  top: 12px;
  right: 20px;
  font-size: 40px;
}
.olb-prev,
.olb-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  padding: 0 20px;
}
.olb-prev { left: 8px; }
.olb-next { right: 8px; }

@media (max-width: 600px) {
  .olb-prev,
  .olb-next { font-size: 44px; padding: 0 10px; }
  .olb-close { font-size: 34px; }
}
